Internet-Draft Application-Level Profile Semantics January 2021
Amundsen, et al. Expires 27 July 2021 [Page]
Workgroup:
Network Working Group
Internet-Draft:
draft-amundsen-richardson-foster-alps-06
Published:
Intended Status:
Informational
Expires:
Authors:
M. Amundsen
L. Richardson
M. Foster

Application-Level Profile Semantics (ALPS)

Abstract

This document describes ALPS, a data format for defining simple descriptions of application-level semantics, similar in complexity to HTML microformats. An ALPS document can be used as a profile to explain the application semantics of a document with an application-agnostic media type (such as HTML, HAL, Collection+JSON, Siren, etc.). This increases the reusability of profile documents across media types.

Editorial Note (To be removed by RFC Editor)

Distribution of this document is unlimited. Comments should be sent to the IETF Media-Types mailing list (see https://www.ietf.org/mailman/listinfo/media-types).

Status of This Memo

This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.

Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.

Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."

This Internet-Draft will expire on 27 July 2021.

Table of Contents

1. Introduction

This document describes ALPS, a media type for defining simple descriptions of application-level semantics, similar in complexity to HTML microformats. These descriptions contain both human-readable and machine-readable explanations of the semantics. An ALPS document can be used as a profile to explain the application semantics of a document with an application-agnostic media type (such as HTML, HAL, Collection+JSON, Siren. etc.).

This document identifies a registry for ALPS documents, (The ALPS Profile Registry or APR). The details of this registry, its goals, and operations are covered in a separate document (TBD).

This document also identifies a process for authoring, publishing, and sharing normative human-readable instructions on applying an ALPS document as a profile to responses of a given media type. For example, a document that describes how to apply the semantics of an ALPS profile to an HTML document.

This document registers two media-type identifiers with the IANA: 'application/alps+xml' ('ALPS+XML') and 'application/alps+json' ('ALPS+JSON').

1.1. Notational Conventions

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC2119].

1.2. Motivation

When implementing a hypermedia client/server application using a general media type (HTML, Atom, Collection+JSON, etc.), client and server instances need to share an understanding of domain-specific information such as data element names, link relation values, and state transfer parameters. This information is directly related to the application being implemented (e.g. accounting, contact management, etc.) rather than the media type used in the representations.

1.2.1. Describing Domain-Specific Semantics

Instead of creating and registering an entirely new media type (i.e. 'application/accounting'), representation authors can create an ALPS document that describes a 'profile' of the target domain; one that explains the vital domain-specific semantic descriptors and state transitions. This profile can then be consistently applied to a wide range of media types by server implementors and successfully consumed by client applications. The focus on defining application-level semantics, independent of transfer protocol or media type, makes it possible to serve application-specific representations using an application-agnostic media type.

1.2.2. ALPS-based Server Implementations

Server implementors can use ALPS documents as a basis for building domain-specific solutions without having to create their own custom media type or re-invent the vocabulary and transition set for a common domain (e.g. accounting, microblogging, etc.). Using a preexisting ALPS profile as a guide, servers can map internal data to commonly-understood semantic descriptors and state transitions, increasing the likelihood that existing client applications (those who share the same understanding of the ALPS document) will be able to successfully interact with that server.

1.2.3. ALPS-based Client Implementations

Armed with a document's ALPS profile, client applications can associate the ALPS descriptor 'id' and/or 'name' attribute values with the appropriate elements within the document. Client applications can 'code for the profile' and better adjust to detailed changes to the response layout, or even the wholesale replacement of one media type with another.

1.3. A Simple ALPS Example

Below is an ALPS document that describes elements of a simple request/response interaction in a contact management application. The profile defines a semantic descriptor called 'contact', and three subordinate descriptors ('fullName', 'email', and 'phone').

The ALPS document also defines a single, safe state transition, to be represented by a hypermedia control (e.g. HTML.GET form) with the 'id' value of 'collection.' This hypermedia control has one input value ('nameSearch'). When executed, the response will contain one or more 'contact' type items.

 <alps version="1.0">
  <doc format="text">A contact list.</doc>
  <link rel="help" href="http://example.org/help/contacts.html" />

  <!-- a hypermedia control for returning contacts -->
  <descriptor id="collection" type="safe" rt="contact">
    <doc>
      A simple link/form for getting a list of contacts.
    </doc>
    <descriptor id="nameSearch" type="semantic">
      <doc>Input for a search form.</doc>
    </descriptor>
  </descriptor>

  <!--  a contact: one or more of these may be returned -->
  <descriptor id="contact" type="semantic">
    <descriptor id="item" type="safe">
      <doc>A link to an individual contact.</doc>
    </descriptor>
    <descriptor id="fullName" type="semantic" />
    <descriptor id="email"    type="semantic" />
    <descriptor id="phone"    type="semantic" />
  </descriptor>
</alps>
Figure 1: ALPS Contact Profile document

Implementing the ALPS profile above requires implementing the descriptors defined by the ALPS document. In this case, there are two 'top level' descriptors: the safe state transition ('collection') and the semantic descriptor 'contact'. Below is a single HTML document that shows both these elements in a representation.

<html>
  <head>
    <link href="http://alps.io/profiles/contact"
      rel="profile" />
    <link href="http://alps.io/profiles/contact#contact"
      rel="type" />
    <link href="http://example.org/help/contacts.html"
      rel="help" />
  </head>
  <body>
    <form class="collection"
      method="get"
      action="http://example.org/contacts/">
      <label>Name:</label>
      <input name="nameSearch" value="" />
      <input type="submit" value="Search" />
    </form>

    <table>
      <tr class="contact">
        <td>
          <a href="http://example.org/contacts/1"
            rel="item">
            <span class="fullName">Ann Arbuckle</span>
          </a>
        </td>
        <td>
          <span class="email">aa@example.org</span>
        </td>
        <td>
          <span class="phone">123.456.7890</span>
        </td>
      </tr>

      <tr>
        <td>
          <a href="http://example.org/contacts/100"
            rel="item">
            <span class="fullName">Zelda Zackney</span>
          </a>
        </td>
        <td>
          <span class="email">zz@example.org</span>
        </td>
        <td>
          <span class="phone">098.765.4321</span>
        </td>
      </tr>
    </table>
  </body>
</html>
Figure 2: HTML ALPS Contact Representation

HTML representations implement most ALPS elements using HTML's 'class' attribute. The 'collection' ID has become the CSS class of an HTML form's submit button. The 'contact' ID has become the CSS class of the TR elements in an HTML table. The subordinate descriptors 'fullname','email', and 'phone' are rendered as the TD elements of each TR.

This HAL document uses the same profile to express the same application-level semantics as the HTML document.

<resource href="http://example.org/contacts/">
  <link href="http://alps.io/profiles/contacts#contact"
    rel="type" />
  <link href="http://example.org/help-file/contacts.html"
    rel="help" />
  <link rel="collection"
    href="http://example.org/contacts/{?nameSearch}"
    templated="true" />
  <resource rel="item" href="http://example.org/contacts/1">
    <link href="http://alps.io/profiles/contacts#contact"
      rel="type" />
    <fullName>Ann Arbuckle</fullName>
    <email>aa@example.org</email>
    <phone>123.456.7890</phone>
  </resource>
  <resource rel="item" href="http://example.org/contacts/100">
    <link href="http://alps.io/profiles/contacts#contact"
      rel="type" />
    <fullName>Zelda Zackney</fullName>
    <email>zz@example.org</email>
    <phone>987.664.3210</phone>
  </resource>
</resource>
Figure 3: HAL XML Contacts Representation

In a HAL representation, all state transitions ('collection' and 'item', in this case) are represented as link relations. All data descriptors ('fullName', 'email', and 'phone') are represented as XML tags named after the descriptors.

This Collection+JSON document uses the ALPS profile to express the same application-level semantics as the HTML and HAL documents.

{
  "collection" : {
    "version" : "1.0",
    "href" : "http://example.org/contacts/",

    "links" : [
      {
        "rel" : "profile",
        "href" : "http://alps.io/profiles/contacts"
      },
      {
        "rel" : "help",
        "href" : "http://example.org/help/contacts.html"
      },
      {
        "rel" : "type",
        "href" : "http://alps.io/profiles/contacts#contact"
      }
    ],

    "queries" : [
      {
        "rel" : "collection",
        "rt" : "contact",
        "href" : "http://example.org/contacts/",
        "data" : [
          {
            "name" : "nameSearch",
            "value" : "",
            "prompt" :  "Search Name"
          }
        ]
      }
    ],

    "items" : [
      {
        "href" : "http://example.org/contacts/1",
        "rel" : "item",
        "rt" : "contact",
        "data" : [
          {"name" : "fullName", "value" : "Ann Arbuckle"},
          {"name" : "email", "value" : "aa@example.org"},
          {"name" : "phone", "value" : "123.456.7890"}
        ],
        "links" : [
          {
            "rel" : "type",
            "href" : "http://alps.io/profiles/contacts#contact"
          }
        ]
      },
      {
        "href" : "http://example.org/contacts/100",
        "rel" : "item",
        "rt" : "contact",
        "data" : [
          {
            "name" : "fullName",
            "value" : "Zelda Zackney"
          },
          {
            "name" : "email",
            "value" : "zz@example.org"
          },
          {
            "name" : "phone",
            "value" : "987.654.3210"
          }
        ],
        "links" : [
          {
            "rel" : "type",
            "href" : "http://alps.io/profiles/contacts#contact"
          }
        ]
      }
    ]
  }
}

Figure 4: Collection+JSON Contacts Representation

The descriptor 'collection' has become the link relation associated with a Collection+JSON query. The descriptors 'fullName', 'email', and 'phone' have become the names of key-value pairs in the items in a Collection+JSON collection.

1.4. Identifying an ALPS Document

An ALPS vocabulary is identified by a unique URL. This SHOULD be a URL that can be dereferenced. All ALPS URLs MUST be unique and all ALPS documents intended for public consumption SHOULD be registered in an ALPS Registry [TK: add text on where/how to find registries -mamund].

In order to reduce load on servers responding to ALPS document requests, it is RECOMMENDED that servers use cache control directives that instruct client apps to locally cache the results. Clients making these ALPS document requests SHOULD honor the server's caching directives.

2. ALPS Documents

An ALPS document contains a machine-readable collection of identifying strings and their human-readable explanations. An ALPS document can be represented in either XML or JSON format. This section identifies the general elements and properties of an ALPS document, their meaning, and their use, independent of how the document is represented. Section 2.3 provides specific details on constructing a valid ALPS document in XML and in JSON format.

2.1. Compliance

An implementation is not compliant if it fails to satisfy one or more of the MUST or REQUIRED level requirements. An implementation that satisfies all the MUST or REQUIRED level and all the SHOULD level requirements is said to be 'unconditionally compliant'; one that satisfies all the MUST level requirements but not all the SHOULD level requirements is said to be 'conditionally compliant.'

2.2. ALPS Document Properties

The ALPS media type defines a small set of properties. These properties appear in both the XML and JSON formats. Below is a list of the properties that can appear in an ALPS document.

2.2.1. 'alps'

Indicates the root of the ALPS document. This property is REQUIRED, and it SHOULD have one or more 'descriptor' child properties.

Examples:

XML:
<alps>...</alps>
JSON:
{ "alps" : ... }

2.2.2. 'contentType'

This is a property of the 'doc' element. It indicates the media type of the content enclosed by the 'doc' element. This is an OPTIONAL property and it MAY be ignored by document parsers. It's value SHOULD be an Internet Media Type (see [RFC2045]).

NOTE:
Media-type values are registered with the Internet Assigned Number Authority (see [RFC2045]). The use of non-registered media types is discouraged.

The 'contentType' property and the 'format' property serve the same purpose. When the 'contentType' property appears it SHOULD be used. If both the 'format' and the 'contentType' property appears, the 'format' SHOULD be ignored. If the 'contentType' property does not appear and the 'format' does not appear, document parsers SHOULD assume the 'contentType' value is set to text/plain. Since some ALPS document parsers MAY only understand the 'format' property, even when document writers include the 'contentType' property, they should also be sure that any exsiting 'format' does not conflict with the supplied 'contentType' property.

Examples:

XML:
<doc contentType="text/html" > <![CDATA[ <h1>Help File</h1> <p>...</p> ]]> </doc>
JSON:
{ "doc" : { "contentType" : "text/html", "value" : "<h1>Help File</h1><p>...</p>" } }

2.2.3. 'def'

Contains a valid IRI (see [RFC3987]) value that idenfities the source definition of the descriptor. This is a property of the 'descriptor' element and it is OPTIONAL. It MAY or MAY NOT be an IRI that can be dereferenced.

Examples:

XML:
<descriptor id="title" def="http://schema.org/title" />
JSON:
{ "descriptor" : [ {"id" : "title", "def":"http://schema.org/title" } ]}

2.2.4. 'descriptor'

A 'descriptor' element defines the semantics of specific data elements or state transitions that MAY exist in an associated representation.

One or more 'descriptor' elements SHOULD appear as children of 'alps'. It may also appear as a child of itself; that is, the 'descriptor' property may be nested.

The 'descriptor' element MAY be represented as a single element or it MAY be represented as an array of single elements.

The 'descriptor' property SHOULD have either an 'id' or 'href' attribute. It MAY have both. Additionally, the 'descriptor' MAY have any of the following attributes:

  1. 'def'
  2. 'doc'
  3. 'href'
  4. 'name'
  5. 'title'
  6. 'type'
  7. 'rel'
  8. 'tag'

If present, the 'def' property SHOULD be contain a valid IRI (see [RFC3987]). This IRI MAY or MAY NOT be one that can be dereferenced.

If present, the 'href' property MUST contain a URL that can be dereferenced that points to another 'descriptor' either within the current ALPS document or in another ALPS document.

If 'descriptor' has an 'href' attribute, then 'descriptor' is inheriting all the attributes and sub-properties of the descriptor pointed to by 'href'. When 'descriptor' has a property defined locally, that property value takes precedence over any inherited property value. Since there is no limit to the nesting of elements -- even ones linked remotely -- it is important to process 'all descriptor' chains starting from the bottom to make sure you have collected all the available properties and have established the correct value for each of them.

If 'descriptor' is declared at the top level of an ALPS document, then a client SHOULD assume that 'descriptor' can appear anywhere in a runtime message.

If 'descriptor' is nested, i.e. declared as a child of another descriptor, then:

  1. A client SHOULD assume them to appear in any sibling 'descriptor' element and recursively in their child descriptors.
  2. A client SHOULD NOT assume that it can appear anywhere outside of parent descriptor, unless it was explicitly referenced by another descriptor in 'href' attribute. In that case the same rules are applied to 'descriptor' containing 'href' attribute.

2.2.5. 'doc'

A text field that contains free-form, usually human-readable, text. The 'doc' element MAY be represented as a single element or it MAY be represented as an array of single elements.

The 'doc' element MAY have the following properties: 'href', 'format', and 'tag'.

If the 'href' property appears it SHOULD contain a URL that can be dereferenced which points to human-readable text. If the 'format' property appears it SHOULD contain one of the following values: 'text', 'html', 'asciidoc', or 'markdown'. Any program processing 'doc' elements SHOULD honor the 'format' directive and parse/render the content appropriately. If the value in the 'format' property is not recognized and/or supported, the processing program MUST treat the content as plain text. If no 'format' property is present, the content SHOULD be treated as plain text.

NOTE:
In the XML representation of ALPS documents, the contents of the 'doc' element SHOULD be enclosed by <!CDATA[ and ]]>. Even when not enclosed, the contents of the XML 'doc' element MUST be treated as a string when parsing the ALPS document.
XML:
<doc format="html"> <![CDATA[ <h1>Date of Birth</h1> <p>...</p> ]]> </doc>
JSON:
{ "doc" : { "format" : "text" , "value" : "Date of Birth ..." } }

A 'doc' element SHOULD appear as a child of 'descriptor'. When present, it describes the meaning and use of the related 'descriptor'.

XML:
<descriptor ... > <doc><![CDATA[...]]></doc> </descriptor>
JSON:
{ "descriptor" : [ { "doc" : { "value" : "..." } ... ] }

The 'doc' element MAY appear as a child of 'alps'. When present, it describes the purpose of the ALPS document as a whole.

XML:
<alps> <doc><![CDATA[...]]></doc> ... >/alps>
JSON:
{ "alps : { "doc" : { "value" : "..." } } ... }

2.2.6. 'ext'

The 'ext' element can be used to extend the ALPS document with author-specific information. It provides a way to customize ALPS documents with additional properties not covered in this specification. This is an OPTIONAL element.

The 'ext' element MAY be represented as a single element or it MAY be represented as an array of single elements.

The 'ext' element has the following properties.

  1. 'id'
  2. 'href'
  3. 'value'
  4. 'tag'

The 'id' property is REQUIRED. The 'href' is RECOMMENDED and it SHOULD point to documentation that explains the use and meaning of this 'ext' element. The 'value' property is OPTIONAL. The content is undetermined; its meaning and use SHOULD be explained by the document found by de-referencing the 'href' property.

Examples:

XML:
<ext id="directions" href="http://alps.io/ext/directions" value="north south east west" >
JSON:
{ "ext" : { "id" : "directions", "href" : "http://alps.io/ext/directions", value="north south east west" } }

The 'ext' element MAY appear as a child of the following elements:

  1. 'alps'
  2. 'descriptor'

Since the 'ext' element has no specific meaning within this specification, it MUST be ignored by any application that does not understand its meaning.

2.2.7. 'format'

Indicates how the text content should be parsed and/or rendered. This specification identifies a range of possible values for 'format':

  • 'text', for plain text, MUST be supported.
  • 'html', for HTML, SHOULD be supported.
  • 'asciidoc', for AsciiDoc, MAY be supported.
  • 'markdown', per [RFC7763], MAY be supported.

Any other values for this attribute are undefined and SHOULD be treated as plain text. If the program does not recognize the value of the 'format' property and/or the 'format' property is missing, the content SHOULD be treated as plain text.

This property MAY appear as an attribute of the 'doc' element.

NOTE:
The 'format' property contains the same information (in a different form) as the 'contentType' property. When both properties appear on the same 'doc', the value of the 'contentType' property overrides the value of the 'format' property.

2.2.8. 'href'

Contains a resolvable URL.

When it appears as an attribute of a 'descriptor', 'href' points to another 'descriptor' either within the existing ALPS document as a fragment or in another ALPS document as an absolute URL. The URL MUST contain a fragment per Section 2.2.9.2 referencing the related 'descriptor'.

When it appears as an attribute of 'ext', 'href' points to an external document which provides the definition of the extension.

When it appears as an attribute of 'link', 'href' points to an external document whose relationship to the current document or 'descriptor' is described by the associated 'rel' property.

When it appears as an attribute of 'doc', 'href' points to a document that contains human-readable text that describes the associated 'descriptor' or ALPS document.

2.2.9. 'id'

A document-wide unique identifier for the related element. This SHOULD appear as an attribute of a 'descriptor'. It SHOULD be an opaque string that does not contain any URL unsafe characters per [RFC1738].

The value of this attribute MAY be used as an identifier in the related runtime hypermedia representation. In the example below the ALPS descriptor with an 'id' of 'q' is used to identify an HTML input element:

'id' in ALPS...
<descriptor id="q" type="semantic" />
...becomes the 'class' in HTML
<input class="q" type="text" value="" />

It should be noted that the exact mapping from ALPS elements (e.g. 'id') to elements within a particular media type (HTML, Collection+JSON, etc.) is covered in separate documents (to be specified).

2.2.9.1. ALPS 'id' and 'name' Properties

In some cases, media types support non-unique identifiers (e.g. HTML's 'name' property) or will allow the same identifier value for multiple elements in the same representation (e.g. <div id="search" ... /> and <input type="submit" class="search" .../> and <input name="search" ... />). In those cases, translating that representation into ALPS documents could result in multiple 'id' properties with the same value.

To avoid this, ALPS document designers can add the 'name' property to a 'descriptor' to hold the common value ('search') while still using the 'id' property to hold a document-wide unique value. For example:

<!-- HTML -->
<div id="search">
  <form action="..." method="get">
    <input name="search" value="..." type="text" />
    <input type="submit" class="search" />
  </form>
</div>
Figure 5: HTML Representation of a Search Transition
<!-- ALPS -->
<descriptor id="search-block" type="semantic" name="search">
  <descriptor id="search-form" type="safe" name="search">
    <descriptor id="search-data" type="semantic" name="search" />
  </descriptor>
</descriptor>
Figure 6: ALPS Description of the same Search Transition
2.2.9.2. Fragment Identifiers and 'id'

When applied to an ALPS document, a URI fragment identifier points to the 'descriptor' whose 'id' is the value of the fragment. For example, the fragment identifier 'customer' in the URI http://example.com/my-alps-document#customer refers to an ALPS 'descriptor' with 'id' set to 'customer'. If the 'id' contains URL unsafe characters per [RFC1738], the fragment referencing the 'id' MUST be URL escaped.

A relative URL with a fragment identifier within an ALPS document (e.g. href="#customer") refers to a local 'descriptor' within the document containing the reference.

The complete URI to an ALPS 'descriptor' (including the fragment) forms an 'abstract semantic type' identifier. This is a resolvable URI (URL) that can be used to indicate the type of a resource; for instance, it can be used as the value of the IANA-registered relation type 'type'.

Since a state transition 'descriptor' may define a relation type value, it is important to avoid creating conflicts with existing IANA-registered values. If the resulting link relation type is the same as a registered relation type, the descriptor MUST not change the meaning of the IANA relation type.

Further, since the 'id' of a 'descriptor' may define a link relation value per Section 2.2.4.1, if a conflict exists in defining such a descriptor's document-wide unique 'id' with another 'descriptor', the conflicting 'descriptor' MUST define a unique 'id' and MAY specify a 'name' property to resolve the conflict.

If it is unclear whether a registered link relation type in a representation document refers to a relation registered with IANA or a relation registered in an ALPS profile, the semantics of that link are undefined.

2.2.11. 'name'

Indicates the name of the 'descriptor' as found in generic representations. It MAY appear as a property of 'descriptor'.

This is used when the name of the 'descriptor' is used as an 'id' value elsewhere in the ALPS document. For instance, if a single ALPS document defines a semantic descriptor (data element) called 'customer' and a safe descriptor (transition element) also called 'customer', they cannot both have 'id="customer"' in the ALPS document. One of them needs to have some other 'id', and to set 'name="customer"'.

The use of the 'name' property usually indicates an ambiguity in the application semantics. Thus, it SHOULD only be used when creating an ALPS profile that describes an existing design.

2.2.12. 'rel'

Contains a [RFC5988] approved value: either an extension relation type (a URI) or a registered relation type (a short string).

Appears as a property of 'link' and 'descriptor'.

2.2.13. 'rt'

Indicates the kind of resource that will be returned when executing the specified network request. The 'rt' attribute SHOULD appear only on a 'descriptor' with a 'type' value of 'safe', 'unsafe', or 'idempotent.'

The 'rt' attribute is OPTIONAL and, when it appears, it MUST point to the 'id' of an existing 'descriptor' using one of two methods:

  1. A fragment identifier (e.g. rt="#friend") which points to the 'id' of an existing 'descriptor' in the current ALPS document.
  2. A resolvable URL with a fragment identifier (e.g. rt="http://example.org/profiles/people#friend") which points to the 'id' of an existing 'descriptor' in any valid ALPS document.

2.2.14. 'tag'

The 'tag' property is designed to hold a whitespace-separated list of non-unique private values. The values in this property are typically used by document authors to mark one or more elements of and ALPS document with a shared identity that parsers and other document consumers can use to group and/or process portions of the ALPS document.

The 'tag' can be a property of the 'descriptor', 'doc', 'ext', and 'link' elements. It is an OPTIONAL property and document readers MAY ignore it.

NOTE
When 'tag' values are used in the ALPS document, authors SHOULD include one or more 'link' elements at the root of the ALPS document that has the 'rel' value set to "tag-doc" and has an 'href' that points a human-readable document which defines any 'tag' values used.
<?xml version="1.0"?>
  <alps version="1.0">
  <link rel="tag-doc" href="http://example.org/tags/index.html" />
  <title>Search Profile</title>
  <doc href="http://example.org/samples/full/doc.html" />
  <doc href="http://example.org/samples/profile/doc.html"
    tag="profile"/>

  <descriptor id="search" type="safe"
      rt="#profile-results"
      title="Search for a profile."
      tag="profile">
    ...
  </descriptor>
  <descriptor id="profile-results"
      type="semantic"
      tag="profile">
      ...
  </descriptor>
</alps>
Figure 7: XML Example
{
  "alps" : {
    "version" : "1.0",
    "link" : {
      "rel" : "tag-doc",
      "href" : "http://example.org/tags/index.html"
    },
    "doc" : [
      {"href" : "http://example.org/samples/full/doc.html"},
      {"href" : "http://example.org/samples/profile/doc.html",
        "tag" : "profile"},
    ],
    "descriptor" : [
      {
        "id" : "search",
        "type" : "safe",
        "rt" : "#profile-results",
        "title" : "Search for a profile.",
        "tag" : "profile"
        "descriptor" : [ ... ]
      },
      {
        "id" : "profile-results",
        "type" : "semantic",
        "tag" : "profile",
        "descriptor" : [ ... ]
      }
    ]
  }
}
Figure 8: JSON Example

2.2.15. 'title'

The 'title' can appear as a root element (as a child of 'alps') or as a property of 'descriptor' or 'link'.

The value of `title` contains a single human-readable text string.

<?xml version="1.0"?>
  <alps version="1.0">
  <title>Search Profile</title>
  <doc href="http://example.org/samples/full/doc.html" />

  <descriptor id="search" type="safe" title="Search for a profile.">
    ...
  </descriptor>
</alps>
Figure 9: XML Example

2.2.16. 'type'

Indicates the type of hypermedia control to which the element is applied within the resulting representation. This SHOULD appear for each 'descriptor' element. The four valid values are:

'semantic'
A state element (e.g. HTML.SPAN, HTML.INPUT, etc.).
'safe'
A hypermedia control that triggers a safe, idempotent state transition (e.g. HTTP.GET or HTTP.HEAD).
'idempotent'
A hypermedia control that triggers an unsafe, idempotent state transition (e.g. HTTP.PUT or HTTP.DELETE).
'unsafe'
A hypermedia control that triggers an unsafe, non-idempotent state transition (e.g. HTTP.POST).

If no 'type' attribute is associated with the element, then 'type="semantic"' is implied.

2.2.17. 'value'

Contains a string value. It MAY appear as an attribute of the 'doc' and the 'ext' elements.

2.2.18. 'version'

Indicates the version of the ALPS specification used in the document. This SHOULD appear as a property of the 'alps' element. Currently the only valid value is '1.0'. If no value appears, then '1.0' is implied.

2.3. ALPS Representations

An ALPS document may be represented in either XML or JSON format. This section contains notes on how the ALPS elements and attributes appear in each format, along with examples to guide ALPS document authors.

2.3.1. Sample HTML

Below is a simple HTML document that contains a handful of semantic descriptors and transition instructions. This document was generated from the XML and JSON ALPS documents that follow. Use this HTML document as a guide when evaluating the XML and JSON examples.

<!-- sample HTML document -->
<html>
  <head>
    <link rel="profile" href="http://alps.io/documents/search" />
  </head>
  <body>
    <form class="search" action="..." method="get">
      <input type="text" name="search" value="..." />
        <select name="resultType">
          <option value="summary" />
          <option value="detailed" />
        </select>
      <input type="submit" />
    </form>
  </body>
</html>
Figure 10: HTML Sample

2.3.2. XML Representation Example

In the XML version of an ALPS document, the following ALPS properties always appear as XML elements: 'alps', 'doc', 'descriptor', and 'ext'. All other ALPS properties appear as XML attributes.

2.3.2.1. Complete XML Representation

Below is an example of an application/alps+xml representation.

<?xml version="1.0"?>
<alps version="1.0">
  <doc href="http://example.org/samples/full/doc.html" />

  <descriptor id="search" type="safe">
    <doc format="text">A search form with two inputs.</doc>
    <descriptor href="#resultType" />
    <descriptor id="value" name="search" type="semantic">
      <doc>input for search</doc>
    </descriptor>
  </descriptor>

  <descriptor id="resultType" type="semantic">
    <doc>results format</doc>
    <ext
      href="http://alps.io/ext/range"
      value="summary,detail" />
  </descriptor>
</alps>
Figure 11: Complete XML Representation

2.3.3. JSON Representation Example

When representing ALPS documents in JSON format, the 'descriptor' and 'ext' properties are always expressed as arrays of anonymous objects - even when there is only one member in the array.

For example:

"descriptor" : [
  {
    "id" : "value",
    "name" : "search",
    "type" : "semantic",
    "doc" : { "value" : "input for search" }
  },
  { "href" : "#resultType" }
]
Figure 12: Arrays in ALPS+JSON

The 'doc' property is always expressed as a named object.

For example:

{
  "doc" : {
    "format" : "text",
    "value" : "Rules are important"
  }
}
Figure 13: Descriptions in ALPS+JSON
2.3.3.1. Complete JSON Representation

Below is a example of the application/alps+json representation of an ALPS document.

{
  "alps" : {
    "version" : "1.0",
    "doc" : {
      "href" : "http://example.org/samples/full/doc.html"
    },
    "descriptor" : [
      {
        "id" : "search",
        "type" : "safe",
        "doc" : { "value" :
          "A search form with a two inputs"
        },
        "descriptor" : [
          {
            "id" : "value",
            "name" : "search",
            "type" : "semantic",
            "doc" : { "value" : "input for search" }
          },
          { "href" : "#resultType" }
        ]
      },
      {
        "id" : "resultType",
        "type" : "semantic",
        "doc" : { "value" : "results format"},
        "ext" : [
          {
            "href" : "http://alps.io/ext/range",
            "value" : "summary,detail"
          }
        ]
      }
    ]
  }
}
Figure 14: Complete ALPS+JSON Representation

3. Applying ALPS documents to Existing Media Types

An ALPS document can be applied to many existing media types as long as there exists an agreed mapping between ALPS and the target media type. Section 1.3 gave some informative examples of this. Normative, up-to-date guidance on applying ALPS documents to existing media types are available at the official ALPS Web site at (http://alps.io/docs/mapping). [TK : this page does not yet exist. -mamund]

Not all media types can faithfully represent all ALPS descriptors. For instance, the 'application/json' media type has no standard way of representing hyperlinks. The details of how to apply ALPS to such a media type will necesarily be incomplete, and it will not be possible to represent some aspects of an ALPS profile in documents in that media type.

3.1. Linking to ALPS Documents

To indicate that an ALPS profile describes the semantics of some representation document, the representation document SHOULD be linked to the ALPS document. The 'profile' link relation [RFC6906] MUST be used when creating this link. If the media type of the representation document has no native ability to link to other resources, or no ability to express link relations, the HTTP header 'Link' [RFC5988] MAY be used to connect the representation document and the ALPS profile. If the media type of the representation document defines a parameter for linking the document to a profile, that parameter MAY be used to connect the representation document and the ALPS profile.

A single representation document may be described by more than one ALPS profile. If two ALPS profiles give conflicting semantics for the same element, the document linked to earlier in the representation SHOULD take precedence. A profile linked to using the 'Link' header takes precedence over a profile linked to within the representation document itself. A profile linked to using a media type parameter takes precedence over a profile linked to using the 'Link' header and a profile linked to within the representation document itself.

4. IANA Considerations

This specification establishes two media types: 'application/alps+xml' and 'application/alps+json'

4.1. application/alps+xml

Type name:
application
Subtype name:
alps+xml
Required parameters:
None
Optional parameters:
charset
This parameter has identical semantics to the charset parameter of the 'application/xml' media type as specified in[RFC3023].
profile
A whitespace-separated list of IRIs identifying specific constraints or conventions that apply to an ALPS document. A profile must not change the semantics of the resource representation when processed without profile knowledge, so that clients both with and without knowledge of a profiled resource can safely use the same representation. The profile parameter may also be used by clients to express their preferences in the content negotiation process. It is recommended that document authors use profile IRIs that can be dereferenced and that they provide useful documentation at that IRI.
Encoding considerations:
binary
Same as encoding considerations of application/xml as specified in[RFC3023].
Security considerations:
This format shares security issues common to all XML content types. It does not provide executable content. Information contained in ALPS documents do not require privacy or integrity services.
Interoperability considerations:
ALPS is not described by a DTD and applies only the well-formedness rules of XML. It should only be parsed by a non-validating parser.
Fragment identifier considerations:
Fragment identifiers used with application/alps+xml resources are simple, opaque strings that do not contain any URL unsafe characters per [RFC1738] which match the 'id' in an existing 'descriptor' in the document. For example, the fragment identifier "#user" refers to a descriptor in the document with an id value set to "user."
Published specification:
This Document
Applications that use this media type:
Various
Additional information:
magic number(s):
none
file extensions:
.xml
macintosh type file code:
TEXT
object idenfiers:
none
person to contact for further information:
Name:
Mike Amundsen
Email:
mca@amundsen.com
Intended usage:
Common
Author/change controller:
Mike Amundsen

4.2. application/alps+json

Type name:
application
Subtype name:
alps+json
Required parameters:
None
Optional parameters:
profile
A whitespace-separated list of IRIs identifying specific constraints or conventions that apply to an ALPS document. A profile must not change the semantics of the resource representation when processed without profile knowledge, so that clients both with and without knowledge of a profiled resource can safely use the same representation. The profile parameter may also be used by clients to express their preferences in the content negotiation process. It is recommended that document authors use IRIs that can be dereferenced and that they provide useful documentation at that IRI.
Encoding considerations:
binary
Security considerations:
This media type shares security issues common to all JSON content types. See [RFC4627] Section #6 for additional information. ALPS+JSON does not provide executable content. Information contained in ALPS+JSON documents do not require privacy or integrity services.
Interoperability considerations:
None
Fragment identifier considerations:
Fragment identifiers used with application/alps+json resources are simple, opaque strings that do not contain any URL unsafe characters per [RFC1738] which match the 'id' in an existing 'descriptor' in the document. For example, the fragment identifier "#user" refers to a descriptor in the document with an id value set to "user."
Published specification:
This Document
Applications that use this media type:
Various
Additional information:
magic number(s):
none
file extensions:
.json
macintosh type file code:
TEXT
object idenfiers:
none
person to contact for further information:
Name:
Mike Amundsen
Email:
mca@amundsen.com
Intended usage:
Common
Author/change controller:
Mike Amundsen

5. Internationalization Considerations

[TK]

insert text (consider rfc 5987)

6. Acknowledgements

The authors gratefully acknowledge the following people who made contributions to this specification:

Glenn Block, Christopher Harrison, Steve Klabnik, Filip Kolarik, Akihito Koriyama, Graham Klyne, Mike Levy, Stephen Mizell, Dmitry Pavlov, Remon (Ray) Sinnema.

7. Normative References

[RFC1738]
Berners-Lee, T., Masinter, L., and M. McCahill, "Uniform Resource Locators (URL)", RFC 1738, DOI 10.17487/RFC1738, , <https://www.rfc-editor.org/info/rfc1738>.
[RFC2119]
Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, , <https://www.rfc-editor.org/info/rfc2119>.
[RFC2045]
Freed, N. and N. Borenstein, "Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies", RFC 2045, DOI 10.17487/RFC2045, , <https://www.rfc-editor.org/info/rfc2045>.
[RFC3023]
Murata, M., St. Laurent, S., and D. Kohn, "XML Media Types", RFC 3023, DOI 10.17487/RFC3023, , <https://www.rfc-editor.org/info/rfc3023>.
[RFC3987]
Duerst, M. and M. Suignard, "Internationalized Resource Identifiers (IRIs)", RFC 3987, DOI 10.17487/RFC3987, , <https://www.rfc-editor.org/info/rfc3987>.
[RFC4627]
Crockford, D., "The application/json Media Type for JavaScript Object Notation (JSON)", RFC 4627, DOI 10.17487/RFC4627, , <https://www.rfc-editor.org/info/rfc4627>.
[RFC5988]
Nottingham, M., "Web Linking", RFC 5988, DOI 10.17487/RFC5988, , <https://www.rfc-editor.org/info/rfc5988>.
[RFC6906]
Wilde, E., "The 'profile' Link Relation Type", RFC 6906, DOI 10.17487/RFC6906, , <https://www.rfc-editor.org/info/rfc6906>.
[RFC7320]
Nottingham, M., "URI Design and Ownership", RFC 7320, DOI 10.17487/RFC7320, , <https://www.rfc-editor.org/info/rfc7320>.
[RFC7763]
Leonard, S., "The text/markdown Media Type", RFC 7763, DOI 10.17487/RFC7763, , <https://www.rfc-editor.org/info/rfc7763>.

Appendix A. Frequently Asked Questions

A.1. Why are there no URLs in ALPS?

ALPS is meant to describe a service in a universal way. The same ALPS description document can be used by many ALPS-compliant servers. Since each service implementation is in charge of their own URL space, ALPS descriptions do not include URLs. See URI Design and Ownership [RFC7320] for more on this principle.

When implementing ALPS-compliant servers, implementors are free to use any URL design they wish. All that is required is that implementors use the same ALPS profile descriptor 'id' and 'name' properties in the representations. When implementing ALPS-compliant client applications, the URLs will be supplied at runtime by the server representations. Client apps only need to recognize the descriptor 'id' and 'name' values from the referenced ALPS profile document.

A.2. Why is there no workflow component in the ALPS specification?

ALPS is not designed to describe workflows or execution paths for a service. Instead, ALPS is designed to describe a shared set of data and actions elements that server MAY implement in order to create a service. Each action descriptor (where the descriptor's type property is set to 'safe', 'unsafe', or 'idemponent') SHOULD describe a state transition that a ALPS-compliant client application can invoke when it is available. Servers are free to implement the transitions they find useful and to arrange them in any order they wish. ALPS-compliant client applications SHOULD be able to recognize these descriptors when they appear and are free to act upon them directly, render them for humans to invoke, or ignore/hide them completely.

A.3. Why is there no way to indicate ranges for semantic descriptors?

For most all service implementations, there are cases where it would be helpful to document a range of possible values for a semantic element. For example, when implementing the descriptor {"id":"size", ...}, one service might want to indicate the list of supported values such as: 'small', 'meduim', 'large', etc. However, another service might have a very different list of possible values such as 'standard', 'oversized', 'undersized', etc. And there may be a service that only supports a single value here and will always supply it ('onesize').

Since ALPS is meant to provide a single description that can be used by multiple services, establishing ranges within the ALPS description is considered over-constraining service implementations. Services are free to supply this information within representations at run time. But including them in the global ALPS profile is discouraged.

Authors' Addresses

Mike Amundsen
Leonard Richardson
Mark W. Foster