jsonapi-serializer/docs/object_serializer.json
Shishir Kakaraddi 5374a1378e initial commit
2018-01-31 16:20:40 -08:00

31 lines
466 B
JSON

{
"data": {
"id": "232",
"type": "movie",
"attributes": {
"name": "test movie",
"year": null
},
"relationships": {
"actors": {
"data": [
{
"id": "1",
"type": "actor"
},
{
"id": "2",
"type": "actor"
}
]
},
"owner": {
"data": {
"id": "3",
"type": "user"
}
}
}
}
}