Last active
August 29, 2015 14:06
-
-
Save blongden/93e87ce950e6454a8d00 to your computer and use it in GitHub Desktop.
Example todo resource
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_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" | |
} | |
} | |
} | |
] | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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