Last active
November 6, 2017 17:24
-
-
Save yvan-sraka/28c91fc45b6e28e858f0a83f92ef158c to your computer and use it in GitHub Desktop.
Example of a JSON file structuring books data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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