Created
January 20, 2013 11:16
-
-
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
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
| { | |
| "_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