{
"jsonapi": {"version": "1.1"},
"data": {
"type": "articles",
"id": "1",
"attributes": {
"title": "private article title",
"body": "very-secret body"
},
"relationships": {
"author": {"data": {"type": "people", "id": "9"}},
"comments": {"links": {"related": "https://api.example.invalid/comments?token=secret"}}
},
"links": {"self": "https://api.example.invalid/articles/1"}
},
"included": [
{
"type": "people",
"id": "9",
"attributes": {"name": "private author"}
}
],
"meta": {"trace": "secret metadata"}
}