Hypertext Application Language

Hypertext Application Language (HAL) is an Internet Draft (a "work in progress") standard convention for defining hypermedia such as links to external resources within JSON or XML code. The standard was initially proposed on June 2012 specifically for use with JSON[1] and has since become available in two variations, each specific to JSON or XML. The two associated MIME types are media type: application/hal+xml and media type: application/hal+json.[2]

HAL was created to be simple to use and easily applicable across different domains by avoiding the need to impose any requirements on how the project be structured. Maintaining this minimal impact approach, HAL has enabled developers to create general-purpose libraries which can be easily incorporated on any API that uses HAL.[1]

APIs that adopt HAL are generally more appealing to developers because it simplifies the use of open source libraries and makes it possible to interact with the API using JSON or XML. The alternative would be having to develop a proprietary format which in turn forces developers to learn how to use yet another foreign format.[3]

Convention

HAL is structured in such a way as to represent elements based on two concepts: Resources and Links. Resources consist of URI links, embedded resources, your standard data (be it JSON or XML), and non URI links. Links have a target URI, as well as the name of the link (referred to as 'rel'), as well as optional properties designed to be mindful of deprecation and content negotiation.[3]

Example

General Resource { "_links": { "self": { "href": "http://example.com/api/book/hal-cookbook" } }, "id": "hal-cookbook", "name": "HAL Cookbook" }
Embedded resource { "_links": {"self": {"href": "http://example.com/api/book/hal-cookbook"}}, "_embedded": { "author": { "_links": {"self": {"href": "http://author-example.com"}}, "id": "shahadat", "name": "Shahadat Hossain Khan" } } "id": "hal-cookbook", "name": "HAL Cookbook" }
Collections { "_links": { "self": {"href": "http://example.com/api/book/hal-cookbook"}, "next": {"href": "http://example.com/api/book/hal-case-study"}, "prev": {"href": "http://example.com/api/book/json-and-beyond"}, "first": {"href": "http://example.com/api/book/catalog"}, "last": {"href": "http://example.com/api/book/upcoming-books"} }, "_embedded": { "author": { "_links": {"self": {"href": "http://author-example.com"}}, "id": "shahadat", "name": "Shahadat Hossain Khan" } } "id": "hal-cookbook", "name": "HAL Cookbook" }

See also

References

  1. 1 2 "JSON Hypertext Application Language" (PDF). Network Working Group (Internet-Draft). July 2012. Retrieved 23 July 2014.
  2. Richardson, Leonard; Ruby, Mike Amundsen ; foreword by Sam (2013). "7". RESTful Web APIs (First edition. ed.). Sebastopol, CA: O'Reilly. ISBN 978-1-4493-5806-8.
  3. 1 2 Kelly, Mike (2011-06-13). "HAL - Hypertext Application Language A lean hypermedia type". Retrieved 23 July 2014.

External links


This article is issued from Wikipedia - version of the 11/27/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.