Skip to content

Instantly share code, notes, and snippets.

@blongden
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blongden/93e87ce950e6454a8d00 to your computer and use it in GitHub Desktop.
Save blongden/93e87ce950e6454a8d00 to your computer and use it in GitHub Desktop.
Example todo resource
{
"_embedded": {
"todos": [
{
"todoid": 1,
"todoTitle": "Finish coding stuff",
"todoDateDue": "2014-09-25T18:00:00Z",
"todoNotes": "Have you even worked out what you are doing yet?",
"dateCreated": "2014-09-25T10:00:00Z",
"dateUpdated": "2014-09-25T11:30:00Z",
"_links": {
"self": {
"href": "http://link.to/todo/1"
},
"profile": {
"href": "https://localhost/alps.xml"
}
}
},
{
"todoid": 2,
"todoTitle": "Finish coding more stuff",
"todoDateDue": "2014-09-25T18:00:00Z",
"todoNotes": "Have you even worked out what you are doing yet?",
"dateCreated": "2014-09-25T10:00:00Z",
"dateUpdated": "2014-09-25T11:30:00Z",
"_links": {
"self": {
"href": "http://link.to/todo/2"
},
"profile": {
"href": "https://localhost/alps.xml"
}
}
}
]
}
}
{
"todoid": 1,
"todoTitle": "Finish coding stuff",
"todoDateDue": "2014-09-25T18:00:00Z",
"todoNotes": "Have you even worked out what you are doing yet?",
"dateCreated": "2014-09-25T10:00:00Z",
"dateUpdated": "2014-09-25T11:30:00Z",
"_links": {
"self": {
"href": "http://link.to/todo/1"
},
"profile": {
"href": "https://localhost/alps.xml"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment