On Github steveklabnik / json_api_presentation
@steveklabnik
Structure: media type
Semantics: profile
{
"posts": [{
"id": "1",
"title": "Rails is Omakase"
}]
}
{
"posts": [{
"id": "1",
"title": "Rails is Omakase",
"links": {
"author": "9",
"comments": [ "5", "12", "17", "20" ]
}
}]
}
{
"posts": [{
"id": "1",
"title": "Rails is Omakase",
"links": {
"author": "http://example.com/people/1",
"comments": "http://example.com/comments/5,12,17,20"
}
}]
}
@steveklabnik / steve@steveklabnik.com