Last active
June 7, 2016 19:33
-
-
Save heygrady/62680ca4a79dcd540369037b83630187 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
{ | |
"posts": { | |
"data": [ | |
{ | |
"id": 1, | |
"type": "posts", | |
"attributes": { | |
"title": "My title", | |
"content": "<p>Some markup in a string.</p>" | |
}, | |
"relationships": { | |
"author": 1 | |
}, | |
"meta": { | |
"loading": false, | |
"saving": false, | |
"new": false, | |
"dirtyAttributes": {} | |
} | |
}, | |
{ "anotherPost": "goes here" } | |
], | |
"meta": { | |
"loading": false, | |
"pagination": {} | |
} | |
}, | |
"authors": { | |
"data": [ | |
{ | |
"id": 1, | |
"type": "authors", | |
"attributes": { | |
"fullName": "Mr. E. Writer" | |
} | |
}, | |
{ "anotherAuthor": "goes here" } | |
], | |
"meta": { | |
"loading": false, | |
"pagination": [] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment