Created
January 14, 2019 12:05
-
-
Save coco98/73bd1653d6f01df4926c42753eaedb6f 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
{ | |
"user": [ | |
{ | |
"id": 456, | |
"name": "Sita K", | |
"address": { | |
"country": "India" | |
} | |
}, | |
{ | |
"id": 123, | |
"name": "John Doe", | |
"address": {"street": "Sesame street", "city": "Timbuktoo", "country": "Mali"} | |
} | |
], | |
"post": [ | |
{ | |
"id": 1, | |
"title": "My first article - user 123", | |
"views": 254, | |
"user_id": 123, | |
"is_published": true | |
}, | |
{ | |
"id": 2, | |
"title": "My first article - user 456", | |
"views": 54, | |
"user_id": 456, | |
"is_published": false | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment