Last active
August 29, 2015 14:05
-
-
Save ssfrr/c4aa4cba3c4b326bb015 to your computer and use it in GitHub Desktop.
Simplified HAL
This file contains 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
{ | |
"self": {"href":"/orders"}, | |
"rel-templates":[ | |
{ | |
"name":"ea", | |
"href":"http://example.com/docs/rels/{rel}", | |
"templated":true | |
} | |
], | |
"next":{"href": "/orders?page=2"}, | |
"ea:find":{ | |
"href":"/orders{?id}", | |
"templated":true | |
}, | |
"ea:admin":[ | |
{ | |
"href":"/admins/2", | |
"title":"Fred" | |
}, | |
{ | |
"href":"/admins/5", | |
"title":"Kate" | |
} | |
], | |
"currentlyProcessing":14, | |
"shippedToday":20, | |
"ea:order":[ | |
{ | |
"self":{"href":"/orders/123"}, | |
"ea:basket":{"href":"/baskets/97212"}, | |
"ea:customer":{"href":"/customers/12368"}, | |
"total":30.00, | |
"currency":"USD", | |
"status":"shipped" | |
}, | |
{ | |
"self":{"href":"/orders/124"}, | |
"ea:basket":{"href":"/baskets/97213"}, | |
"ea:customer":{"href":"/customers/12369"}, | |
"total":20.00, | |
"currency":"USD", | |
"status":"processing" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment