Created
December 29, 2017 23:51
-
-
Save kmkrn/61bd8ebbd105b4a12d759534b86a0cda to your computer and use it in GitHub Desktop.
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
[ | |
{ | |
"personId": 1, | |
"firstName": "John", | |
"lastName": "Smith", | |
"cats": [ | |
{ | |
"catId": 1, | |
"name": "Ashes", | |
"breed": "Bengal", | |
"weight": 4.5 | |
}, | |
{ | |
"catId": 2, | |
"name": "Molly", | |
"breed": "British Shorthair", | |
"weight": 5 | |
}, | |
{ | |
"catId": 3, | |
"name": "Charlie", | |
"breed": "Siamese", | |
"weight": 3 | |
} | |
] | |
}, | |
{ | |
"personId": 2, | |
"firstName": "Jane", | |
"lastName": "Doe", | |
"cats": [ | |
{ | |
"catId": 4, | |
"name": "Tigger", | |
"breed": "Persian", | |
"weight": 6 | |
}, | |
{ | |
"catId": 5, | |
"name": "Chester", | |
"breed": "Scottish Fold", | |
"weight": 4 | |
} | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment