I am managing a database filled by hundreds of publishers for both books and ebooks.
I would like to provide a free JSON or XML web-service to allow others sites (bookshops, library or whatever) or apps to access those data using an ISBN.
I made a first draft developing my own JSON standard :
{
"cycle_id": null,
"collection_id": "52",
"publisher_id": "1166",
"id": "40898",
"url": "thomas-day/sept-secondes-pour-devenir-un-aigle",
"title": "Sept secondes pour devenir un aigle",
"cycle": "",
"tome": "",
"authors": "Thomas DAY",
"collection": "LE BÉLIAL'",
"number": null,
"publisher": "LE BÉLIAL'",
"price": "1900",
"price_euro": 19,
"cover": "http://media.biblys.fr/book/98/40898.jpg"
}
But is there a commonly used format that I should be using to do this?