Image may be NSFW.
Clik here to view.The Rosetta stone is a rock with the same text inscribed in three different languages. This allowed us to decipher Egyptian hieroglyphs.
In this post I’ll introduce a similar “stone” for hypermedia formats, using the RESTBucks example.
I think that seeing concrete hypermedia messages in different formats will make the similarities and differences clearly visible, which will hopefully make it easier to choose the right format for your API.
The text that I’ll use for HyperRosetta, the hypermedia Rosetta stone, is Example 5.6 of the REST in Practice book. For those hypermedia formats that can include templates, I’ll use the payment link with the representation in Example 5.7 of the book.
These are the media types available on HyperRosetta:
application/vnd.restbucks+xml
application/atom+xml
application/xml
application/json
application/hal+json
,application/hal+xml
application/vnd.collection+json
application/vnd.mason+json
application/vnd.siren+json
application/vnd.uber+json
,application/vnd.uber+xml
If you’d like to see another media type added to this list, please add a comment to this post.
application/vnd.restbucks+xml
This is the representation used in the book:
<order xmlns="http://schemas.restbucks.com/" xmlns:dap="http://schemas.restbucks.com/dap"> <dap:link mediaType="application/vnd.restbucks.com" uri="http://restbucks.com/order/1234" rel"http://relations.restbucks.com/cancel"/> <dap:link mediaType="application/vnd.restbucks.com" uri="http://restbucks.com/payment/1234" rel"http://relations.restbucks.com/payment"/> <dap:link mediaType="application/vnd.restbucks.com" uri="http://restbucks.com/order/1234" rel"http://relations.restbucks.com/update"/> <dap:link mediaType="application/vnd.restbucks.com" uri="http://restbucks.com/order/1234" rel"self"/> <item> <milk>semi</milk> <size>large</size> <drink>cappuccino</drink> </item> <location>takeAway</location> <cost>2.0</cost> <status>unpaid</status </order>
This is an example of a domain-specific media type, so I will not be able to re-use existing client libraries to parse it. Since this format is based on XML, I can use an existing XML parser, but it won’t be able to recognize links in this representation.
This media type doesn’t tell me in the message what HTTP methods to use to dereference the link URIs. So the client has to be programmed with the knowledge that it has to use PUT
on the update link, for instance. If the service should ever change that to PATCH
, the client will break.
The message does tell me the media type to expect in the response, making it easier for the client to decide whether it should follow a link.
The RESTBucks media type is a fiat standard that isn’t registered with IANA.
application/atom+xml
<entry xmlns="http://www.w3.org/2005/Atom"> <author> <name>RESTBucks</name> </author> <content type="application/vnd.restbucks+xml"> <order xmlns="http://schemas.restbucks.com/"> <item> <milk>semi</milk> <size>large</size> <drink>cappuccino</drink> </item> <location>takeAway</location> <cost>2.0</cost> <status>unpaid</status </order> </content> <link type="application/vnd.restbucks.com" href="http://restbucks.com/payment/1234" rel"http://relations.restbucks.com/payment"/> <link type="application/vnd.restbucks.com" href="http://restbucks.com/order/1234" rel"edit"/> <link type="application/vnd.restbucks.com" href="http://restbucks.com/order/1234" rel"self"/> </entry>
Atom is a domain-general media type that implements the collection pattern. Since it is not specific to a single service, I can use an Atom library to parse the message and it will be able to find links. It will also know that the edit
link will allow me to update and delete the order (using PUT
and DELETE
respectively).
The Atom library won’t help me with parsing the content
, but I can still use an XML library for that. As with the domain-specific media type, I will need to embed knowledge of the HTTP method used for paying into my client.
A disadvantage of this particular domain-general media type is the overhead of things like author
that don’t particularly make sense for RESTBucks.
application/xml
<order xmlns="http://schemas.restbucks.com/"> <link href="http://restbucks.com/order/1234" rel"http://relations.restbucks.com/cancel"/> <link href="http://restbucks.com/payment/1234" rel"http://relations.restbucks.com/payment"/> <link href="http://restbucks.com/order/1234" rel"http://relations.restbucks.com/update"/> <link href="http://restbucks.com/order/1234" rel"self"/> <item> <milk>semi</milk> <size>large</size> <drink>cappuccino</drink> </item> <location>takeAway</location> <cost>2.0</cost> <status>unpaid</status </order>
XML is a domain-agnostic format, which means it can be used for anything. The downside is that you won’t know anything about the content until you look at it.
Formally, this means I can’t dispatch on the media type alone anymore, but need to look at the namespace inside the message. In practice people dispatch on the media type anyway. This can lead to parsing problems when the expectation isn’t met, e.g. when an error document is sent instead of an order.
Worse, XML isn’t even a hypermedia type, since it doesn’t describe links. There is the XLInk standard for that, but I haven’t seen that used in APIs.
application/json
{ "order": { "_links": { "http://relations.restbucks.com/cancel": { "href": "http://restbucks.com/order/1234" }, "http://relations.restbucks.com/payment": { "href": "http://restbucks.com/payment/1234" } "http://relations.restbucks.com/update": { "href": "http://restbucks.com/order/1234" }, "self": { "href": "http://restbucks.com/order/1234" }, "item": { "milk": "semi", "size": "large", "drink": "cappuccino" } "location": "takeAway", "cost": 2.0, "status": "unpaid" } }
JSON is a another domain-agnostic format without linking capabilities, so the same caveats apply as for XML. Despite these significant drawbacks, this is what high-profile projects like Spring use.
application/hal+json
{ "_links": { "self": { "href": "http://restbucks.com/order/1234" }, "curies": [{ "name": "relations", "href": "http://relations.restbucks.com/" }], "relations:cancel": { "href": "http://restbucks.com/order/1234" }, "relations:payment": { "href": "http://restbucks.com/payment/1234" } "relations:update": { "href": "http://restbucks.com/order/1234" } }, "_embedded": { "item": [{ "milk": "semi", "size": "large", "drink": "cappuccino" }] }, "location": "takeAway", "cost": 2.0, "status": "unpaid" }
HAL is a another domain-agnostic format, so the same caveats apply as for JSON.
However, HAL is a real hypermedia type, since it standardizes how to find links (using the _links
property). In addition, it also defines how to find embedded objects (using the _embedded
property).
HAL uses curies to make the representation a bit more compact. This is nice for humans, but another thing to program into your clients.
HAL is currently an Internet-Draft. There is also an XML version of HAL registered.
application/collection+json
{ "collection": { "version" : "1.0", "href" : "http://restbucks.com/orders", "items" : [{ "href": "http://restbucks.com/order/1234", "data": [ { "name": "item1.milk", "value": "semi" }, { "name": "item1.size", "value": "large" }, { "name": "item1.drink", "value": "cappuccino" }, { "name": "location", "value": "takeAway" }, { "name": "cost", "value": 2.0 }, { "name": "status", "value": "unpaid" } ], "links" : [{ "rel" : "http://relations.restbucks.com/cancel", "href" : "http://restbucks.com/order/1234" }, { "rel" : "http://relations.restbucks.com/payment", "href" : "http://restbucks.com/payment/1234" }, { "rel" : "http://relations.restbucks.com/update", "href" : "http://restbucks.com/order/1234" }, { "rel" : "self", "href" : "http://restbucks.com/order/1234" }] }] } }
Collection+JSON (Cj) is the translation of Atom into JSON. Like Atom, it’s a domain-general format for collections.
In Cj, properties are single values only, so I had to cheat and use the item1.
prefix to keep the item data in the message. A better solution would probably be to extract the order items into its own collection, but I didn’t want to change the granularity of the messages.
Cj provides a template
property that specifies how to add an item to the collection or update an existing one. Unfortunately, that mechanism is specific to collection actions, so we can’t use it to specify how to add a payment, for example. I don’t show the template
in this example because it suffers from the same problem as the data
property in that it can’t embed objects.
application/vnd.mason+json
{ "@namespaces": { "relations": { "name": "http://relations.restbucks.com/" } }, "item": [{ "milk": "semi", "size": "large", "drink": "cappuccino" }], "location": "takeAway", "cost": 2.0, "status": "unpaid", "@links": { "self": { "href": "http://restbucks.com/order/1234" } }, "@actions": { "relations:cancel": { "href": "http://restbucks.com/order/1234", "type": "void", "method": "DELETE" }, "relations:payment": { "href": "http://restbucks.com/payment/1234", "title": "Pay the order", "type": "any", "method": "PUT", "template": { "payment": { "amount": 2.0, "cardholderName": "", "cardNumber": "", "expiryMonth": "", "expiryYear": "" } } }, "relations:update": { "href": "http://restbucks.com/order/1234", "type": "any", "method": "PUT", "template": { "item": [{ "milk": "semi", "size": "large", "drink": "cappuccino" }], "location": "takeAway", "cost": 2.0, "status": "unpaid" } } } }
Mason is a superset of HAL. It adds actions and errors (not shown in this example), which turns it into a full hypermedia type (level 3b). Mason also supports curies.
A peculiarity of the actions is the type
property, which can be void
, json
, json-files
, or any
. I’d expected a media type there.
application/vnd.siren+json
{ "class": [ "order" ], "properties": [{ "location": "takeAway", "cost": 2.0, "status": "unpaid" }, "entities": [{ "class": [ "item" ], "rel": [ "http://relations.restbucks.com/item" ], "properties": { "milk": "semi", "size": "large", "drink": "cappuccino" } }], "actions": [{ "name": "http://relations.restbucks.com/cancel", "title": "Cancel the order", "method": "DELETE", "href": "http://restbucks.com/order/1234" }, { "name": "http://relations.restbucks.com/payment", "title": "Pay the order", "href": "http://restbucks.com/payment/1234", "type": "application/vnd.siren+json", "method": "PUT", "fields": [{ "name": "amount", "type": "number", "value": 2.0 }, { "name": "cardholderName", "type": "text" }, { "name": "cardNumber", "type": "text" }, { "name": "expiryMonth", "type": "number" }, { "name": "expiryYear", "type": "number" }], }, { "name": "http://relations.restbucks.com/update", "href": "http://restbucks.com/order/1234", "method": "PUT", "type": "application/vnd.siren.json" }], "links": [{ "rel": "self", "href": "http://restbucks.com/order/1234" }] }
Siren is a full hypermedia type that includes the HTTP methods and media types to use. It also allows specifying the application semantics using the class
, rel
, and name
properties. This makes it suitable for level 4 APIs.
Siren specifies the type
for fields, so that clients can render appropriate UIs.
application/vnd.uber+json
{ "uber": { "version": "1.0", "data": [{ "rel": [ "self" ], "url": "http://restbucks.com/order/1234" }, { "id": "order", "data": [{ "name": "item", "data": [{ "name": "milk", "value": "semi" }, { "name": "size", "value": "large", }, { "name": "drink", "value": "cappuccino" }] }, { "name": "location", "value": "takeAway" }, { "name": "cost", "value": 2.0 }, { "name": "status", "value": "unpaid" }] }, { "rel": "http://relations.restbucks.com/cancel", "url": "http://restbucks.com/payment/1234", "action": "remove" }, { "rel": "http://relations.restbucks.com/payment", "url": "http://restbucks.com/payment/1234", "sending": "application/vnd.uber+json", "action": "replace", "data": [{ "name": "amount", "value": 2.0 }, { "name": "cardholderName", }, { "name": "cardNumber", }, { "name": "expiryMonth", }, { "name": "expiryYear", }], }, { "rel": "http://relations.restbucks.com/update", "url": "http://restbucks.com/order/1234", "action": "replace", "sending": "application/vnd.uber.json" }] }
UBER is a full hypermedia format with a lean message structure. It combines in the data
property what other media types separate out in e.g. links
, actions
, and properties
, which makes it a bit hard to read for humans.
UBER allows specifying application semantics using the name
and rel
properties, making it a level 4 capable media type.
There is also an XML variant of UBER.
Filed under: REST Tagged: Atom, Collection+JSON, full hypermedia type, HAL, hypermedia, HyperRosetta, JSON, Mason, media type, REST, RESTBucks, Rosetta, Siren, Uber, XML Image may be NSFW.
Clik here to view.
Clik here to view.
Clik here to view.
Clik here to view.
Clik here to view.
Clik here to view.
Clik here to view.
Clik here to view.
