Slide 41
Slide 41 text
GET /articles/1
{
"data": {
"type": "articles",
"id": "1",
"attributes": {
"title": "JSON API paints my bikeshed!"
},
"relationships": {
"author": { "data": { "type": "people", "id": "1" } }
}
},
"included": [{
"type": "people",
"id": "1",
"attributes": {
"name": "Dan Gebhard"
}
}]
}