| { | |
| "data": [{ | |
| "type": "articles", | |
| "id": "1", | |
| "attributes": { | |
| "title": "JSON API paints my bikeshed!" | |
| }, | |
| "links": { | |
| "self": "http://example.com/articles/1" | |
| }, | |
| "relationships": { | |
| "author": { | |
| "links": { | |
| "self": "http://example.com/articles/1/relationships/author", | |
| "related": "http://example.com/articles/1/author" | |
| }, | |
| "data": { "type": "people", "id": "9" } | |
| } | |
| } | |
| }], | |
| "included": [{ | |
| "type": "people", | |
| "id": "9", | |
| "attributes": { | |
| "first-name": "Dan", | |
| "last-name": "Gebhardt", | |
| "twitter": "dgeb" | |
| }, | |
| "links": { | |
| "self": "http://example.com/people/9" | |
| } | |
| }] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment