<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.5.12 -->
<?rfc toc="yes"?>
<?rfc symrefs="yes"?>
<?rfc iprnotified="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc sortrefs="yes"?>
<?rfc colonspace="yes"?>
<?rfc rfcedstyle="no"?>
<?rfc tocdepth="4"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-irtf-t2trg-rest-iot-11" category="info" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" symRefs="true" sortRefs="true" tocDepth="4" version="3">
  <!-- xml2rfc v2v3 conversion 3.11.1 -->
  <front>
    <title abbrev="RESTful Design for IoT Systems">Guidance on RESTful Design for Internet of Things Systems</title>
    <seriesInfo name="Internet-Draft" value="draft-irtf-t2trg-rest-iot-11"/>
    <author initials="A." surname="Keränen" fullname="Ari Keränen">
      <organization>Ericsson</organization>
      <address>
        <postal>
          <street/>
          <city>Jorvas</city>
          <code>02420</code>
          <country>Finland</country>
        </postal>
        <email>ari.keranen@ericsson.com</email>
      </address>
    </author>
    <author initials="M." surname="Kovatsch" fullname="Matthias Kovatsch">
      <organization>Siemens</organization>
      <address>
        <postal>
          <street>Zählerweg 5</street>
          <city>Zug</city>
          <code>6300</code>
          <country>Switzerland</country>
        </postal>
        <email>matthias.kovatsch@siemens.com</email>
      </address>
    </author>
    <author initials="K." surname="Hartke" fullname="Klaus Hartke">
      <organization/>
      <address>
        <email>hartke@projectcool.de</email>
      </address>
    </author>
    <date year="2023" month="January" day="11"/>
    <area>T2TRG</area>
    <abstract>
      <t>This document gives guidance for designing Internet of Things (IoT) systems
that follow the principles of the Representational State Transfer (REST)
architectural style. This document is a product of the IRTF Thing-to-Thing
Research Group (T2TRG).</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>The Representational State Transfer (REST) architectural style <xref target="REST" format="default"/> is a set of guidelines and best practices for building distributed hypermedia systems.
At its core is a set of constraints, which when fulfilled enable desirable properties for distributed software systems such as scalability and modifiability.
When REST principles are applied to the design of a system, the result is often called RESTful and in particular an API following these principles is called a RESTful API.</t>
      <t>Different protocols can be used with RESTful systems, but at the time of writing the most common protocols are HTTP <xref target="RFC9110" format="default"/> and CoAP <xref target="RFC7252" format="default"/>.
Since RESTful APIs are often lightweight and enable loose coupling of system components, they are a good fit for various Internet of Things (IoT) applications, which in general aim at interconnecting the physical world with the virtual world.
The goal of this document is to give basic guidance for designing RESTful systems and APIs for IoT applications and give pointers for more information.</t>
      <t>Designing a good RESTful IoT system naturally has many commonalities with other Web systems.
Compared to others, the key characteristics of many RESTful IoT systems include:</t>
      <ul spacing="normal">
        <li>accommodating for constrained devices <xref target="RFC7228" format="default"/>, so with IoT, REST is not only used for scaling out (large number of clients on a Web server), but also for scaling down (efficient server on constrained node, e.g., in energy consumption or implementation complexity)</li>
        <li>facilitating efficient transfer over (often) constrained networks and lightweight processing in constrained nodes through compact and simple data formats</li>
        <li>avoiding (or at least minimizing) the need for human interaction through machine-understandable data formats and interaction patterns</li>
        <li>enabling the system to evolve gradually in the field, as the usually large number of endpoints can not be updated simultaneously</li>
        <li>having endpoints that are both clients and servers</li>
      </ul>
    </section>
    <section anchor="sec-terms" numbered="true" toc="default">
      <name>Terminology</name>
      <t>This section explains selected terminology that is commonly used in the context of RESTful design for IoT systems.
For terminology of constrained nodes and networks, see <xref target="RFC7228" format="default"/>.
Terminology on modeling of Things and their affordances (Properties, Actions, and Events) was taken from <xref target="I-D.ietf-asdf-sdf" format="default"/>.</t>
      <dl>
        <dt>
Action:  </dt>
        <dd>
          <t>An affordance that can potentially be used to perform a named operation on a Thing.</t>
        </dd>
        <dt>
Action Result:  </dt>
        <dd>
          <t>A representation sent as a response by a server that does not represent resource state, but the result of the interaction with the originally addressed resource.</t>
        </dd>
        <dt>
Affordance:  </dt>
        <dd>
          <t>An element of an interface offered for interaction, defining its possible uses or making clear how it can or should be used.
The term is used here for the digital interfaces of a Thing only;
the Thing might also have physical affordances such as buttons, dials, and displays.</t>
        </dd>
        <dt>
Cache:  </dt>
        <dd>
          <t>A local store of response messages and the subsystem that controls storage, retrieval, and deletion of messages in it.</t>
        </dd>
        <dt>
Client:  </dt>
        <dd>
          <t>A node that sends requests to servers and receives responses; it therefore has the initiative to interact.
In RESTful IoT systems it is common for nodes to have more than one role (i.e., to be both server and client; see <xref target="sec-architecture" format="default"/>).</t>
        </dd>
        <dt>
Client State:  </dt>
        <dd>
          <t>The state kept by a client between requests.
This typically includes the currently processed representation, the set of active requests, the history of requests, bookmarks (URIs stored for later retrieval), and application-specific state (e.g., local variables).
(Note that this is called "Application State" in <xref target="REST" format="default"/>, which has some ambiguity in modern (IoT) systems where resources are highly dynamic and the overall state of the distributed application (i.e., application state) is reflected in the union of all Client States and Resource States of all clients and servers involved.)</t>
        </dd>
        <dt>
Content Type:  </dt>
        <dd>
          <t>A string that carries the media type plus potential parameters for the representation format such as "text/plain;charset=UTF-8".</t>
        </dd>
        <dt>
Content Negotiation:  </dt>
        <dd>
          <t>The practice of determining the "best" representation for a client when examining the current state of a resource.
The most common forms of content negotiation are Proactive Content Negotiation and Reactive Content Negotiation.</t>
        </dd>
        <dt>
Dereference:  </dt>
        <dd>
          <t>To use an access mechanism (e.g., HTTP or CoAP) to interact with the resource of a URI.</t>
        </dd>
        <dt>
Dereferenceable URI:  </dt>
        <dd>
          <t>A URI that can be dereferenced, i.e., interaction with the identified resource is possible.
Not all HTTP or CoAP URIs are dereferenceable, e.g., when the target resource does not exist.</t>
        </dd>
        <dt>
Event:  </dt>
        <dd>
          <t>An affordance that can potentially be used to (recurrently) obtain information about what happened to a Thing, e.g., through server push.</t>
        </dd>
        <dt>
Form:  </dt>
        <dd>
          <t>A hypermedia control that enables a client to construct more complex requests, e.g., to change the state of a resource or perform specific queries.</t>
        </dd>
        <dt>
Forward Proxy:  </dt>
        <dd>
          <t>An intermediary that is selected by a client, usually via local configuration rules, and that can be tasked to make requests on behalf of the client.
This may be useful, for example, when the client lacks the capability to make the request itself or to service the response from a cache in order to reduce response time, network bandwidth, and energy consumption.</t>
        </dd>
        <dt>
Gateway:  </dt>
        <dd>
          <t>A reverse proxy that provides an interface to a non-RESTful system such as legacy systems or alternative technologies such as Bluetooth Attribute Profile (ATT) or Generic Attribute Profile (GATT).
See also "Reverse Proxy".</t>
        </dd>
        <dt>
Hypermedia Control:  </dt>
        <dd>
          <t>Information provided by a server on how to use its RESTful API; usually a URI and instructions on how to dereference it for a specific interaction. Hypermedia Controls are the serialized/encoded affordances of hypermedia systems.</t>
        </dd>
        <dt>
Idempotent Method:  </dt>
        <dd>
          <t>A method where multiple identical requests with that method lead to the same visible resource state as a single such request.</t>
        </dd>
        <dt>
Intermediary:  </dt>
        <dd>
          <t>System component in both server and client role. See "Forward Proxy", "Gateway", and "Reverse Proxy".</t>
        </dd>
        <dt>
Link:  </dt>
        <dd>
          <t>A hypermedia control that enables a client to navigate between resources and thereby change the client state.</t>
        </dd>
        <dt>
Link Relation Type:  </dt>
        <dd>
          <t>An identifier that describes how the link target resource relates to the current resource (see <xref target="RFC8288" format="default"/>).</t>
        </dd>
        <dt>
Media Type:  </dt>
        <dd>
          <t>An IANA-registered string such as "text/html" or "application/json" that is used to label representations so that it is known how the representation should be interpreted and how it is encoded.</t>
        </dd>
        <dt>
Method:  </dt>
        <dd>
          <t>An operation associated with a resource. Common methods include GET, PUT, POST, and DELETE (see <xref target="sec-methods" format="default"/> for details).</t>
        </dd>
        <dt>
Origin Server:  </dt>
        <dd>
          <t>A server that is the definitive source for representations of its resources and the ultimate recipient of any request that intends to modify its resources.
In contrast, intermediaries (such as proxies caching a representation) can assume the role of a server, but are not the source for representations as these are acquired from the origin server.</t>
        </dd>
        <dt>
Proactive Content Negotiation:  </dt>
        <dd>
          <t>A content negotiation mechanism where the server selects a representation based on the expressed preference of the client.
For example, an IoT application could send a request that prefers to accept the media type "application/senml+json".</t>
        </dd>
        <dt>
Property:  </dt>
        <dd>
          <t>An affordance that can potentially be used to read, write, and/or observe state on a Thing.</t>
        </dd>
        <dt>
Reactive Content Negotiation:  </dt>
        <dd>
          <t>A content negotiation mechanism where the client selects a representation from a list of available representations.
The list may, for example, be included by a server in an initial response.
If the user agent is not satisfied by the initial response representation, it can request one or more of the alternative representations, selected based on metadata (e.g., available media types) included in the response.</t>
        </dd>
        <dt>
Representation:  </dt>
        <dd>
          <t>A serialization that represents the current or intended state of a resource and that can be transferred between client and server.
REST requires representations to be self-describing, meaning that there must be metadata that allows peers to understand which representation format is used.
Depending on the protocol needs and capabilities, there can be additional metadata that is transmitted along with the representation.</t>
        </dd>
        <dt>
Representation Format:  </dt>
        <dd>
          <t>A set of rules for serializing resource state.
On the Web, the most prevalent representation format is HTML.
Other common formats include plain text and formats based on JSON <xref target="RFC8259" format="default"/>, XML, or RDF. Within IoT systems, often compact formats based on JSON, CBOR <xref target="RFC8949" format="default"/>, and EXI <xref target="W3C.REC-exi-20110310" format="default"/> are used.</t>
        </dd>
        <dt>
Representational State Transfer (REST):  </dt>
        <dd>
          <t>An architectural style for Internet-scale distributed hypermedia systems.</t>
        </dd>
        <dt>
Resource:  </dt>
        <dd>
          <t>An item of interest identified by a URI.
Anything that can be named can be a resource.
A resource often encapsulates a piece of state in a system.
Typical resources in an IoT system can be, e.g., a sensor, the current value of a sensor, the location of a device, or the current state of an actuator.</t>
        </dd>
        <dt>
Resource State:  </dt>
        <dd>
          <t>A model of the possible states of a resource that is expressed in supported representation formats.
Resources can change state because of REST interactions with them, or they can change state for reasons outside of the REST model, e.g., business logic implemented on the server side such as sampling a sensor.</t>
        </dd>
        <dt>
Resource Type:  </dt>
        <dd>
          <t>An identifier that annotates the application-semantics of a resource (see <xref section="3.1" sectionFormat="of" target="RFC6690" format="default"/>).</t>
        </dd>
        <dt>
Reverse Proxy:  </dt>
        <dd>
          <t>An intermediary that appears as a server towards the client, but satisfies the requests by making its own request toward the origin server (possibly via one or more other intermediaries) and replying accordingly.
A reverse proxy is often used to encapsulate legacy services, to improve server performance through caching, or to enable load balancing across multiple machines.</t>
        </dd>
        <dt>
Safe Method:  </dt>
        <dd>
          <t>A method that does not result in any state change on the origin server when applied to a resource.</t>
        </dd>
        <dt>
Server:  </dt>
        <dd>
          <t>A node that listens for requests, performs the requested operation, and sends responses back to the clients.
In RESTful IoT systems it is common for nodes to have more than one role (i.e., to be both server and client; see <xref target="sec-architecture" format="default"/>).</t>
        </dd>
        <dt>
Thing:  </dt>
        <dd>
          <t>A physical item that is made available in the Internet of Things, thereby enabling digital interaction with the physical world for humans, services, and/or other Things.</t>
        </dd>
        <dt>
Transfer protocols:  </dt>
        <dd>
          <t>In particular in the IoT domain, protocols above the transport layer that are used to transfer data objects and provide semantics for operations on the data.</t>
        </dd>
        <dt>
Transfer layer:  </dt>
        <dd>
          <t>Re-usable part of the application layer used to transfer the application specific data items using a standard set of methods that can fulfill application-specific operations.</t>
        </dd>
        <dt>
Uniform Resource Identifier (URI):  </dt>
        <dd>
          <t>A global identifier for resources.
See <xref target="sec-uris" format="default"/> for more details.</t>
        </dd>
      </dl>
    </section>
    <section anchor="basics" numbered="true" toc="default">
      <name>Basics</name>
      <section anchor="sec-architecture" numbered="true" toc="default">
        <name>Architecture</name>
        <t>Components of a RESTful system assume one of two roles when interacting: client or server.
Classic user agents (e.g., Web browsers) are always in the client role and have the initiative to interact with other components.
Origin servers govern over the resources they host and always have the server role, in which they wait for requests.</t>
        <t>Simple IoT devices, such as connected sensors and actuators, are commonly acting as servers to expose their physical world interaction capabilities (e.g., temperature measurement or door lock control capability) as resources.
A typical example of an IoT system client is a cloud service that retrieves data from the sensors and commands the actuators based on the sensor information.
Alternatively an IoT data storage system could work as a server where IoT sensor devices send their data in client role.</t>
        <figure anchor="basic-arch-x">
          <name>Client-Server Communication</name>
          <artwork align="center" name="" type="" alt=""><![CDATA[
   ________                       _________
  |        |                     |         |
  | User  (C)-------------------(S) Origin |
  | Agent  |                     |  Server |
  |________|                     |_________|
(e.g., Sensor,                (e.g., Data Store,
Cloud Service)                   IoT Device)
]]></artwork>
        </figure>
        <t>Intermediaries implement both roles, as they receive requests in server role and satisfy them by issuing their own requests in client role.
They do not, however, have initiative to issue requests on their own.
They often provide a cache to improve the overall system performance or, in the case of IoT, shield constrained devices from too many requests.
They can also translate requests to different RESTful protocols, for instance, as CoAP-HTTP cross-proxies <xref target="RFC8075" format="default"/>.</t>
        <t>A forward proxy is an intermediary selected by the user agent because of local application or system configuration.
It then forwards the request on behalf of the user agent, for instance, when the user agent is restricted by firewall rules or otherwise lacks the capability itself (e.g., a CoAP device contacting an HTTP origin server).</t>
        <figure anchor="basic-arch-a">
          <name>Communication with Forward Proxy</name>
          <artwork align="center" name="" type="" alt=""><![CDATA[
       ________       __________                        _________
      |        |     |          |                      |         |
      | User  (C)---(S) Inter- (C)--------------------(S) Origin |
      | Agent  |     |  mediary |                      |  Server |
      |________|     |__________|                      |_________|
(e.g., IoT Device) (e.g., Cross-Proxy)               (e.g., Web Server)
]]></artwork>
        </figure>
        <t>A reverse proxy is usually imposed by the origin server to transparently implement new features such as load balancing or interfaces to non-RESTful services such as legacy systems or alternative technologies such as Bluetooth ATT/GATT <xref target="BTCorev5.3" format="default"/>.
In the latter case, reverse proxies are usually called gateways.
Because of the Layered System constraint of REST, which says that a client cannot see beyond the server it is connected to, the user agent is not and does not need to be aware of the changes introduced through reverse proxies.</t>
        <figure anchor="basic-arch-b">
          <name>Communication with Reverse Proxy</name>
          <artwork align="center" name="" type="" alt=""><![CDATA[
      ________                        __________       _________
     |        |                      |          |     |         |
     | User  (C)--------------------(S) Inter- (x)---(x) Origin |
     | Agent  |                      |  mediary |     |  Server |
     |________|                      |__________|     |_________|
(e.g., Cloud Service)              (e.g., Gateway)   (e.g., Legacy System)
]]></artwork>
        </figure>
        <t>Components in IoT systems often implement both roles.
Unlike intermediaries, however, they can take the initiative as a client (e.g., to register with a directory, such as CoRE Resource Directory <xref target="RFC9176" format="default"/>, or to interact with another IoT device) and act as origin server at the same time (e.g., to serve sensor values or provide an actuator interface).</t>
        <figure anchor="basic-arch-c">
          <name>Communication with Things</name>
          <artwork align="center" name="" type="" alt=""><![CDATA[
 ________                                         _________
|        |                                       |         |
| Thing (C)-------------------------------------(S) Origin |
|       (S)                                 ___/ |  Server |
|________| \                            ___/     |_________|
 (e.g.,     \                       ___/   (e.g., Resource Directory)
  Sensor)    \   _________      ___/              _________
              \ |         | ___/                 |         |
               (C) Thing (C)                     |  User   |
                |        (S)--------------------(C) Agent  |
                |_________|                      |_________|
             (e.g., Controller)            (e.g., Configuration Tool)
]]></artwork>
        </figure>
      </section>
      <section anchor="system-design" numbered="true" toc="default">
        <name>System Design</name>
        <t>When designing a RESTful system, the primary effort goes into modeling the application as distributed state and assigning it to the different components (i.e., clients and servers).
The secondary effort is then selecting or designing the necessary representation formats to exchange information and enable interaction between the components through resources.</t>
        <t>Which resources exist and how they can be used is expressed by the server in so-called affordances, a concept adopted in the field of human-computer interaction <xref target="HCI" format="default"/>.
Affordances can be described in responses (e.g., the initial response from a well-known resource) or out of band (e.g., through a W3C Thing Description document <xref target="W3C-TD" format="default"/> from a directory).
In RESTful systems, affordances are encoded as hypermedia controls (links and forms):
links allow to navigate between resources and forms enable clients to formulate more complex requests (e.g., to modify a resource or perform a query).</t>
        <t>A physical door may have a door knob as affordance, indicating that the door can be opened by twisting the knob; a keyhole may indicate that it can be locked.
For Things in the IoT, these affordances may be serialized as two hypermedia forms, which include semantic identifiers from a controlled vocabulary (e.g., schema.org) and the instructions on how to formulate the requests for opening and locking, respectively.
Overall, this allows to realize a Uniform Interface (see <xref target="sec-uniform-interface" format="default"/>), which enables loose coupling between clients and servers.</t>
        <t>Hypermedia controls span a kind of state machine, where the nodes are resources or action results and the transitions are links or forms.
Clients run this distributed state machine (i.e., the application) by retrieving representations, processing the data, and following the included links and/or submitting forms to trigger the corresponding transition.
This is usually done by retrieving the current state, modifying the copy of the state on the client side, and transferring the new state to the server in the form of new representations -- rather than calling a service and modifying the state on the server side.</t>
        <t>Client state encompasses the current state of the described state machine and the possible next transitions derived from the hypermedia controls within the currently processed representation.
Furthermore, clients can have part of the state of the distributed application in local variables.</t>
        <t>Resource state includes the more persistent data of an application (i.e., data that exists independent of individual clients).
This can be static data such as device descriptions, persistent data such as system configurations, but also dynamic data such as the current value of a sensor on a Thing.</t>
        <t>In the design, it is important to distinguish between "client state" and "resource state", and keep them separate.
Following the Stateless constraint, the client state must be kept only on clients.
That is, there is no establishment of shared information about past and future interactions between client and server (usually called a session).
On the one hand, this makes requests a bit more verbose since every request must contain all the information necessary to process it.
On the other hand, this makes servers efficient and scalable, since they do not have to keep any state about their clients.
Requests can easily be distributed over multiple worker threads or server instances (cf. load balancing).
For IoT systems, this constraint lowers the memory requirements for server implementations, which is particularly important for constrained servers (e.g., sensor nodes) and servers serving large amount of clients (e.g., Resource Directory).</t>
      </section>
      <section anchor="sec-uris" numbered="true" toc="default">
        <name>Uniform Resource Identifiers (URIs)</name>
        <t>An important aspect of RESTful API design is to model the system as a set of resources, which potentially can be created and/or deleted dynamically and whose state can be retrieved and/or modified.</t>
        <t>Uniform Resource Identifiers (URIs) are used to indicate resources for interaction, to reference a resource from another resource, to advertise or bookmark a resource, or to index a resource by search engines.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
  foo://example.com:8042/over/there?name=ferret#nose
  \_/   \______________/\_________/ \_________/ \__/
   |           |            |            |        |
scheme     authority       path        query   fragment
]]></artwork>
        <t>A URI is a sequence of characters that matches the syntax defined in <xref target="RFC3986" format="default"/>.
It consists of a hierarchical sequence of five components: scheme, authority, path, query, and fragment identifier (from most significant to least significant), while not all components are necessary to form a valid URI.
A scheme creates a namespace for resources and defines how the following components identify a resource within that namespace.
The authority identifies an entity that governs part of the namespace, such as the server "www.example.org" in the "https" scheme.
A hostname (e.g., a fully qualified domain name) or an IP address literal, optionally followed by a transport layer port number, are usually used for the authority component.
The path and optional query contain data to identify a resource within the scope of the scheme-dependent naming authority (i.e., "http://www.example.org" is a different authority than "https://www.example.org"); if no path is given, the root resource is addressed.
The fragment identifier allows referring to some portion of the resource, such as a Record in a SenML Pack (<xref section="9" sectionFormat="of" target="RFC8428" format="default"/>).
However, fragment identifiers are processed only at client side and not sent on the wire.
<xref target="RFC8820" format="default"/> provides more details on URI design and ownership with best current practices for establishing URI structures, conventions, and formats.</t>
        <t>For RESTful IoT applications, typical schemes include "https", "coaps", "http", and "coap".
These refer to HTTP and CoAP, with and without Transport Layer Security (TLS, <xref target="RFC5246" format="default"/> for TLS 1.2 and <xref target="RFC8446" format="default"/> for TLS 1.3).
(CoAP uses Datagram TLS (DTLS) <xref target="RFC6347" format="default"/><xref target="RFC9147" format="default"/>, the variant of TLS for UDP.)
These four schemes also provide means for locating the resource; using the protocols HTTP for "http" and "https" and CoAP for "coap" and "coaps".
If the scheme is different for two URIs (e.g., "coap" vs. "coaps"), it is important to note that even if the remainder of the URI is identical, these are two different resources, in two distinct namespaces.</t>
        <t>Some schemes are for URIs with the main purpose as identifiers, and hence are not dereferenceable, e.g., the "urn" scheme can be used to construct unique names in registered namespaces.
In particular the "urn:dev" URI <xref target="RFC9039" format="default"/> details multiple ways for generating and representing endpoint identifiers of IoT devices.</t>
        <t>The query parameters can be used to parameterize the resource.
For example, a GET request may use query parameters to request the server to send only certain kind data of the resource (i.e., filtering the response).
Query parameters in PUT and POST requests do not have such established semantics and are not used consistently.
Whether the order of the query parameters matters in URIs is up to the server implementation; they might even be re-ordered, for instance by intermediaries.
Therefore, applications should not rely on their order; see <xref section="3.3.4" sectionFormat="of" target="RFC6943" format="default"/> for more details.</t>
        <t>Due to the relatively complex processing rules and text representation format, URI handling can be difficult to implement correctly in constrained devices.
Constrained Resource Identifiers <xref target="I-D.ietf-core-href" format="default"/> provide a CBOR-based format of URIs that is better suited for resource constrained devices.</t>
      </section>
      <section anchor="representations" numbered="true" toc="default">
        <name>Representations</name>
        <t>Clients can retrieve the resource state from a server or manipulate resource state on the (origin) server by transferring resource representations.
Resource representations must have metadata that identifies the representation format used, so the representations can be interpreted correctly.
This is usually a simple string such as the IANA-registered Internet Media Types.
Typical media types for IoT systems include:</t>
        <ul spacing="normal">
          <li>"text/plain" for simple text (more precisely "text/plain;charset=UTF-8" for UTF-8 encoding)</li>
          <li>"application/octet-stream" for arbitrary binary data</li>
          <li>"application/json" for the JSON format <xref target="RFC8259" format="default"/></li>
          <li>"application/cbor" for CBOR <xref target="RFC8949" format="default"/></li>
          <li>"application/exi" for EXI <xref target="W3C.REC-exi-20110310" format="default"/></li>
          <li>"application/link-format" for CoRE Link Format <xref target="RFC6690" format="default"/></li>
          <li>"application/senml+json" and "application/senml+cbor" for Sensor Measurement Lists (SenML) data <xref target="RFC8428" format="default"/></li>
        </ul>
        <t>A full list of registered Internet Media Types is available at the IANA registry <xref target="IANA-media-types" format="default"/>.
Numerical identifiers for media types, parameters, and content codings registered for use with CoAP are listed at CoAP Content-Formats IANA registry <xref target="IANA-CoAP-media" format="default"/>.</t>
        <t>The terms "media type", "content type" (media type plus potential parameters), and "content format" (short identifier of content type and content coding, abbreviated for historical reasons "ct") are often used when referring to representation formats used with CoAP.
The differences between these terms are discussed in more detail in <xref section="2" sectionFormat="of" target="RFC9193" format="default"/>.</t>
      </section>
      <section anchor="sec-methods" numbered="true" toc="default">
        <name>HTTP/CoAP Methods</name>
        <t><xref section="9.3" sectionFormat="of" target="RFC9110" format="default"/> defines the set of methods in HTTP;
<xref section="5.8" sectionFormat="of" target="RFC7252" format="default"/> defines the set of methods in CoAP.
As part of the Uniform Interface constraint, each method can have certain properties that give guarantees to clients.</t>
        <t>Safe methods do not cause any state change on the origin server when applied to a resource.
For example, the GET method only returns a representation of the resource state but does not change the resource.
Thus, it is always safe for a client to retrieve a representation without affecting server-side state.</t>
        <t>Idempotent methods can be applied multiple times to the same resource while causing the same eventual resource state as a single such request (unless something else caused the resource state to change).
For example, the PUT method replaces the state of a resource with a new state; replacing the state multiple times with the same new state still results in the same state for the resource.
However, responses from the server can be different when the same idempotent method is used multiple times.
For example when DELETE is used twice on an existing resource, the first request would remove the association and return a success acknowledgement, whereas the second request would likely result in an error response due to non-existing resource (note that neither response is a representation of the resource).</t>
        <t>The following lists the most relevant methods and gives a short explanation of their semantics.</t>
        <section anchor="get" numbered="true" toc="default">
          <name>GET</name>
          <t>The GET method requests a current representation for the target resource, while the origin server must ensure that there are no side effects on the resource state.
Only the origin server needs to know how each of its resource identifiers corresponds to an implementation and how each implementation manages to select and send a current representation of the target resource in a response to GET.</t>
          <t>A payload within a GET request message has no defined semantics.</t>
          <t>The GET method is safe and idempotent.</t>
        </section>
        <section anchor="post" numbered="true" toc="default">
          <name>POST</name>
          <t>The POST method requests that the target resource process the representation enclosed in the request according to the resource's own specific semantics.</t>
          <t>If one or more resources has been created on the origin server as a result of successfully processing a POST request, the origin server sends a 201 (Created) response containing a Location header field (with HTTP) or Location-Path and/or Location-Query Options (with CoAP) that provide an identifier for the resource created.
The server also includes a representation that describes the status of the request while referring to the new resource(s).</t>
          <t>The POST method is not safe nor idempotent.</t>
        </section>
        <section anchor="put" numbered="true" toc="default">
          <name>PUT</name>
          <t>The PUT method requests that the state of the target resource be created or replaced with the state defined by the representation enclosed in the request message payload.
A successful PUT of a given representation would suggest that a subsequent GET on that same target resource will result in an equivalent representation being sent.
A PUT request applied to the target resource can have side effects on other resources.</t>
          <t>The fundamental difference between the POST and PUT methods is highlighted by the different intent for the enclosed representation.
The target resource in a POST request is intended to handle the enclosed representation according to the resource's own semantics, whereas the enclosed representation in a PUT request is defined as replacing the state of the target resource.
Hence, the intent of PUT is idempotent and visible to intermediaries, even though the exact effect is only known by the origin server.</t>
          <t>The PUT method is not safe, but is idempotent.</t>
        </section>
        <section anchor="delete" numbered="true" toc="default">
          <name>DELETE</name>
          <t>The DELETE method requests that the origin server remove the association between the target resource and its current functionality.</t>
          <t>If the target resource has one or more current representations, they might or might not be destroyed by the origin server, and the associated storage might or might not be reclaimed, depending entirely on the nature of the resource and its implementation by the origin server.</t>
          <t>The DELETE method is not safe, but is idempotent.</t>
        </section>
        <section anchor="fetch" numbered="true" toc="default">
          <name>FETCH</name>
          <t>The CoAP-specific FETCH method <xref target="RFC8132" format="default"/> requests a representation of a resource parameterized by a representation enclosed in the request.</t>
          <t>The fundamental difference between the GET and FETCH methods is that the request parameters are included as the payload of a FETCH request, while in a GET request they are typically part of the query string of the request URI.</t>
          <t>The FETCH method is safe and idempotent.</t>
        </section>
        <section anchor="patch" numbered="true" toc="default">
          <name>PATCH</name>
          <t>The PATCH method <xref target="RFC5789" format="default"/> <xref target="RFC8132" format="default"/> requests that a set of changes described in the request entity be applied to the target resource.</t>
          <t>The PATCH method is not safe nor idempotent.</t>
          <t>The CoAP-specific iPATCH method is a variant of the PATCH method that is not safe, but is idempotent.</t>
        </section>
      </section>
      <section anchor="httpcoap-statusresponse-codes" numbered="true" toc="default">
        <name>HTTP/CoAP Status/Response Codes</name>
        <t><xref section="15" sectionFormat="of" target="RFC9110" format="default"/> defines a set of Status Codes in HTTP that are assigned by the server to indicate whether a request was understood and satisfied, and how to interpret the answer.
Similarly, <xref section="5.9" sectionFormat="of" target="RFC7252" format="default"/> defines the set of Response Codes in CoAP.</t>
        <t>The codes consist of three digits (e.g., "404" with HTTP or "4.04" with CoAP) where the first digit expresses the class of the code.
Implementations do not need to understand all codes, but the class of the code must be understood.
Codes starting with 1 are informational; the request was received and being processed (not available in CoAP).
Codes starting with 2 indicate a successful request.
Codes starting with 3 indicate redirection; further action is needed to complete the request (not available in CoAP).
Codes stating with 4 and 5 indicate errors.
The codes starting with 4 mean client error (e.g., bad syntax in the request) whereas codes starting with 5 mean server error; there was no apparent problem with the request, but the server was not able to fulfill the request.</t>
        <t>Responses may be stored in a cache to satisfy future, equivalent requests.
HTTP and CoAP use two different patterns to decide what responses are cacheable.
In HTTP, the cacheability of a response depends on the request method (e.g., responses returned in reply to a GET request are cacheable).
In CoAP, the cacheability of a response depends on the response code (e.g., responses with code 2.04 are cacheable).
This difference also leads to slightly different codes starting with 2; for example, CoAP does not have a 2.00 response code whereas 200 ("OK") is commonly used with HTTP.</t>
      </section>
    </section>
    <section anchor="rest-constraints" numbered="true" toc="default">
      <name>REST Constraints</name>
      <t>The REST architectural style defines a set of constraints for the system design.
When all constraints are applied correctly, REST enables architectural properties of key interest <xref target="REST" format="default"/>:</t>
      <ul spacing="normal">
        <li>Performance</li>
        <li>Scalability</li>
        <li>Reliability</li>
        <li>Simplicity</li>
        <li>Modifiability</li>
        <li>Visibility</li>
        <li>Portability</li>
      </ul>
      <t>The following subsections briefly summarize the REST constraints and explain how they enable the listed properties.</t>
      <section anchor="client-server" numbered="true" toc="default">
        <name>Client-Server</name>
        <t>As explained in the Architecture section, RESTful system components have clear roles in every interaction.
Clients have the initiative to issue requests, intermediaries can only forward requests, and servers respond to requests, while origin servers are the ultimate recipient of requests that intend to modify resource state.</t>
        <t>This improves simplicity and visibility (also for digital forensics), as it is clear which component started an interaction.
Furthermore, it improves modifiability through a clear separation of concerns.</t>
        <t>In IoT systems, endpoints often assume both roles of client and (origin) server simultaneously.
When an IoT device has initiative (because there is a user, e.g., pressing a button, or installed rules/policies), it acts as a client.
When a device offers a service, it is in server role.</t>
      </section>
      <section anchor="stateless" numbered="true" toc="default">
        <name>Stateless</name>
        <t>The Stateless constraint requires messages to be self-contained.
They must contain all the information to process it, independent from previous messages.
This allows to strictly separate the client state from the resource state.</t>
        <t>This improves scalability and reliability, since servers or worker threads can be replicated.
It also improves visibility because message traces contain all the information to understand the logged interactions.
Furthermore, the Stateless constraint enables caching.</t>
        <t>For IoT, the scaling properties of REST become particularly important.
Note that being self-contained does not necessarily mean that all information has to be inlined.
Constrained IoT devices may choose to externalize metadata and hypermedia controls using Web linking, so that only the dynamic content needs to be sent and the static content such as schemas or controls can be cached.</t>
      </section>
      <section anchor="cache" numbered="true" toc="default">
        <name>Cache</name>
        <t>This constraint requires responses to have implicit or explicit cache-control metadata.
This enables clients and intermediaries to store responses and re-use them to locally answer future requests.
The cache-control metadata is necessary to decide whether the information in the cached response is still fresh or stale and needs to be discarded.</t>
        <t>A cache improves performance, as less data needs to be transferred and response times can be reduced significantly.
Needing fewer transfers also improves scalability, as origin servers can be protected from too many requests.
Local caches furthermore improve reliability, since requests can be answered even if the origin server is temporarily not available.</t>
        <t>Introducing additional components to perform caching only makes sense when the data is used by multiple participants (otherwise client-side caching would be enough).
In IoT systems, however, it might make sense to cache also individual data to protect constrained devices and networks from frequent requests of data that does not change often.
Security often hinders the ability to cache responses.
For IoT systems, object security <xref target="RFC8613" format="default"/> may be preferable over transport layer security, as it enables intermediaries to cache responses while preserving security.</t>
      </section>
      <section anchor="sec-uniform-interface" numbered="true" toc="default">
        <name>Uniform Interface</name>
        <t>All RESTful APIs use the same, uniform interface independent of the application.
This simple interaction model is enabled by exchanging representations and modifying state locally, which simplifies the interface between clients and servers to a small set of methods to retrieve, update, and delete state.
This small set can apply to many different applications.</t>
        <t>In contrast, in a service-oriented RPC approach, state is modified remotely, directly by the server, and only the instruction what to modify is exchanged.
Also retrieving state for local use is usually solved through specific instructions depending on the individual information.
This requires to model all the necessary instructions beforehand and assign them to named procedures.
This results in a application-specific interface with a large set of methods/procedures.
Moreover, it is also likely that different parties come up with different ways how to modify state, including the naming of the procedures.
Hence, even very similar applications are likely not interoperable.</t>
        <t>A REST interface is fully defined by:</t>
        <ul spacing="normal">
          <li>URIs to identify resources</li>
          <li>representation formats to represent and manipulate resource state</li>
          <li>self-descriptive messages with a standard set of methods (e.g., GET, POST, PUT, DELETE with their guaranteed properties)</li>
          <li>hypermedia controls within representations</li>
        </ul>
        <t>The concept of hypermedia controls is also known as HATEOAS: Hypermedia As The Engine Of Application State <xref target="HATEOAS" format="default"/>.
The origin server embeds controls for the interface into its representations and thereby informs the client about possible next requests.
The most used control for RESTful systems today is Web Linking <xref target="RFC8288" format="default"/>.
Hypermedia forms are more powerful controls that describe how to construct more complex requests, including representations to modify resource state.</t>
        <t>While this is the most complex constraint (in particular the hypermedia controls), it improves many key properties.
It improves simplicity, as uniform interfaces are easier to understand.
The self-descriptive messages improve visibility.
The limitation to a known set of representation formats fosters portability.
Most of all, however, this constraint is the key to modifiability, as hypermedia-driven, uniform interfaces allow clients and servers to evolve independently, and hence enable a system to evolve.</t>
        <t>For a large number of IoT applications, the hypermedia controls are mainly used for the discovery of resources, as they often serve sensor data.
Such resources are "dead ends", as they usually do not link any further and only have one form of interaction: fetching the sensor value.
For IoT, the critical parts of the Uniform Interface constraint are the descriptions of messages and representation formats used.
Simply using, for instance, "application/json" does not help machine clients to understand the semantics of the representation.
Yet defining very precise media types limits the re-usability and interoperability.
Representation formats such as SenML <xref target="RFC8428" format="default"/> try to find a good trade-off between precision and re-usability.
Another approach is to combine a generic format such as JSON with syntactic as well as semantic annotations (see <xref target="I-D.handrews-json-schema-validation" format="default"/> and <xref target="W3C-TD" format="default"/>, resp.).</t>
      </section>
      <section anchor="layered-system" numbered="true" toc="default">
        <name>Layered System</name>
        <t>This constraint enforces that a client cannot see beyond the server with which it is interacting.</t>
        <t>A layered system is easier to modify, as topology changes become transparent (i.e., remain unnoticed by previous layers).
This in turn helps scalability, as reverse proxies such as load balancers can be introduced without changing the client side.
The clean separation of concerns in layers helps with simplicity.</t>
        <t>IoT systems greatly benefit from this constraint, as it allows to effectively shield constrained devices behind intermediaries.
It is also the basis for gateways, which are used to integrate other (IoT) ecosystems.</t>
      </section>
      <section anchor="code-on-demand" numbered="true" toc="default">
        <name>Code-on-Demand</name>
        <t>This principle enables origin servers to ship code to clients.</t>
        <t>Code-on-Demand improves modifiability, since new features can be deployed during runtime (e.g., support for a new representation format).
It also improves performance, as the server can provide code for local pre-processing before transferring the data.</t>
        <t>As of today, code-on-demand has not been explored much in IoT systems.
Aspects to consider are that either one or both nodes are constrained and might not have the resources to host or dynamically fetch and execute such code.
Moreover, the origin server often has no understanding of the actual application a mashup client realizes.
Still, code-on-demand can be useful for small polyfills <xref target="POLYFILLS" format="default"/>, e.g., to decode payloads, and potentially other features in the future.</t>
      </section>
    </section>
    <section anchor="hypermedia-driven-applications" numbered="true" toc="default">
      <name>Hypermedia-driven Applications</name>
      <t>Hypermedia-driven applications take advantage of hypermedia controls, i.e., links and forms, which are embedded in representations or response message headers.
A hypermedia client is a client that is capable of processing these hypermedia controls.
Hypermedia links can be used to give additional information about a resource representation (e.g., the source URI of the representation) or pointing to other resources.
The forms can be used to describe the structure of the data that can be sent (e.g., with a POST or PUT method) to a server, or how a data retrieval (e.g., GET) request for a resource should be formed.
In a hypermedia-driven application the client interacts with the server using only the hypermedia controls, instead of selecting methods and/or constructing URIs based on out-of-band information, such as API documentation.
The Constrained RESTful Application Language (CoRAL) <xref target="I-D.ietf-core-coral" format="default"/> provides a hypermedia-format that is suitable for constrained IoT environments.</t>
      <section anchor="motivation" numbered="true" toc="default">
        <name>Motivation</name>
        <t>The advantage of this approach is increased evolvability and extensibility.
This is important in scenarios where servers exhibit a range of feature variations, where it's expensive to keep evolving client knowledge and server knowledge in sync all the time, or where there are many different client and server implementations.
Hypermedia controls serve as indicators in capability negotiation.
In particular, they describe available resources and possible operations on these resources using links and forms, respectively.</t>
        <t>There are multiple reasons why a server might introduce new links or forms:</t>
        <ul spacing="normal">
          <li>The server implements a newer version of the application.
Older clients ignore the new links and forms, while newer clients are able to take advantage of the new features by following the new links and submitting the new forms.</li>
          <li>The server offers links and forms depending on the current state.
The server can tell the client which operations are currently valid and thus help the client navigate the application state machine.
The client does not have to have knowledge which operations are allowed in the current state or make a request just to find out that the operation is not valid.</li>
          <li>The server offers links and forms depending on the client's access control rights.
If the client is unauthorized to perform a certain operation, then the server can simply omit the links and forms for that operation.</li>
        </ul>
      </section>
      <section anchor="knowledge" numbered="true" toc="default">
        <name>Knowledge</name>
        <t>A client needs to have knowledge of a couple of things for successful interaction with a server.
This includes what resources are available, what representations of resource states are available, what each representation describes, how to retrieve a representation, what state changing operations on a resource are possible, how to perform these operations, and so on.</t>
        <t>Some part of this knowledge, such as how to retrieve the representation of a resource state, is typically hard-coded in the client software.
For other parts, a choice can often be made between hard-coding the knowledge or acquiring it on-demand.
The key to success in either case is the use of in-band information for identifying the knowledge that is required.
This enables the client to verify that it has all the required knowledge or to acquire missing knowledge on-demand.</t>
        <t>A hypermedia-driven application typically uses the following identifiers:</t>
        <ul spacing="normal">
          <li>URI schemes that identify communication protocols,</li>
          <li>Internet Media Types that identify representation formats,</li>
          <li>link relation types or resource types that identify link semantics,</li>
          <li>form relation types that identify form semantics,</li>
          <li>variable names that identify the semantics of variables in templated links, and</li>
          <li>form field names that identify the semantics of form fields in forms.</li>
        </ul>
        <t>The knowledge about these identifiers as well as matching implementations have to be shared a priori in a RESTful system.</t>
      </section>
      <section anchor="interaction" numbered="true" toc="default">
        <name>Interaction</name>
        <t>A client begins interacting with an application through a GET request on an entry point URI.
The entry point URI is the only URI a client is expected to know before interacting with an application.
From there, the client is expected to make all requests by following links and submitting forms that are provided in previous responses.
The entry point URI can be obtained, for example, by manual configuration or some discovery process (e.g., DNS-SD <xref target="RFC6763" format="default"/> or Resource Directory <xref target="RFC9176" format="default"/>).
For Constrained RESTful environments "/.well-known/core", a relative URI is defined as a default entry point for requesting the links hosted by servers with known or discovered addresses <xref target="RFC6690" format="default"/>.</t>
      </section>
      <section anchor="hypermedia-driven-design-guidance" numbered="true" toc="default">
        <name>Hypermedia-driven Design Guidance</name>
        <t>Assuming self-describing representation formats (i.e., human-readable with carefully chosen terms or processable by a formatting tool) and a client supporting the URI scheme used, a good rule of thumb for a good hypermedia-driven design is the following:
A developer should only need an entry point URI to drive the application.
All further information how to navigate through the application (links) and how to construct more complex requests (forms) are published by the server(s).
There must be no need for additional, out-of-band information (e.g., an API specification).</t>
        <t>For machines, a well-chosen set of information needs to be shared a priori to agree on machine-understandable semantics.
Agreeing on the exact semantics of terms for relation types and data elements will of course also help the developer.
<xref target="I-D.hartke-core-apps" format="default"/> proposes a convention for specifying the set of information in a structured way.</t>
      </section>
    </section>
    <section anchor="design-patterns" numbered="true" toc="default">
      <name>Design Patterns</name>
      <t>Certain kinds of design problems are often recurring in a variety of domains, and often re-usable design patterns can be applied to them.
Also, some interactions with a RESTful IoT system are straightforward to design;
a classic example of reading a temperature from a thermometer device is almost always implemented as a GET request to a resource that represents the current value of the thermometer.
However, certain interactions, for example data conversions or event handling, do not have as straightforward and well established ways to represent the logic with resources and REST methods.</t>
      <t>The following sections describe how common design problems such as different interactions can be modeled with REST and what are the benefits of different approaches.</t>
      <section anchor="collections" numbered="true" toc="default">
        <name>Collections</name>
        <t>A common pattern in RESTful systems across different domains is the collection.
A collection can be used to combine multiple resources together by providing resources that consist of set of (often partial) representations of resources, called items, and links to resources.
The collection resource also defines hypermedia controls for managing and searching the items in the collection.</t>
        <t>Examples of the collection pattern in RESTful IoT systems include the CoRE Resource Directory <xref target="RFC9176" format="default"/>, CoAP pub/sub broker <xref target="I-D.ietf-core-coap-pubsub" format="default"/>, and resource discovery via ".well-known/core".
Collection+JSON <xref target="CollectionJSON" format="default"/> is an example of a generic collection Media Type.</t>
      </section>
      <section anchor="calling-a-procedure" numbered="true" toc="default">
        <name>Calling a Procedure</name>
        <t>To modify resource state, clients usually use GET to retrieve a representation from the server, modify that locally, and transfer the resulting state back to the server with a PUT (see <xref target="sec-uniform-interface" format="default"/>).
Sometimes, however, the state can only be modified on the server side, for instance, because representations would be too large to transfer or part of the required information shall not be accessible to clients.
In this case, resource state is modified by calling a procedure (or "function").
This is usually modeled with a POST request, as this method leaves the behavior semantics completely to the server.
Procedure calls can be divided into two different classes based on how long they are expected to execute: "instantly" returning and long-running.</t>
        <section anchor="instantly-returning-procedures" numbered="true" toc="default">
          <name>Instantly Returning Procedures</name>
          <t>When the procedure can return within the expected response time of the system, the result can be directly returned in the response.
The result can either be actual content or just a confirmation that the call was successful.
In either case, the response does not contain a representation of the resource, but a so-called action result.
Action results can still have hypermedia controls to provide the possible transitions in the application state machine.</t>
        </section>
        <section anchor="long-running-procedures" numbered="true" toc="default">
          <name>Long-running Procedures</name>
          <t>When the procedure takes longer than the expected response time of the system, or even longer than the response timeout, it is a good pattern to create a new resource to track the "task" execution.
The server would respond instantly with a "Created" status (HTTP code 201 or CoAP 2.01) and indicate the location of the task resource in the corresponding header field (or CoAP option) or as a link in the action result.
The created resource can be used to monitor the progress, to potentially modify queued tasks or cancel tasks, and to eventually retrieve the result.</t>
          <t>Monitoring information would be modeled as state of the task resource, and hence be retrievable as representation.
CoAP Observe can help to be notified efficiently about completion or other changes to this information.
The result -- when available -- can be embedded in the representation or given as a link to another sub-resource.
Modifying tasks can be modeled with forms that either update sub-resources via PUT or do a partial write using PATCH or POST.
Canceling a task would be modeled with a form that uses DELETE to remove the task resource.</t>
        </section>
        <section anchor="conversion" numbered="true" toc="default">
          <name>Conversion</name>
          <t>A conversion service is a good example where REST resources need to behave more like a procedure call.
The knowledge of converting from one representation to another is located only at the server to relieve clients from high processing or storing lots of data.
There are different approaches that all depend on the particular conversion problem.</t>
          <t>As mentioned in the previous sections, POST requests are a good way to model functionality that does not necessarily affect resource state.
When the input data for the conversion is small and the conversion result is deterministic, however, it can be better to use a GET request with the input data in the URI query part.
The query is parameterizing the conversion resource, so that it acts like a look-up table.
The benefit is that results can be cached also for HTTP (where responses to POST are not cacheable).
In CoAP, cacheability depends on the response code, so that also a response to a POST request can be made cacheable through a 2.05 Content code.</t>
          <t>When the input data is large or has a binary encoding, it is better to use POST requests with a proper Media Type for the input representation.
A POST request is also more suitable, when the result is time-dependent and the latest result is expected (e.g., exchange rates).</t>
        </section>
        <section anchor="events-as-state" numbered="true" toc="default">
          <name>Events as State</name>
          <t>In event-centric paradigms such as Publish-Subscribe (pub/sub), events are usually represented by an incoming message that might even be identical for each occurrence.
Since the messages are queued, the receiver is aware of each occurrence of the event and can react accordingly.
For instance, in an event-centric system, ringing a doorbell would result in a message being sent that represents the event that it was rung.</t>
          <t>In resource-oriented paradigms such as REST, messages usually carry the current state of the remote resource, independent from the changes (i.e., events) that have lead to that state.
In a naive yet natural design, a doorbell could be modeled as a resource that can have the states unpressed and pressed.
There are, however, a few issues with this approach.
Polling (i.e., periodically retrieving) the doorbell resource state is not a good option, as the client is highly unlikely to be able to observe all the changes in the pressed state with any realistic polling interval.
When using CoAP Observe with Confirmable notifications, the server will usually send two notifications for the event that the doorbell was pressed:
notification for changing from unpressed to pressed and another one for changing back to unpressed.
If the time between the state changes is very short, the server might drop the first notification, as Observe guarantees eventual consistency only (see <xref section="1.3" sectionFormat="of" target="RFC7641" format="default"/>).</t>
          <t>The solution is to pick a state model that fits better to the application.
In the case of the doorbell -- and many other event-driven resources -- the solution could be a counter that counts how often the bell was pressed.
The corresponding action is taken each time the client observes a change in the received representation.
In the case of a network outage, this could lead to a ringing sound long after the bell was rung.
Also including a timestamp of the last counter increment in the state can help to suppress ringing a sound when the event has become obsolete. Another solution would be to change the client/server roles of the doorbell button and the ringer, as described in <xref target="sec-server-push" format="default"/>.</t>
        </section>
      </section>
      <section anchor="sec-server-push" numbered="true" toc="default">
        <name>Server Push</name>
        <t>Overall, a universal mechanism for server push, that is, change-of-state notifications and stand-alone event notifications, is still an open issue that is being discussed in the Thing-to-Thing Research Group.
It is connected to the state-event duality problem and custody transfer, that is, the transfer of the responsibility that a message (e.g., event) is delivered successfully.</t>
        <t>A proficient mechanism for change-of-state notifications is currently only available for CoAP: Observing resources <xref target="RFC7641" format="default"/>.
The CoAP Observe mechanism offers eventual consistency, which guarantees "that if the resource does not undergo a new change in state, eventually all registered observers will have a current representation of the latest resource state".
It intrinsically deals with the challenges of lossy networks, where notifications might be lost, and constrained networks, where there might not be enough bandwidth to propagate all changes.</t>
        <t>For stand-alone event notifications, that is, where every single notification contains an identifiable event that must not be lost, observing resources is not a good fit.
A better strategy is to model each event as a new resource, whose existence is notified through change-of-state notifications of an index resource <xref target="I-D.bormann-t2trg-stp" format="default"/>.
Large numbers of events will cause the notification to grow large, as it needs to contain a large number of Web links.
Block-wise transfers <xref target="RFC7959" format="default"/> or pagination can help here.
When the links are ordered by freshness of the events, the first block or page can already contain all links to new events.
Then, observers do not need to retrieve the remaining blocks or pages from the server, but only the representations of the new event resources.</t>
        <t>An alternative pattern is to exploit the dual roles of IoT devices, in particular when using CoAP: they are usually client and server at the same time.
An endpoint interested in observing the events would subscribe to them by registering a callback URI at the origin server, e.g., using a POST request with the URI or a hypermedia document in the payload, and receiving the location of a temporary "subscription resource" as handle in the response.
The origin server would then publish events by sending requests containing the event data to the observer's callback URI; here POST can be used to add events to a collection located at the callback URI or PUT can be used when the event data is a new state that shall replace the outdated state at the callback URI.
The cancellation can be modeled through deleting the subscription resource.
This pattern makes the origin server responsible for delivering the event notifications.
This goes beyond retransmissions of messages;
the origin server is usually supposed to queue all undelivered events and to retry until successful delivery or explicit cancellation.
In HTTP, this pattern is known as REST Hooks.</t>
        <t>Methods for configuring server push and notification conditions with CoAP are provided by the CoRE Dynamic Resource Linking specification <xref target="I-D.ietf-core-dynlink" format="default"/>.</t>
        <t>In HTTP, there exist a number of workarounds to enable server push, e.g., long polling and streaming <xref target="RFC6202" format="default"/> or server-sent events <xref target="W3C.REC-html5-20141028" format="default"/>.
In IoT systems, long polling can introduce a considerable overhead, as the request has to be repeated for each notification.
Streaming and server-sent events (the latter is actually an evolution of the former) are more efficient, as only one request is sent.
However, there is only one response header and subsequent notifications can only have content.
Individual status and metadata needs to be included in the content message.
This reduces HTTP again to a pure transport, as its status signaling and metadata capabilities cannot be used.</t>
      </section>
    </section>
    <section anchor="sec-sec" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>This document does not define new functionality and therefore does not introduce new security concerns.
We assume that system designers apply classic Web security on top of the basic RESTful guidance given in this document.
Thus, security protocols and considerations from related specifications apply to RESTful IoT design.
These include:</t>
      <ul spacing="normal">
        <li>Transport Layer Security (TLS): <xref target="RFC8446" format="default"/>, <xref target="RFC5246" format="default"/>, and <xref target="RFC6347" format="default"/></li>
        <li>Internet X.509 Public Key Infrastructure: <xref target="RFC5280" format="default"/></li>
        <li>HTTP security: <xref section="11" sectionFormat="of" target="RFC9112" format="default"/>, <xref section="17" sectionFormat="of" target="RFC9110" format="default"/>, etc.</li>
        <li>CoAP security: <xref section="11" sectionFormat="of" target="RFC7252" format="default"/></li>
        <li>URI security: <xref section="7" sectionFormat="of" target="RFC3986" format="default"/></li>
      </ul>
      <t>IoT-specific security is an active area of standardization at the time of writing.
First finalized specifications include:</t>
      <ul spacing="normal">
        <li>(D)TLS Profiles for the Internet of Things: <xref target="RFC7925" format="default"/></li>
        <li>CBOR Object Signing and Encryption (COSE) <xref target="RFC8152" format="default"/></li>
        <li>CBOR Web Token <xref target="RFC8392" format="default"/></li>
        <li>Proof-of-Possession Key Semantics for CBOR Web Tokens (CWTs) <xref target="RFC8747" format="default"/></li>
        <li>Object Security for Constrained RESTful Environments (OSCORE) <xref target="RFC8613" format="default"/></li>
        <li>Authentication and Authorization for Constrained Environments (ACE) using the OAuth 2.0 Framework <xref target="RFC9200" format="default"/></li>
        <li>ACE profiles for DTLS <xref target="RFC9202" format="default"/> and OSCORE <xref target="RFC9203" format="default"/></li>
      </ul>
      <t>Further IoT security considerations are available in <xref target="RFC8576" format="default"/>.</t>
    </section>
    <section anchor="acknowledgement" numbered="true" toc="default">
      <name>Acknowledgement</name>
      <t>The authors would like to thank Mike Amundsen, Heidi-Maria Back, Carsten Bormann, Tero Kauppinen, Michael Koster, Mert Ocak, Robby Simpson, Ravi Subramaniam, Dave Thaler, Niklas Widell, and Erik Wilde for the reviews and feedback.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.  This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet.  The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier.  This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes. </t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC9112">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document specifies the HTTP/1.1 message syntax, message parsing, connection management, and related security concerns. </t>
              <t>This document obsoletes portions of RFC 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="99"/>
          <seriesInfo name="RFC" value="9112"/>
          <seriesInfo name="DOI" value="10.17487/RFC9112"/>
        </reference>
        <reference anchor="REST">
          <front>
            <title>Architectural Styles and the Design of Network-based Software Architectures</title>
            <author initials="R." surname="Fielding">
              <organization/>
            </author>
            <date year="2000"/>
          </front>
          <seriesInfo name="Ph.D. Dissertation, University of California, Irvine" value=""/>
        </reference>
        <reference anchor="RFC6347">
          <front>
            <title>Datagram Transport Layer Security Version 1.2</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu">
              <organization/>
            </author>
            <date month="January" year="2012"/>
            <abstract>
              <t>This document specifies version 1.2 of the Datagram Transport Layer Security (DTLS) protocol.  The DTLS protocol provides communications privacy for datagram protocols.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  The DTLS protocol is based on the Transport Layer Security (TLS) protocol and provides equivalent security guarantees.  Datagram semantics of the underlying transport are preserved by the DTLS protocol.  This document updates DTLS 1.0 to work with TLS version 1.2.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6347"/>
          <seriesInfo name="DOI" value="10.17487/RFC6347"/>
        </reference>
        <reference anchor="RFC9176">
          <front>
            <title>Constrained RESTful Environments (CoRE) Resource Directory</title>
            <author fullname="C. Amsüss" initials="C." role="editor" surname="Amsüss">
              <organization/>
            </author>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <author fullname="M. Koster" initials="M." surname="Koster">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="P. van der Stok" initials="P." surname="van der Stok">
              <organization/>
            </author>
            <date month="April" year="2022"/>
            <abstract>
              <t>In many Internet of Things (IoT) applications, direct discovery of resources is not practical due to sleeping nodes or networks where multicast traffic is inefficient. These problems can be solved by employing an entity called a Resource Directory (RD), which contains information about resources held on other servers, allowing lookups to be performed for those resources. The input to an RD is composed of links, and the output is composed of links constructed from the information stored in the RD. This document specifies the web interfaces that an RD supports for web servers to discover the RD and to register, maintain, look up, and remove information on resources. Furthermore, new target attributes useful in conjunction with an RD are defined.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9176"/>
          <seriesInfo name="DOI" value="10.17487/RFC9176"/>
        </reference>
        <reference anchor="RFC9039">
          <front>
            <title>Uniform Resource Names for Device Identifiers</title>
            <author fullname="J. Arkko" initials="J." surname="Arkko">
              <organization/>
            </author>
            <author fullname="C. Jennings" initials="C." surname="Jennings">
              <organization/>
            </author>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <date month="June" year="2021"/>
            <abstract>
              <t>This document describes a new Uniform Resource Name (URN) namespace for hardware device identifiers. A general representation of device identity can be useful in many applications, such as in sensor data streams and storage or in equipment inventories. A URN-based representation can be passed along in applications that need the information.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9039"/>
          <seriesInfo name="DOI" value="10.17487/RFC9039"/>
        </reference>
        <reference anchor="RFC8949">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <date month="December" year="2020"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
              <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049.  It does not create a new version of the format.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="94"/>
          <seriesInfo name="RFC" value="8949"/>
          <seriesInfo name="DOI" value="10.17487/RFC8949"/>
        </reference>
        <reference anchor="W3C.REC-exi-20110310" target="https://www.w3.org/TR/2011/REC-exi-20110310/">
          <front>
            <title>Efficient XML Interchange (EXI) Format 1.0</title>
            <author fullname="John Schneider" role="editor"/>
            <author fullname="Takuki Kamiya" role="editor"/>
            <date day="10" month="March" year="2011"/>
          </front>
          <seriesInfo name="W3C REC" value="REC-exi-20110310"/>
          <seriesInfo name="W3C" value="REC-exi-20110310"/>
        </reference>
        <reference anchor="RFC5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2008"/>
            <abstract>
              <t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol.  The TLS protocol provides communications security over the Internet.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5246"/>
          <seriesInfo name="DOI" value="10.17487/RFC5246"/>
        </reference>
        <reference anchor="RFC5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper">
              <organization/>
            </author>
            <author fullname="S. Santesson" initials="S." surname="Santesson">
              <organization/>
            </author>
            <author fullname="S. Farrell" initials="S." surname="Farrell">
              <organization/>
            </author>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen">
              <organization/>
            </author>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <author fullname="W. Polk" initials="W." surname="Polk">
              <organization/>
            </author>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC8288">
          <front>
            <title>Web Linking</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <date month="October" year="2017"/>
            <abstract>
              <t>This specification defines a model for the relationships between resources on the Web ("links") and the type of those relationships ("link relation types").</t>
              <t>It also defines the serialisation of such links in HTTP headers with the Link header field.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8288"/>
          <seriesInfo name="DOI" value="10.17487/RFC8288"/>
        </reference>
        <reference anchor="RFC6690">
          <front>
            <title>Constrained RESTful Environments (CoRE) Link Format</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <date month="August" year="2012"/>
            <abstract>
              <t>This specification defines Web Linking using a link format for use by constrained web servers to describe hosted resources, their attributes, and other relationships between links.  Based on the HTTP Link Header field defined in RFC 5988, the Constrained RESTful Environments (CoRE) Link Format is carried as a payload and is assigned an Internet media type.  "RESTful" refers to the Representational State Transfer (REST) architecture.  A well-known URI is defined as a default entry point for requesting the links hosted by a server.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6690"/>
          <seriesInfo name="DOI" value="10.17487/RFC6690"/>
        </reference>
        <reference anchor="RFC7252">
          <front>
            <title>The Constrained Application Protocol (CoAP)</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <author fullname="K. Hartke" initials="K." surname="Hartke">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks.  The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s.  The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t>
              <t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types.  CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7252"/>
          <seriesInfo name="DOI" value="10.17487/RFC7252"/>
        </reference>
        <reference anchor="RFC7641">
          <front>
            <title>Observing Resources in the Constrained Application Protocol (CoAP)</title>
            <author fullname="K. Hartke" initials="K." surname="Hartke">
              <organization/>
            </author>
            <date month="September" year="2015"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a RESTful application protocol for constrained nodes and networks.  The state of a resource on a CoAP server can change over time.  This document specifies a simple protocol extension for CoAP that enables CoAP clients to "observe" resources, i.e., to retrieve a representation of a resource and keep this representation updated by the server over a period of time.  The protocol follows a best-effort approach for sending new representations to clients and provides eventual consistency between the state observed by each client and the actual resource state at the server.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7641"/>
          <seriesInfo name="DOI" value="10.17487/RFC7641"/>
        </reference>
        <reference anchor="RFC7959">
          <front>
            <title>Block-Wise Transfers in the Constrained Application Protocol (CoAP)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="Z. Shelby" initials="Z." role="editor" surname="Shelby">
              <organization/>
            </author>
            <date month="August" year="2016"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a RESTful transfer protocol for constrained nodes and networks.  Basic CoAP messages work well for small payloads from sensors and actuators; however, applications will need to transfer larger payloads occasionally -- for instance, for firmware updates.  In contrast to HTTP, where TCP does the grunt work of segmenting and resequencing, CoAP is based on datagram transports such as UDP or Datagram Transport Layer Security (DTLS).  These transports only offer fragmentation, which is even more problematic in constrained nodes and networks, limiting the maximum size of resource representations that can practically be transferred.</t>
              <t>Instead of relying on IP fragmentation, this specification extends basic CoAP with a pair of "Block" options for transferring multiple blocks of information from a resource representation in multiple request-response pairs.  In many important cases, the Block options enable a server to be truly stateless: the server can handle each block transfer separately, with no need for a connection setup or other server-side memory of previous block transfers.  Essentially, the Block options provide a minimal way to transfer larger representations in a block-wise fashion.</t>
              <t>A CoAP implementation that does not support these options generally is limited in the size of the representations that can be exchanged, so there is an expectation that the Block options will be widely used in CoAP implementations.  Therefore, this specification updates RFC 7252.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7959"/>
          <seriesInfo name="DOI" value="10.17487/RFC7959"/>
        </reference>
        <reference anchor="RFC6202">
          <front>
            <title>Known Issues and Best Practices for the Use of Long Polling and Streaming in Bidirectional HTTP</title>
            <author fullname="S. Loreto" initials="S." surname="Loreto">
              <organization/>
            </author>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <author fullname="S. Salsano" initials="S." surname="Salsano">
              <organization/>
            </author>
            <author fullname="G. Wilkins" initials="G." surname="Wilkins">
              <organization/>
            </author>
            <date month="April" year="2011"/>
            <abstract>
              <t>On today's Internet, the Hypertext Transfer Protocol (HTTP) is often used (some would say abused) to enable asynchronous, "server- initiated" communication from a server to a client as well as communication from a client to a server.  This document describes known issues and best practices related to such "bidirectional HTTP" applications, focusing on the two most common mechanisms: HTTP long polling and HTTP streaming.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6202"/>
          <seriesInfo name="DOI" value="10.17487/RFC6202"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC8613">
          <front>
            <title>Object Security for Constrained RESTful Environments (OSCORE)</title>
            <author fullname="G. Selander" initials="G." surname="Selander">
              <organization/>
            </author>
            <author fullname="J. Mattsson" initials="J." surname="Mattsson">
              <organization/>
            </author>
            <author fullname="F. Palombini" initials="F." surname="Palombini">
              <organization/>
            </author>
            <author fullname="L. Seitz" initials="L." surname="Seitz">
              <organization/>
            </author>
            <date month="July" year="2019"/>
            <abstract>
              <t>This document defines Object Security for Constrained RESTful Environments (OSCORE), a method for application-layer protection of the Constrained Application Protocol (CoAP), using CBOR Object Signing and Encryption (COSE).  OSCORE provides end-to-end protection between endpoints communicating using CoAP or CoAP-mappable HTTP. OSCORE is designed for constrained nodes and networks supporting a range of proxy operations, including translation between different transport protocols.</t>
              <t>Although an optional functionality of CoAP, OSCORE alters CoAP options processing and IANA registration.  Therefore, this document updates RFC 7252.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8613"/>
          <seriesInfo name="DOI" value="10.17487/RFC8613"/>
        </reference>
        <reference anchor="W3C.REC-html5-20141028" target="https://www.w3.org/TR/2014/REC-html5-20141028/">
          <front>
            <title>HTML5</title>
            <author fullname="Erika Doyle Navara" role="editor"/>
            <author fullname="Ian Hickson" role="editor"/>
            <author fullname="Robin Berjon" role="editor"/>
            <author fullname="Silvia Pfeiffer" role="editor"/>
            <author fullname="Steve Faulkner" role="editor"/>
            <author fullname="Theresa O'Connor" role="editor"/>
            <author fullname="Travis Leithead" role="editor"/>
            <date day="28" month="October" year="2014"/>
          </front>
          <seriesInfo name="W3C REC" value="REC-html5-20141028"/>
          <seriesInfo name="W3C" value="REC-html5-20141028"/>
        </reference>
        <reference anchor="RFC9147">
          <front>
            <title>The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu">
              <organization/>
            </author>
            <date month="April" year="2022"/>
            <abstract>
              <t>This document specifies version 1.3 of the Datagram Transport Layer Security (DTLS) protocol. DTLS 1.3 allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>The DTLS 1.3 protocol is based on the Transport Layer Security (TLS) 1.3 protocol and provides equivalent security guarantees with the exception of order protection / non-replayability.  Datagram semantics of the underlying transport are preserved by the DTLS protocol.</t>
              <t>This document obsoletes RFC 6347.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9147"/>
          <seriesInfo name="DOI" value="10.17487/RFC9147"/>
        </reference>
        <reference anchor="I-D.ietf-core-href">
          <front>
            <title>Constrained Resource Identifiers</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
              <organization>Fraunhofer SIT</organization>
            </author>
            <date day="7" month="September" year="2022"/>
            <abstract>
              <t>   The Constrained Resource Identifier (CRI) is a complement to the
   Uniform Resource Identifier (URI) that serializes the URI components
   in Concise Binary Object Representation (CBOR) instead of a sequence
   of characters.  This simplifies parsing, comparison and reference
   resolution in environments with severe limitations on processing
   power, code size, and memory size.

   The present revision -10 of this draft contains an experimental
   addition that allows representing user information
   (https://alice@chains.example) in the URI authority component.  This
   feature lacks test vectors and implementation experience at the time
   of writing and requires discussion.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-href-11"/>
        </reference>
        <reference anchor="I-D.ietf-core-coral">
          <front>
            <title>The Constrained RESTful Application Language (CoRAL)</title>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <author fullname="Thomas Fossati" initials="T." surname="Fossati">
              <organization>ARM</organization>
            </author>
            <date day="7" month="March" year="2022"/>
            <abstract>
              <t>   The Constrained RESTful Application Language (CoRAL) defines a data
   model and interaction model as well as a compact serialization
   formats for the description of typed connections between resources on
   the Web ("links"), possible operations on such resources ("forms"),
   and simple resource metadata.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-coral-05"/>
        </reference>
        <reference anchor="I-D.ietf-core-dynlink">
          <front>
            <title>Dynamic Resource Linking for Constrained RESTful Environments</title>
            <author fullname="Michael Koster" initials="M." surname="Koster">
              <organization>SmartThings</organization>
            </author>
            <author fullname="Bill Silverajan" initials="B." surname="Silverajan">
              <organization>Tampere University</organization>
            </author>
            <date day="12" month="July" year="2021"/>
            <abstract>
              <t>   This specification defines Link Bindings, which provide dynamic
   linking of state updates between resources, either on an endpoint or
   between endpoints, for systems using CoAP (RFC7252).

Editor note

   The git repository for the draft is found at https://github.com/core-
   wg/dynlink

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-dynlink-14"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="HATEOAS" target="https://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven">
          <front>
            <title>REST APIs must be hypertext-driven</title>
            <author initials="R." surname="Fielding">
              <organization/>
            </author>
            <date year="2008" month="October"/>
          </front>
        </reference>
        <reference anchor="RFC5789">
          <front>
            <title>PATCH Method for HTTP</title>
            <author fullname="L. Dusseault" initials="L." surname="Dusseault">
              <organization/>
            </author>
            <author fullname="J. Snell" initials="J." surname="Snell">
              <organization/>
            </author>
            <date month="March" year="2010"/>
            <abstract>
              <t>Several applications extending the Hypertext Transfer Protocol (HTTP) require a feature to do partial resource modification.  The existing HTTP PUT method only allows a complete replacement of a document. This proposal adds a new HTTP method, PATCH, to modify an existing HTTP resource.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5789"/>
          <seriesInfo name="DOI" value="10.17487/RFC5789"/>
        </reference>
        <reference anchor="RFC8132">
          <front>
            <title>PATCH and FETCH Methods for the Constrained Application Protocol (CoAP)</title>
            <author fullname="P. van der Stok" initials="P." surname="van der Stok">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="A. Sehgal" initials="A." surname="Sehgal">
              <organization/>
            </author>
            <date month="April" year="2017"/>
            <abstract>
              <t>The methods defined in RFC 7252 for the Constrained Application Protocol (CoAP) only allow access to a complete resource, not to parts of a resource.  In case of resources with larger or complex data, or in situations where resource continuity is required, replacing or requesting the whole resource is undesirable.  Several applications using CoAP need to access parts of the resources.</t>
              <t>This specification defines the new CoAP methods, FETCH, PATCH, and iPATCH, which are used to access and update parts of a resource.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8132"/>
          <seriesInfo name="DOI" value="10.17487/RFC8132"/>
        </reference>
        <reference anchor="RFC6763">
          <front>
            <title>DNS-Based Service Discovery</title>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <author fullname="M. Krochmal" initials="M." surname="Krochmal">
              <organization/>
            </author>
            <date month="February" year="2013"/>
            <abstract>
              <t>This document specifies how DNS resource records are named and structured to facilitate service discovery.  Given a type of service that a client is looking for, and a domain in which the client is looking for that service, this mechanism allows clients to discover a list of named instances of that desired service, using standard DNS queries. This mechanism is referred to as DNS-based Service Discovery, or DNS-SD.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6763"/>
          <seriesInfo name="DOI" value="10.17487/RFC6763"/>
        </reference>
        <reference anchor="RFC7228">
          <front>
            <title>Terminology for Constrained-Node Networks</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="M. Ersue" initials="M." surname="Ersue">
              <organization/>
            </author>
            <author fullname="A. Keranen" initials="A." surname="Keranen">
              <organization/>
            </author>
            <date month="May" year="2014"/>
            <abstract>
              <t>The Internet Protocol Suite is increasingly used on small devices with severe constraints on power, memory, and processing resources, creating constrained-node networks.  This document provides a number of basic terms that have been useful in the standardization work for constrained-node networks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7228"/>
          <seriesInfo name="DOI" value="10.17487/RFC7228"/>
        </reference>
        <reference anchor="RFC7925">
          <front>
            <title>Transport Layer Security (TLS) / Datagram Transport Layer Security (DTLS) Profiles for the Internet of Things</title>
            <author fullname="H. Tschofenig" initials="H." role="editor" surname="Tschofenig">
              <organization/>
            </author>
            <author fullname="T. Fossati" initials="T." surname="Fossati">
              <organization/>
            </author>
            <date month="July" year="2016"/>
            <abstract>
              <t>A common design pattern in Internet of Things (IoT) deployments is the use of a constrained device that collects data via sensors or controls actuators for use in home automation, industrial control systems, smart cities, and other IoT deployments.</t>
              <t>This document defines a Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) 1.2 profile that offers communications security for this data exchange thereby preventing eavesdropping, tampering, and message forgery.  The lack of communication security is a common vulnerability in IoT products that can easily be solved by using these well-researched and widely deployed Internet security protocols.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7925"/>
          <seriesInfo name="DOI" value="10.17487/RFC7925"/>
        </reference>
        <reference anchor="RFC8428">
          <front>
            <title>Sensor Measurement Lists (SenML)</title>
            <author fullname="C. Jennings" initials="C." surname="Jennings">
              <organization/>
            </author>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <author fullname="J. Arkko" initials="J." surname="Arkko">
              <organization/>
            </author>
            <author fullname="A. Keranen" initials="A." surname="Keranen">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This specification defines a format for representing simple sensor measurements and device parameters in Sensor Measurement Lists (SenML).  Representations are defined in JavaScript Object Notation (JSON), Concise Binary Object Representation (CBOR), Extensible Markup Language (XML), and Efficient XML Interchange (EXI), which share the common SenML data model.  A simple sensor, such as a temperature sensor, could use one of these media types in protocols such as HTTP or the Constrained Application Protocol (CoAP) to transport the measurements of the sensor or to be configured.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8428"/>
          <seriesInfo name="DOI" value="10.17487/RFC8428"/>
        </reference>
        <reference anchor="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray">
              <organization/>
            </author>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format.  It was derived from the ECMAScript Programming Language Standard.  JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="I-D.bormann-t2trg-stp">
          <front>
            <title>The Series Transfer Pattern (STP)</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <author fullname="Klaus Hartke" initials="K." surname="Hartke">
              <organization>Ericsson</organization>
            </author>
            <date day="7" month="April" year="2020"/>
            <abstract>
              <t>   Many applications make use of Series of data items, i.e., an array of
   data items where new items can be added over time.  Where such Series
   are to be made available using REST protocols such as CoAP or HTTP,
   the Series has to be mapped into a structure of one or more resources
   and a protocol for a client to obtain the Series and to learn about
   new items.

   Various protocols have been standardized that make Series-shaped data
   available, with rather different properties and objectives.  The
   present document is an attempt to extract a common underlying pattern
   and to define media types and an access scheme that can be used right
   away for further protocols that provide Series-shaped data.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bormann-t2trg-stp-03"/>
        </reference>
        <reference anchor="I-D.handrews-json-schema-validation">
          <front>
            <title>JSON Schema Validation: A Vocabulary for Structural Validation of JSON</title>
            <author fullname="Austin Wright" initials="A." surname="Wright">
         </author>
            <author fullname="Henry Andrews" initials="H." surname="Andrews">
         </author>
            <author fullname="Ben Hutton" initials="B." surname="Hutton">
              <organization>Wellcome Sanger Institute</organization>
            </author>
            <date day="17" month="September" year="2019"/>
            <abstract>
              <t>   JSON Schema (application/schema+json) has several purposes, one of
   which is JSON instance validation.  This document specifies a
   vocabulary for JSON Schema to describe the meaning of JSON documents,
   provide hints for user interfaces working with JSON data, and to make
   assertions about what a valid document must look like.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-handrews-json-schema-validation-02"/>
        </reference>
        <reference anchor="I-D.hartke-core-apps">
          <front>
            <title>CoRE Applications</title>
            <author fullname="Klaus Hartke" initials="K." surname="Hartke">
              <organization>Ericsson</organization>
            </author>
            <date day="22" month="October" year="2018"/>
            <abstract>
              <t>   The application programmable interfaces of RESTful, hypermedia-driven
   Web applications consist of a number of reusable components such as
   Internet media types and link relation types.  This document proposes
   "CoRE Applications", a convention for application designers to build
   the interfaces of their applications in a structured way, so that
   implementers can easily build interoperable clients and servers, and
   other designers can reuse the components in their own applications.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-hartke-core-apps-08"/>
        </reference>
        <reference anchor="W3C-TD" target="https://www.w3.org/TR/wot-thing-description/">
          <front>
            <title>Web of Things (WoT) Thing Description</title>
            <author initials="S." surname="Kaebisch">
              <organization/>
            </author>
            <author initials="T." surname="Kamiya">
              <organization/>
            </author>
            <author initials="M." surname="McCool">
              <organization/>
            </author>
            <author initials="V." surname="Charpenay">
              <organization/>
            </author>
            <author initials="M." surname="Kovatsch">
              <organization/>
            </author>
            <date year="2020" month="April"/>
          </front>
        </reference>
        <reference anchor="IANA-media-types" target="http://www.iana.org/assignments/media-types/media-types.xhtml">
          <front>
            <title>Media Types</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IANA-CoAP-media" target="http://www.iana.org/assignments/core-parameters/core-parameters.xhtml#content-formats">
          <front>
            <title>CoAP Content-Formats</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="CollectionJSON" target="http://amundsen.com/media-types/collection/format/">
          <front>
            <title>Collection+JSON - Document Format</title>
            <author initials="M." surname="Amundsen">
              <organization/>
            </author>
            <date year="2013" month="February"/>
          </front>
        </reference>
        <reference anchor="BTCorev5.3" target="https://www.bluetooth.com/specifications/specs/core-specification-5-3/">
          <front>
            <title>Core Specification 5.3</title>
            <author>
              <organization>Bluetooth Special Interest Group</organization>
            </author>
            <date year="2021" month="July"/>
          </front>
        </reference>
        <reference anchor="POLYFILLS" target="https://www.w3.org/2001/tag/doc/polyfills/">
          <front>
            <title>Polyfills and the evolution of the Web</title>
            <author>
              <organization>W3C Technical Architecture Group (TAG)</organization>
            </author>
            <date year="2017" month="February"/>
          </front>
        </reference>
        <reference anchor="HCI" target="https://www.interaction-design.org/literature/book/the-encyclopedia-of-human-computer-interaction-2nd-ed">
          <front>
            <title>The Encyclopedia of Human-Computer Interaction</title>
            <author>
              <organization>Interaction Design Foundation</organization>
            </author>
            <date year="2013"/>
          </front>
          <refcontent>2nd Ed.</refcontent>
        </reference>
        <reference anchor="I-D.ietf-asdf-sdf">
          <front>
            <title>Semantic Definition Format (SDF) for Data and Interactions of Things</title>
            <author fullname="Michael Koster" initials="M." surname="Koster">
              <organization>PassiveLogic</organization>
            </author>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <date day="30" month="June" year="2022"/>
            <abstract>
              <t>   The Semantic Definition Format (SDF) is a format for domain experts
   to use in the creation and maintenance of data and interaction models
   in the Internet of Things.  An SDF specification describes
   definitions of SDF Objects and their associated interactions (Events,
   Actions, Properties), as well as the Data types for the information
   exchanged in those interactions.  Tools convert this format to
   database formats and other serializations as needed.


   // A JSON format representation of SDF 1.0 was defined in version
   // (-00) of this document; version (-05) was designated as an
   // _implementation draft_, labeled SDF 1.1, at the IETF110 meeting of
   // the ASDF WG (2021-03-11).  The present version (-12) collects
   // smaller changes up to 2022-06-30.  It also removes deprecated
   // elements from SDF 1.0.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-asdf-sdf-12"/>
        </reference>
        <reference anchor="RFC8075">
          <front>
            <title>Guidelines for Mapping Implementations: HTTP to the Constrained Application Protocol (CoAP)</title>
            <author fullname="A. Castellani" initials="A." surname="Castellani">
              <organization/>
            </author>
            <author fullname="S. Loreto" initials="S." surname="Loreto">
              <organization/>
            </author>
            <author fullname="A. Rahman" initials="A." surname="Rahman">
              <organization/>
            </author>
            <author fullname="T. Fossati" initials="T." surname="Fossati">
              <organization/>
            </author>
            <author fullname="E. Dijk" initials="E." surname="Dijk">
              <organization/>
            </author>
            <date month="February" year="2017"/>
            <abstract>
              <t>This document provides reference information for implementing a cross-protocol network proxy that performs translation from the HTTP protocol to the Constrained Application Protocol (CoAP).  This will enable an HTTP client to access resources on a CoAP server through the proxy.  This document describes how an HTTP request is mapped to a CoAP request and how a CoAP response is mapped back to an HTTP response.  This includes guidelines for status code, URI, and media type mappings, as well as additional interworking advice.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8075"/>
          <seriesInfo name="DOI" value="10.17487/RFC8075"/>
        </reference>
        <reference anchor="RFC8820">
          <front>
            <title>URI Design and Ownership</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <date month="June" year="2020"/>
            <abstract>
              <t>Section 1.1.1 of RFC 3986 defines URI syntax as "a federated and extensible naming system wherein each scheme's specification may further restrict the syntax and semantics of identifiers using that scheme."  In other words, the structure of a URI is defined by its scheme. While it is common for schemes to further delegate their substructure to the URI's owner, publishing independent standards that mandate particular forms of substructure in URIs is often problematic.</t>
              <t>This document provides guidance on the specification of URI substructure in standards.</t>
              <t>This document obsoletes RFC 7320 and updates RFC 3986.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="190"/>
          <seriesInfo name="RFC" value="8820"/>
          <seriesInfo name="DOI" value="10.17487/RFC8820"/>
        </reference>
        <reference anchor="RFC6943">
          <front>
            <title>Issues in Identifier Comparison for Security Purposes</title>
            <author fullname="D. Thaler" initials="D." role="editor" surname="Thaler">
              <organization/>
            </author>
            <date month="May" year="2013"/>
            <abstract>
              <t>Identifiers such as hostnames, URIs, IP addresses, and email addresses are often used in security contexts to identify security principals and resources.  In such contexts, an identifier presented via some protocol is often compared using some policy to make security decisions such as whether the security principal may access the resource, what level of authentication or encryption is required, etc.  If the parties involved in a security decision use different algorithms to compare identifiers, then failure scenarios ranging from denial of service to elevation of privilege can result.  This document provides a discussion of these issues that designers should consider when defining identifiers and protocols, and when constructing architectures that use multiple protocols.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6943"/>
          <seriesInfo name="DOI" value="10.17487/RFC6943"/>
        </reference>
        <reference anchor="RFC9193">
          <front>
            <title>Sensor Measurement Lists (SenML) Fields for Indicating Data Value Content-Format</title>
            <author fullname="A. Keränen" initials="A." surname="Keränen">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Sensor Measurement Lists (SenML) media types support multiple types of values, from numbers to text strings and arbitrary binary Data Values. In order to facilitate processing of binary Data Values, this document specifies a pair of new SenML fields for indicating the content format of those binary Data Values, i.e., their Internet media type, including parameters as well as any content codings applied.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9193"/>
          <seriesInfo name="DOI" value="10.17487/RFC9193"/>
        </reference>
        <reference anchor="I-D.ietf-core-coap-pubsub">
          <front>
            <title>Publish-Subscribe Broker for the Constrained Application Protocol (CoAP)</title>
            <author fullname="Michael Koster" initials="M." surname="Koster">
              <organization>SmartThings</organization>
            </author>
            <author fullname="Ari Keränen" initials="A." surname="Keränen">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Jaime Jimenez" initials="J." surname="Jimenez">
              <organization>Ericsson</organization>
            </author>
            <date day="7" month="November" year="2022"/>
            <abstract>
              <t>   The Constrained Application Protocol (CoAP), and related extensions
   are intended to support machine-to-machine communication in systems
   where one or more nodes are resource constrained, in particular for
   low power wireless sensor networks.  This document defines a publish-
   subscribe Broker for CoAP that extends the capabilities of CoAP for
   supporting nodes with long breaks in connectivity and/or up-time.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-coap-pubsub-11"/>
        </reference>
        <reference anchor="RFC8152">
          <front>
            <title>CBOR Object Signing and Encryption (COSE)</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad">
              <organization/>
            </author>
            <date month="July" year="2017"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size.  There is a need for the ability to have basic security services defined for this data format. This document defines the CBOR Object Signing and Encryption (COSE) protocol.  This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization.  This specification additionally describes how to represent cryptographic keys using CBOR.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8152"/>
          <seriesInfo name="DOI" value="10.17487/RFC8152"/>
        </reference>
        <reference anchor="RFC8392">
          <front>
            <title>CBOR Web Token (CWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones">
              <organization/>
            </author>
            <author fullname="E. Wahlstroem" initials="E." surname="Wahlstroem">
              <organization/>
            </author>
            <author fullname="S. Erdtman" initials="S." surname="Erdtman">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <date month="May" year="2018"/>
            <abstract>
              <t>CBOR Web Token (CWT) is a compact means of representing claims to be transferred between two parties.  The claims in a CWT are encoded in the Concise Binary Object Representation (CBOR), and CBOR Object Signing and Encryption (COSE) is used for added application-layer security protection.  A claim is a piece of information asserted about a subject and is represented as a name/value pair consisting of a claim name and a claim value.  CWT is derived from JSON Web Token (JWT) but uses CBOR rather than JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8392"/>
          <seriesInfo name="DOI" value="10.17487/RFC8392"/>
        </reference>
        <reference anchor="RFC8747">
          <front>
            <title>Proof-of-Possession Key Semantics for CBOR Web Tokens (CWTs)</title>
            <author fullname="M. Jones" initials="M." surname="Jones">
              <organization/>
            </author>
            <author fullname="L. Seitz" initials="L." surname="Seitz">
              <organization/>
            </author>
            <author fullname="G. Selander" initials="G." surname="Selander">
              <organization/>
            </author>
            <author fullname="S. Erdtman" initials="S." surname="Erdtman">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <date month="March" year="2020"/>
            <abstract>
              <t>This specification describes how to declare in a CBOR Web Token (CWT) (which is defined by RFC 8392) that the presenter of the CWT possesses a particular proof-of-possession key. Being able to prove possession of a key is also sometimes described as being the holder-of-key. This specification provides equivalent functionality to "Proof-of-Possession Key Semantics for JSON Web Tokens (JWTs)" (RFC 7800) but using Concise Binary Object Representation (CBOR) and CWTs rather than JavaScript Object Notation (JSON) and JSON Web Tokens (JWTs).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8747"/>
          <seriesInfo name="DOI" value="10.17487/RFC8747"/>
        </reference>
        <reference anchor="RFC9200">
          <front>
            <title>Authentication and Authorization for Constrained Environments Using the OAuth 2.0 Framework (ACE-OAuth)</title>
            <author fullname="L. Seitz" initials="L." surname="Seitz">
              <organization/>
            </author>
            <author fullname="G. Selander" initials="G." surname="Selander">
              <organization/>
            </author>
            <author fullname="E. Wahlstroem" initials="E." surname="Wahlstroem">
              <organization/>
            </author>
            <author fullname="S. Erdtman" initials="S." surname="Erdtman">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <date month="August" year="2022"/>
            <abstract>
              <t>This specification defines a framework for authentication and authorization in Internet of Things (IoT) environments called ACE-OAuth. The framework is based on a set of building blocks including OAuth 2.0 and the Constrained Application Protocol (CoAP), thus transforming a well-known and widely used authorization solution into a form suitable for IoT devices.  Existing specifications are used where possible, but extensions are added and profiles are defined to better serve the IoT use cases.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9200"/>
          <seriesInfo name="DOI" value="10.17487/RFC9200"/>
        </reference>
        <reference anchor="RFC9202">
          <front>
            <title>Datagram Transport Layer Security (DTLS) Profile for Authentication and Authorization for Constrained Environments (ACE)</title>
            <author fullname="S. Gerdes" initials="S." surname="Gerdes">
              <organization/>
            </author>
            <author fullname="O. Bergmann" initials="O." surname="Bergmann">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="G. Selander" initials="G." surname="Selander">
              <organization/>
            </author>
            <author fullname="L. Seitz" initials="L." surname="Seitz">
              <organization/>
            </author>
            <date month="August" year="2022"/>
            <abstract>
              <t>This specification defines a profile of the Authentication and Authorization for Constrained Environments (ACE) framework that allows constrained servers to delegate client authentication and authorization.  The protocol relies on DTLS version 1.2 or later for communication security between entities in a constrained network using either raw public keys or pre-shared keys. A resource-constrained server can use this protocol to delegate management of authorization information to a trusted host with less-severe limitations regarding processing power and memory.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9202"/>
          <seriesInfo name="DOI" value="10.17487/RFC9202"/>
        </reference>
        <reference anchor="RFC9203">
          <front>
            <title>The Object Security for Constrained RESTful Environments (OSCORE) Profile of the Authentication and Authorization for Constrained Environments (ACE) Framework</title>
            <author fullname="F. Palombini" initials="F." surname="Palombini">
              <organization/>
            </author>
            <author fullname="L. Seitz" initials="L." surname="Seitz">
              <organization/>
            </author>
            <author fullname="G. Selander" initials="G." surname="Selander">
              <organization/>
            </author>
            <author fullname="M. Gunnarsson" initials="M." surname="Gunnarsson">
              <organization/>
            </author>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document specifies a profile for the Authentication and Authorization for Constrained Environments (ACE) framework.  It utilizes Object Security for Constrained RESTful Environments (OSCORE) to provide communication security and proof-of-possession for a key owned by the client and bound to an OAuth 2.0 access token.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9203"/>
          <seriesInfo name="DOI" value="10.17487/RFC9203"/>
        </reference>
        <reference anchor="RFC8576">
          <front>
            <title>Internet of Things (IoT) Security: State of the Art and Challenges</title>
            <author fullname="O. Garcia-Morchon" initials="O." surname="Garcia-Morchon">
              <organization/>
            </author>
            <author fullname="S. Kumar" initials="S." surname="Kumar">
              <organization/>
            </author>
            <author fullname="M. Sethi" initials="M." surname="Sethi">
              <organization/>
            </author>
            <date month="April" year="2019"/>
            <abstract>
              <t>The Internet of Things (IoT) concept refers to the usage of standard Internet protocols to allow for human-to-thing and thing-to-thing communication.  The security needs for IoT systems are well recognized, and many standardization steps to provide security have been taken -- for example, the specification of the Constrained Application Protocol (CoAP) secured with Datagram Transport Layer Security (DTLS).  However, security challenges still exist, not only because there are some use cases that lack a suitable solution, but also because many IoT devices and systems have been designed and deployed with very limited security capabilities.  In this document, we first discuss the various stages in the lifecycle of a thing. Next, we document the security threats to a thing and the challenges that one might face to protect against these threats.  Lastly, we discuss the next steps needed to facilitate the deployment of secure IoT systems.  This document can be used by implementers and authors of IoT specifications as a reference for details about security considerations while documenting their specific security challenges, threat models, and mitigations.</t>
              <t>This document is a product of the IRTF Thing-to-Thing Research Group (T2TRG).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8576"/>
          <seriesInfo name="DOI" value="10.17487/RFC8576"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAPXLvmMAA81963LbWJLmfz4FVvWjxB2SsuVL2XJ0dKtku+wpu+y1VFMz
Ex3RAZIgiTYIsAFQMtvtfZp5k3mxzfvJA0Cya3t/rGOmWqKIg3PJk/f8cjqd
jpo2LZd/SYuqzM6Stt5no3xX009Ne3rv3tN7p6NltSjTLfx5WaerdprX7Wra
nrb1elpnDfxetdP790eLtD1L8nJVjXb52ShJ2mpxlnx/yJrv4ZfmsK2zVRM+
gJeUVZuv8mzpvtXW+aINvy+q7S71HzRV3cbjLCqYeQPfysJn9WqRLZv2UOBn
ZfU9T2aZ7doNfPDw+1Gbt/i3n/b5Mi0XWVKVyYcXl1erfZE8z5p8XSarqk5e
l21Wl1mbVKvkapOX6ya5PDRttm1G6XxeZ9dng09VV+FrdZaeJVenVx9+GqX7
dlPVZ6PRFDYJFnA+S37O6v/+rzIrYX68v+d17j+s6vVZ8gK2pGmqkrcny3A3
aOF5ezhL/rWqr9OG9mGJq713+vD0Hu/Lvmxr+MbLvCzghOGjbJvmxVmS1vns
Y1an8I4/ZTL4DHbaZvYWZlZdp22z2NjM3qZtu8nTxv+FpneZZ9usbNzs/vO/
/2tTZPVNtk4e2Tz/c7+2SV68mj5+cO+en+TlTd7+PavjiW7lnbOP8s4/Nfyy
aLY/z5JXad1+zGyuPxfpvgkfymgb+v1Pu7r6a7ZoF1VVzJbZaFRWNbwnv86Q
ZD+8vHjw9Mlj+fHp/fv3wo+n9COcN/4vEBST0Hm92OQtDLiv0yK5RJprElhF
0m4ypQogn1+y9qaqP07naZMtk8tq1d4Abfins4aGVSrBn2WBH2ZwhlmxBAKk
j5dpCy+Gq3mPfm3gDOE9cO/Okveb2fNZ8jxv4MMWVlWVk+TXEhZXN3AKOJGL
tMiBSss8nSSv6+u8zHiBjx88/MHW+oPtwL0HT+XHJ08f0o+/PbiYfXhxMc0+
5dPTe7BDD2yTHp0+fGw/PtFP3chPTp880U8fP9Uv/HD66FR/fPzwvv749JG+
+vHpPf3Ck4f2iieP7z/wE9q02+IRTunh/Xun8BrcEXe0r86vXrw7v4wOD08z
OX//ukm2wOySeZZsDjvYuexTO13W8GD5e88kebdoq3lW4/E84Vel9RpvxaZt
d83ZyUldHWbreX6NNHwC1J+W6yJbnuD3T4ibpru8meJ8pvNsOjAf3N0fntix
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
ZzdSGQ5CDNVkWPp0OqXAxOj/AO4RUgh+8AAA

-->

</rfc>
