Skip to content

Instantly share code, notes, and snippets.

@brianium
Created January 14, 2014 18:32
Show Gist options
  • Save brianium/8423238 to your computer and use it in GitHub Desktop.
Save brianium/8423238 to your computer and use it in GitHub Desktop.
sample hypermedia response
{
"_links": {
"self": {"href": "http://www.beerapi.com/orders/54cde"},
"beer": [
{"href": "http://www.beerapi.com/beers/76cde"},
{"href": "http://www.beerapi.com/beers/76cdf"}
],
"status": {"href": "http://www.beerapi.com/orders/54cde/status"}
},
"id": "54cde",
"tip" 5.99,
"total": 18.55,
"date": "2014-05-06 11:11:11",
"_embedded": {
"status": {
"_links": {
"self": {"href": "http://www.beerapi.com/status/54fefd"}
},
"id": "54fefd",
"status": "pending",
"last_updated": "2014-05-06 11:11:11"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment