Skip to content

Instantly share code, notes, and snippets.

@benfoster
Created January 20, 2013 11:16
Show Gist options
  • Select an option

  • Save benfoster/4577974 to your computer and use it in GitHub Desktop.

Select an option

Save benfoster/4577974 to your computer and use it in GitHub Desktop.
Hypermedia links that meet the JSON HAL specification. http://tools.ietf.org/html/draft-kelly-json-hal-03
{
"_links": {
"self": [
{
"href": "/orders/10"
}
],
"warehouse": [
{
"href": "/warehouse/10"
}
],
"invoice": [
{
"href": "/invoices/10"
}
],
"related": [
{
"href": "/orders",
"title": "Orders"
},
{
"href": "/orders/10/cancel",
"title": "Cancel Order"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment