Skip to content

Instantly share code, notes, and snippets.

@yvan-sraka
Last active November 6, 2017 17:24
Show Gist options
  • Save yvan-sraka/28c91fc45b6e28e858f0a83f92ef158c to your computer and use it in GitHub Desktop.
Save yvan-sraka/28c91fc45b6e28e858f0a83f92ef158c to your computer and use it in GitHub Desktop.
Example of a JSON file structuring books data
{
"books": {
"programming": [{
"name": "Apprendre à coder en PHP",
"price": 26.00,
"author": "Matthieu Nebra"
}, {
"name": "Learn you a Haskell",
"price": 0.00,
"author": "Miron Lipovaca"
}, {
"name": "Land of Lisp",
"price": 49.99,
"author": "Conrad Barski"
}],
"cooking": [{
"name": "50 Amazing vegan recipes",
"price": 19.99,
"author": "Peter Hock"
}]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment