AtomLink Data Type

An Atom link embedded in resource responses, providing hypermedia navigation URLs.

Each resource object may include atom:link entries pointing to related endpoints (e.g. self, next page, previous page).

Properties
Name Type Description
rel string Link relationship type (e.g. self, next, previous).
href string The URL of the linked resource.
type string Media type of the linked resource.
AtomLink (JSON)
{
  "link" : {
    "rel" : "...",
    "href" : "...",
    "type" : "..."
  }
}
AtomLink Data Type

An Atom link embedded in resource responses, providing hypermedia navigation URLs.

Each resource object may include atom:link entries pointing to related endpoints (e.g. self, next page, previous page).

Properties
Name Type Description
href string The URL of the linked resource.
rel string Link relationship type (e.g. self, next, previous).
type string Media type of the linked resource.
AtomLink (XML)
<link href="..." rel="..." type="..." xmlns="http://www.w3.org/2005/Atom"/>