Created
July 5, 2017 15:06
-
-
Save adavia/0cc2bc49bcc74b792e559c8c9d028624 to your computer and use it in GitHub Desktop.
JSON API
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
| { | |
| result: [1, 2], | |
| entities: { | |
| articles: { | |
| 1: { | |
| id: 1, | |
| title: 'Some Article', | |
| author: 1 | |
| }, | |
| 2: { | |
| id: 2, | |
| title: 'Other Article', | |
| author: 1 | |
| } | |
| }, | |
| users: { | |
| 1: { | |
| id: 1, | |
| name: 'Dan' | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment