<?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-rfc version 1.6.10 (Ruby 3.0.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpapi-rfc7807bis-03" category="std" consensus="true" obsoletes="7807" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.7 -->
  <front>
    <title>Problem Details for HTTP APIs</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpapi-rfc7807bis-03"/>
    <author initials="M." surname="Nottingham" fullname="Mark Nottingham">
      <organization/>
      <address>
        <postal>
          <postalLine>Prahran</postalLine>
          <postalLine>Australia</postalLine>
        </postal>
        <email>mnot@mnot.net</email>
        <uri>https://www.mnot.net/</uri>
      </address>
    </author>
    <author initials="E." surname="Wilde" fullname="Erik Wilde">
      <organization/>
      <address>
        <email>erik.wilde@dret.net</email>
        <uri>http://dret.net/netdret/</uri>
      </address>
    </author>
    <author initials="S." surname="Dalal" fullname="Sanjay Dalal">
      <organization/>
      <address>
        <postal>
          <country>United States of America</country>
        </postal>
        <email>sanjay.dalal@cal.berkeley.edu</email>
        <uri>https://github.com/sdatspun2</uri>
      </address>
    </author>
    <date/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTPAPI</workgroup>
    <keyword>status</keyword>
    <keyword>HTTP</keyword>
    <keyword>error</keyword>
    <keyword>problem</keyword>
    <keyword>API</keyword>
    <keyword>JSON</keyword>
    <keyword>XML</keyword>
    <abstract>
      <t>This document defines a "problem detail" to carry machine-readable details of errors in HTTP response content and/or fields to avoid the need to define new error response formats for HTTP APIs.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/ietf-wg-httpapi/rfc7807bis"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>HTTP status codes (<xref section="15" sectionFormat="of" target="HTTP"/>) cannot always convey enough information about errors to be helpful. While humans using Web browsers can often understand an HTML <xref target="HTML5"/> response body, non-human consumers of HTTP APIs have difficulty doing so.</t>
      <t>To address that shortcoming, this specification defines simple JSON <xref target="JSON"/> and XML <xref target="XML"/> document formats and a HTTP field to describe the specifics of problem(s) encountered -- "problem details".</t>
      <t>For example, consider a response indicating that the client's account doesn't have enough credit. The API's designer might decide to use the 403 Forbidden status code to inform HTTP-generic software (such as client libraries, caches, and proxies) of the response's general semantics. API-specific problem details (such as the why the server refused the request and the applicable account balance) can be carried in the response content, so that the client can act upon them appropriately (for example, triggering a transfer of more credit into the account).</t>
      <t>This specification identifies the specific "problem type" (e.g., "out of credit") with a URI <xref target="URI"/>. HTTP APIs can use URIs under their control to identify problems specific to them, or can reuse existing ones to facilitate interoperability and leverage common semantics (see <xref target="registry"/>).</t>
      <t>Problem details can contain other information, such as a URI identifying the problem's specific occurrence (effectively giving an identifier to the concept "The time Joe didn't have enough credit last Thursday"), which can be useful for support or forensic purposes.</t>
      <t>The data model for problem details is a JSON <xref target="JSON"/> object; when serialized as a JSON document, it uses the "application/problem+json" media type. <xref target="xml-syntax"/> defines an equivalent XML format, which uses the "application/problem+xml" media type.</t>
      <t>Note that problem details are (naturally) not the only way to convey the details of a problem in HTTP. If the response is still a representation of a resource, for example, it's often preferable to describe the relevant details in that application's format. Likewise, defined HTTP status codes cover many situations with no need to convey extra detail.</t>
      <t>This specification's aim is to define common error formats for applications that need one so that they aren't required to define their own, or worse, tempted to redefine the semantics of existing HTTP status codes. Even if an application chooses not to use it to convey errors, reviewing its design can help guide the design decisions faced when conveying errors in an existing format.</t>
    </section>
    <section anchor="notational-conventions">
      <name>Notational Conventions</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all capitals, as shown here.</t>
      <t>This document uses the following terminology from <xref target="STRUCTURED-FIELDS"/> to specify syntax and parsing: Dictionary, String, and Integer.</t>
    </section>
    <section anchor="problem-json">
      <name>The Problem Details JSON Object</name>
      <t>The canonical model for problem details is a JSON <xref target="JSON"/> object. When serialized in a JSON document, that format is identified with the "application/problem+json" media type.</t>
      <t>For example:</t>
      <sourcecode type="http-message"><![CDATA[
POST /purchase HTTP/1.1
Host: store.example.com
Content-Type: application/json
Accept: application/json, application/problem+json

{
  "item": 123456,
  "quantity": 2
}
]]></sourcecode>
      <sourcecode type="http-message"><![CDATA[
HTTP/1.1 403 Forbidden
Content-Type: application/problem+json
Content-Language: en

{
 "type": "https://example.com/probs/out-of-credit",
 "title": "You do not have enough credit.",
 "detail": "Your current balance is 30, but that costs 50.",
 "instance": "/account/12345/msgs/abc",
 "balance": 30,
 "accounts": ["/account/12345",
              "/account/67890"]
}
]]></sourcecode>
      <t>Here, the out-of-credit problem (identified by its type) indicates the reason for the 403 in "title", identifies the specific problem occurrence with "instance", gives occurrence-specific details in "detail", and adds two extensions: "balance" conveys the account's balance, and "accounts" lists links where the account can be topped up.</t>
      <t>When designed to accommodate it, problem-specific extensions can allow more than one instance of the same problem type to be conveyed. For example:</t>
      <sourcecode type="http-message"><![CDATA[
POST /details HTTP/1.1
Host: account.example.com
Accept: application/json

{
  "age": 42.3,
  "profile": {
    "color": "yellow"
  }
}
]]></sourcecode>
      <sourcecode type="http-message"><![CDATA[
HTTP/1.1 400 Bad Request
Content-Type: application/problem+json
Content-Language: en

{
 "type": "https://example.net/validation-error",
 "title": "Your request is not valid.",
 "errors": [
             {
               "detail": "must be a positive integer",
               "pointer": "#/age"
             },
             {
               "detail": "must be 'green', 'red' or 'blue'",
               "pointer": "#/profile/color"
             }
          ]
  }
]]></sourcecode>
      <t>The fictional problem type here defines the "errors" extension, an array that describes the details of each validation error. Each member is an object containing "detail" to describe the issue, and "pointer" to locate the problem within the request's content using a JSON Pointer <xref target="JSON-POINTER"/>.</t>
      <t>When an API encounters multiple problems that do not share the same type, it is RECOMMENDED that the most relevant or urgent problem be represented in the response. While it is possible to create generic "batch" problem types that convey multiple, disparate types, they do not map well into HTTP semantics.</t>
      <t>Note also that the API has responded with the application/problem+json type, even though the client did not list it in Accept, as is allowed by HTTP (see <xref section="12.5.1" sectionFormat="of" target="HTTP"/>).</t>
      <section anchor="members">
        <name>Members of a Problem Details Object</name>
        <t>Problem detail objects can have the following members. If a member's value type does not match the specified type, the member MUST be ignored -- i.e., processing will continue as if the member had not been present.</t>
        <section anchor="type">
          <name>"type"</name>
          <t>The "type" member is a JSON string containing a URI reference <xref target="URI"/> that identifies the problem type. Consumers MUST use the "type" URI (after resolution, if necessary) problem's primary identifier.</t>
          <t>When this member is not present, its value is assumed to be "about:blank".</t>
          <t>If the type URI is a locator (e.g., those with a "http" or "https" scheme), dereferencing it SHOULD provide human-readable documentation for the problem type (e.g., using HTML <xref target="HTML5"/>). However, consumers SHOULD NOT automatically dereference the type URI, unless they do so when providing information to developers (e.g., when a debugging tool is in use).</t>
          <t>When "type" contains a relative URI, it is resolved relative to the document's base URI, as per <xref section="5" sectionFormat="comma" target="URI"/>. However, using relative URIs can cause confusion, and they might not be handled correctly by all implementations.</t>
          <t>For example, if the two resources "https://api.example.org/foo/bar/123" and "https://api.example.org/widget/456" both respond with a "type" equal to the relative URI reference "example-problem", when resolved they will identify different resources ("https://api.example.org/foo/bar/example-problem" and "https://api.example.org/widget/example-problem" respectively). As a result, it is RECOMMENDED that absolute URIs be used in "type" when possible, and that when relative URIs are used, they include the full path (e.g., "/types/123").</t>
          <t>The type URI can also be a non-resolvable URI. For example, the tag URI scheme <xref target="TAG"/> can be used to uniquely identify problem types:</t>
          <artwork><![CDATA[
tag:mnot@mnot.net,2021-09-17:OutOfLuck
]]></artwork>
          <t>Non-resolvable URIs ought not be used when there is some future possibility that it might become desirable to do so. For example, if an API designer used the URI above and later adopted a tool that resolves type URIs to discover information about the error, taking advantage of that capability would require switching to a resolvable URI, creating a new identity for the problem type and thus introducing a breaking change.</t>
        </section>
        <section anchor="status">
          <name>"status"</name>
          <t>The "status" member is a JSON number indicating the HTTP status code (<xref section="15" sectionFormat="comma" target="HTTP"/>) generated by the origin server for this occurrence of the problem.</t>
          <t>The "status" member, if present, is only advisory; it conveys the HTTP status code used for the convenience of the consumer. Generators MUST use the same status code in the actual HTTP response, to assure that generic HTTP software that does not understand this format still behaves correctly. See <xref target="security-considerations"/> for further caveats regarding its use.</t>
          <t>Consumers can use the status member to determine what the original status code used by the generator was, in cases where it has been changed (e.g., by an intermediary or cache), and when message bodies persist without HTTP information. Generic HTTP software will still use the HTTP status code.</t>
        </section>
        <section anchor="title">
          <name>"title"</name>
          <t>The "title" member is a JSON string containing a short, human-readable summary of the problem type.</t>
          <t>It SHOULD NOT change from occurrence to occurrence of the problem, except for localization (e.g., using proactive content negotiation; see <xref section="12.1" sectionFormat="comma" target="HTTP"/>).</t>
          <t>The "title" string is advisory and included only for users who are not aware of the semantics of the URI and can not discover them (e.g., during offline log analysis).</t>
        </section>
        <section anchor="detail">
          <name>"detail"</name>
          <t>The "detail" member is a JSON string containing a human-readable explanation specific to this occurrence of the problem.</t>
          <t>The "detail" member, if present, ought to focus on helping the client correct the problem, rather than giving debugging information.</t>
          <t>Consumers SHOULD NOT parse the "detail" member for information; extensions are more suitable and less error-prone ways to obtain such information.</t>
        </section>
        <section anchor="instance">
          <name>"instance"</name>
          <t>The "instance" member is a JSON string containing a URI reference that identifies the specific occurrence of the problem.</t>
          <t>When the "instance" URI is dereferenceable, the problem details object can be fetched from it. It might also return information about the problem occurrence in other formats through use of proactive content negotiation (see <xref section="12.5.1" sectionFormat="comma" target="HTTP"/>).</t>
          <t>When the "instance" URI is not dereferenceable, it serves as a unique identifier for the problem occurrence that may be of significance to the server, but is opaque to the client.</t>
          <t>When "instance" contains a relative URI, it is resolved relative to the document's base URI, as per <xref section="5" sectionFormat="comma" target="URI"/>. However, using relative URIs can cause confusion, and they might not be handled correctly by all implementations.</t>
          <t>For example, if the two resources "https://api.example.org/foo/bar/123" and "https://api.example.org/widget/456" both respond with an "instance" equal to the relative URI reference "example-instance", when resolved they will identify different resources ("https://api.example.org/foo/bar/example-instance" and "https://api.example.org/widget/example-instance" respectively). As a result, it is RECOMMENDED that absolute URIs be used in "instance" when possible, and that when relative URIs are used, they include the full path (e.g., "/instances/123").</t>
        </section>
      </section>
      <section anchor="extension">
        <name>Extension Members</name>
        <t>Problem type definitions MAY extend the problem details object with additional members that are specific to that problem type.</t>
        <t>For example, our "out of credit" problem above defines two such extensions -- "balance" and "accounts" to convey additional, problem-specific information.</t>
        <t>Similarly, the "validation error" example defines a "errors" extension that contains a list of individual error occurrences found, with details and a pointer to the location of each.</t>
        <t>Clients consuming problem details MUST ignore any such extensions that they don't recognize; this allows problem types to evolve and include additional information in the future.</t>
        <t>Future updates to this specification might define additional members that are available to all problem types, distinguished by a name starting with "*". To avoid conflicts, extension member names SHOULD NOT start with the "*" character.</t>
        <t>When creating extensions, problem type authors should choose their names carefully. To be used in the XML format (see <xref target="xml-syntax"/>), they will need to conform to the Name rule in <xref section="2.3" sectionFormat="of" target="XML" relative="#NT-Name"/>. To be used in the HTTP field (see <xref target="field"/>), they will need to conform to the Dictionary key syntax defined in <xref section="3.2" sectionFormat="of" target="STRUCTURED-FIELDS"/>.</t>
        <t>Problem type authors that wish their extensions to be usable in the Problem HTTP field (see <xref target="field"/>) will also need to define the Structured Type(s) that their values are mapped to.</t>
      </section>
    </section>
    <section anchor="field">
      <name>The Problem HTTP Field</name>
      <t>Some problems might best be conveyed in a HTTP header or trailer field, rather than in the message content. For example, when a problem does not prevent a successful response from being generated, or when the problem's details are useful to software that does not inspect the response content.</t>
      <t>The Problem HTTP field allows a limited expression of a problem object in HTTP headers or trailers. It is a Dictionary Structured Field (<xref section="3.2" sectionFormat="of" target="STRUCTURED-FIELDS"/>) that can contain the following keys, whose semantics and related requirements are inherited from problem objects:</t>
      <dl>
        <dt>type:</dt>
        <dd>
          <t>the type value (see <xref target="type"/>), as a String</t>
        </dd>
        <dt>status:</dt>
        <dd>
          <t>the status value (see <xref target="status"/>), as an Integer</t>
        </dd>
        <dt>title:</dt>
        <dd>
          <t>The title value (see <xref target="title"/>), as a String</t>
        </dd>
        <dt>detail:</dt>
        <dd>
          <t>The detail value (see <xref target="detail"/>), as a String</t>
        </dd>
        <dt>instance:</dt>
        <dd>
          <t>The instance value (see <xref target="instance"/>), as a String</t>
        </dd>
      </dl>
      <t>The title and detail values MUST NOT be serialized in the Problem field if they contain characters that are not allowed by String; see <xref section="3.3.3" sectionFormat="of" target="STRUCTURED-FIELDS"/>. Practically, this has the effect of limiting them to ASCII strings.</t>
      <t>An extension member (see <xref target="extension"/>) MAY occur in the Problem field if its name is compatible with the syntax of Dictionary keys (see <xref section="3.2" sectionFormat="of" target="STRUCTURED-FIELDS"/>) and if the defining problem type specifies a Structured Type to serialize the value into.</t>
      <t>For example:</t>
      <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Problem: type="https://example.net/problems/almost-out",
   title="you're almost out of credit", credit_left=20
]]></sourcecode>
    </section>
    <section anchor="defining">
      <name>Defining New Problem Types</name>
      <t>When an HTTP API needs to define a response that indicates an error condition, it might be appropriate to do so by defining a new problem type.</t>
      <t>Before doing so, it's important to understand what they are good for, and what's better left to other mechanisms.</t>
      <t>Problem details are not a debugging tool for the underlying implementation; rather, they are a way to expose greater detail about the HTTP interface itself. Designers of new problem types need to carefully consider the Security Considerations (<xref target="security-considerations"/>), in particular, the risk of exposing attack vectors by exposing implementation internals through error messages.</t>
      <t>Likewise, truly generic problems -- i.e., conditions that might apply to any resource on the Web -- are usually better expressed as plain status codes. For example, a "write access disallowed" problem is probably unnecessary, since a 403 Forbidden status code in response to a PUT request is self-explanatory.</t>
      <t>Finally, an application might have a more appropriate way to carry an error in a format that it already defines. Problem details are intended to avoid the necessity of establishing new "fault" or "error" document formats, not to replace existing domain-specific formats.</t>
      <t>That said, it is possible to add support for problem details to existing HTTP APIs using HTTP content negotiation (e.g., using the Accept request header to indicate a preference for this format; see <xref section="12.5.1" sectionFormat="comma" target="HTTP"/>).</t>
      <t>New problem type definitions MUST document:</t>
      <ol spacing="normal" type="1"><li>a type URI (typically, with the "http" or "https" scheme),</li>
        <li>a title that appropriately describes it (think short), and</li>
        <li>the HTTP status code for it to be used with.</li>
      </ol>
      <t>Problem type definitions MAY specify the use of the Retry-After response header (<xref section="10.2.3" sectionFormat="comma" target="HTTP"/>) in appropriate circumstances.</t>
      <t>A problem's type URI SHOULD resolve to HTML <xref target="HTML5"/> documentation that explains how to resolve the problem.</t>
      <t>A problem type definition MAY specify additional members on the problem details object. For example, an extension might use typed links <xref target="WEB-LINKING"/> to another resource that machines can use to resolve the problem.</t>
      <t>If such additional members are defined, their names SHOULD start with a letter (ALPHA, as per <xref section="B.1" sectionFormat="comma" target="ABNF"/>) and SHOULD comprise characters from ALPHA, DIGIT (<xref section="B.1" sectionFormat="comma" target="ABNF"/>), and "_" (so that it can be serialized in formats other than JSON), and they SHOULD be three characters or longer.</t>
      <section anchor="example">
        <name>Example</name>
        <t>For example, if you are publishing an HTTP API to your online shopping cart, you might need to indicate that the user is out of credit (our example from above), and therefore cannot make the purchase.</t>
        <t>If you already have an application-specific format that can accommodate this information, it's probably best to do that. However, if you don't, you might use one of the problem details formats -- JSON if your API is JSON-based, or XML if it uses that format.</t>
        <t>To do so, you might look in the registry (<xref target="registry"/>) for an already-defined type URI that suits your purposes. If one is available, you can reuse that URI.</t>
        <t>If one isn't available, you could mint and document a new type URI (which ought to be under your control and stable over time), an appropriate title and the HTTP status code that it will be used with, along with what it means and how it should be handled.</t>
      </section>
      <section anchor="registry">
        <name>Registered Problem Types</name>
        <t>This specification defines the HTTP Problem Type registry for common, widely-used problem type URIs, to promote reuse.</t>
        <t>The policy for this registry is Specification Required, per <xref section="4.5" sectionFormat="comma" target="RFC8126"/>.</t>
        <t>When evaluating requests, the Expert(s) should consider community feedback, how well-defined the problem type is, and this specification's requirements. Vendor-specific, application-specific, and deployment-specific values are not registrable. Specification documents should be published in a stable, freely available manner (ideally located with a URL), but need not be standards.</t>
        <t>Registrations MAY use the prefix "https://iana.org/assignments/http-problem-types#" for the type URI.</t>
        <t>Registration requests should use the following template:</t>
        <ul spacing="normal">
          <li>Type URI: [a URI for the problem type]</li>
          <li>Title: [a short description of the problem type]</li>
          <li>Recommended HTTP status code: [what status code is most appropriate to use with the type]</li>
          <li>Reference: [to a specification defining the type]</li>
        </ul>
        <t>See the registry at <eref target="https://iana.org/assignments/http-problem-types">https://iana.org/assignments/http-problem-types</eref> for details on where to send registration requests.</t>
        <section anchor="blank">
          <name>about:blank</name>
          <t>This specification registers one Problem Type, "about:blank".</t>
          <ul spacing="normal">
            <li>Type URI: about:blank</li>
            <li>Title: See HTTP Status Code</li>
            <li>Recommended HTTP status code: N/A</li>
            <li>Reference: [this document]</li>
          </ul>
          <t>The "about:blank" URI <xref target="ABOUT"/>, when used as a problem type, indicates that the problem has no additional semantics beyond that of the HTTP status code.</t>
          <t>When "about:blank" is used, the title SHOULD be the same as the recommended HTTP status phrase for that code (e.g., "Not Found" for 404, and so on), although it MAY be localized to suit client preferences (expressed with the Accept-Language request header).</t>
          <t>Please note that according to how the "type" member is defined (<xref target="members"/>), the "about:blank" URI is the default value for that member. Consequently, any problem details object not carrying an explicit "type" member implicitly uses this URI.</t>
        </section>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>When defining a new problem type, the information included must be carefully vetted. Likewise, when actually generating a problem -- however it is serialized -- the details given must also be scrutinized.</t>
      <t>Risks include leaking information that can be exploited to compromise the system, access to the system, or the privacy of users of the system.</t>
      <t>Generators providing links to occurrence information are encouraged to avoid making implementation details such as a stack dump available through the HTTP interface, since this can expose sensitive details of the server implementation, its data, and so on.</t>
      <t>The "status" member duplicates the information available in the HTTP status code itself, bringing the possibility of disagreement between the two. Their relative precedence is not clear, since a disagreement might indicate that (for example) an intermediary has changed the HTTP status code in transit (e.g., by a proxy or cache). Generic HTTP software (such as proxies, load balancers, firewalls, and virus scanners) are unlikely to know of or respect the status code conveyed in this member.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>Please update the "application/problem+json" and "application/problem+xml" registrations in the "Media Types" registry to refer to this document.</t>
      <t>Please create the "HTTP Problem Types Registry" as specified in <xref target="registry"/>, and populate it with "about:blank" as per <xref target="blank"/>.</t>
      <t>Please register the following entry into the "Hypertext Transfer Protocol (HTTP) Field Name Registry":</t>
      <dl>
        <dt>Field Name:</dt>
        <dd>
          <t>Problem</t>
        </dd>
        <dt>Status:</dt>
        <dd>
          <t>Permanent</t>
        </dd>
        <dt>Reference:</dt>
        <dd>
          <t>RFC nnnn</t>
        </dd>
      </dl>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="URI">
          <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="ABNF">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker">
              <organization/>
            </author>
            <author fullname="P. Overell" initials="P." surname="Overell">
              <organization/>
            </author>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="JSON">
          <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="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="Roy T. Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke">
              <organization>greenbytes GmbH</organization>
            </author>
            <date day="12" month="September" year="2021"/>
            <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.

   This document updates RFC 3864 and obsoletes RFC 2818, RFC 7231, RFC
   7232, RFC 7233, RFC 7235, RFC 7538, RFC 7615, RFC 7694, and portions
   of RFC 7230.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-semantics-19"/>
        </reference>
        <reference anchor="STRUCTURED-FIELDS">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="P-H. Kamp" initials="P-H." surname="Kamp">
              <organization/>
            </author>
            <date month="February" year="2021"/>
            <abstract>
              <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8941"/>
          <seriesInfo name="DOI" value="10.17487/RFC8941"/>
        </reference>
        <reference anchor="XML" target="https://www.w3.org/TR/2008/REC-xml-20081126">
          <front>
            <title>Extensible Markup Language (XML) 1.0 (Fifth Edition)</title>
            <author fullname="Tim Bray" initials="T." surname="Bray">
              <organization/>
            </author>
            <author fullname="Jean Paoli" initials="J." surname="Paoli">
              <organization/>
            </author>
            <author fullname="Michael Sperberg-McQueen" initials="M." surname="Sperberg-McQueen">
              <organization/>
            </author>
            <author fullname="Eve Maler" initials="E." surname="Maler">
              <organization/>
            </author>
            <author fullname="FranÃ§ois Yergeau" initials="F." surname="Yergeau">
              <organization/>
            </author>
            <date day="26" month="November" year="2008"/>
          </front>
          <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-xml-20081126"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="WEB-LINKING">
          <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="ABOUT">
          <front>
            <title>The "about" URI Scheme</title>
            <author fullname="S. Moonesamy" initials="S." role="editor" surname="Moonesamy">
              <organization/>
            </author>
            <date month="August" year="2012"/>
            <abstract>
              <t>This document describes the "about" URI scheme, which is widely used by Web browsers and some other applications to designate access to their internal resources, such as settings, application information, hidden built-in functionality, and so on.  This document is not an Internet Standards Track  specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6694"/>
          <seriesInfo name="DOI" value="10.17487/RFC6694"/>
        </reference>
        <reference anchor="TAG">
          <front>
            <title>The 'tag' URI Scheme</title>
            <author fullname="T. Kindberg" initials="T." surname="Kindberg">
              <organization/>
            </author>
            <author fullname="S. Hawke" initials="S." surname="Hawke">
              <organization/>
            </author>
            <date month="October" year="2005"/>
            <abstract>
              <t>This document describes the "tag" Uniform Resource Identifier (URI) scheme.  Tag URIs (also known as "tags") are designed to be unique across space and time while being tractable to humans.  They are distinct from most other URIs in that they have no authoritative resolution mechanism.  A tag may be used purely as an entity identifier.  Furthermore, using tags has some advantages over the common practice of using "http" URIs as identifiers for non-HTTP-accessible resources.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4151"/>
          <seriesInfo name="DOI" value="10.17487/RFC4151"/>
        </reference>
        <reference anchor="JSON-POINTER">
          <front>
            <title>JavaScript Object Notation (JSON) Pointer</title>
            <author fullname="P. Bryan" initials="P." role="editor" surname="Bryan">
              <organization/>
            </author>
            <author fullname="K. Zyp" initials="K." surname="Zyp">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <date month="April" year="2013"/>
            <abstract>
              <t>JSON Pointer defines a string syntax for identifying a specific value within a JavaScript Object Notation (JSON) document.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6901"/>
          <seriesInfo name="DOI" value="10.17487/RFC6901"/>
        </reference>
        <reference anchor="JSON-SCHEMA">
          <front>
            <title>JSON Schema: A Media Type for Describing JSON Documents</title>
            <author fullname="Austin Wright">
	 </author>
            <author fullname="Henry Andrews">
	 </author>
            <author fullname="Ben Hutton">
	 </author>
            <author fullname="Greg Dennis">
	 </author>
            <date day="8" month="December" year="2020"/>
            <abstract>
              <t>   JSON Schema defines the media type "application/schema+json", a JSON-
   based format for describing the structure of JSON data.  JSON Schema
   asserts what a JSON document must look like, ways to extract
   information from it, and how to interact with it.  The "application/
   schema-instance+json" media type provides additional feature-rich
   integration with "application/schema+json" beyond what can be offered
   for "application/json" documents.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bhutton-json-schema-00"/>
        </reference>
        <reference anchor="ISO-19757-2">
          <front>
            <title>Information Technology -- Document Schema Definition Languages (DSDL) -- Part 2: Grammar-based Validation -- RELAX NG</title>
            <author>
              <organization>International Organization for Standardization</organization>
            </author>
            <date year="2003"/>
          </front>
          <seriesInfo name="ISO/IEC" value="19757-2"/>
        </reference>
        <reference anchor="HTML5" target="https://html.spec.whatwg.org">
          <front>
            <title>HTML - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RDFA" target="https://www.w3.org/TR/2015/REC-rdfa-core-20150317">
          <front>
            <title>RDFa Core 1.1 - Third Edition</title>
            <author fullname="Ben Adida" initials="B." surname="Adida">
              <organization/>
            </author>
            <author fullname="Mark Birbeck" initials="M." surname="Birbeck">
              <organization/>
            </author>
            <author fullname="Shane McCarron" initials="S." surname="McCarron">
              <organization/>
            </author>
            <author fullname="Ivan Herman" initials="I." surname="Herman">
              <organization/>
            </author>
            <date day="17" month="March" year="2015"/>
          </front>
          <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-rdfa-core-20150317"/>
        </reference>
        <reference anchor="XSLT" target="https://www.w3.org/TR/2010/REC-xml-stylesheet-20101028">
          <front>
            <title>Associating Style Sheets with XML documents 1.0 (Second Edition)</title>
            <author fullname="James Clark" initials="J." surname="Clark">
              <organization/>
            </author>
            <author fullname="Simon Pieters" initials="S." surname="Pieters">
              <organization/>
            </author>
            <author fullname="Henry Thompson" initials="H." surname="Thompson">
              <organization/>
            </author>
            <date day="28" month="October" year="2010"/>
          </front>
          <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-xml-stylesheet-20101028"/>
        </reference>
      </references>
    </references>
    <section anchor="json-schema">
      <name>JSON Schema for HTTP Problems</name>
      <t>This section presents a non-normative JSON Schema <xref target="JSON-SCHEMA"/> for HTTP Problem Details. If there is any disagreement between it and the text of the specification, the latter prevails.</t>
      <sourcecode type="json"><![CDATA[
# NOTE: '\' line wrapping per RFC 8792
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "A problem object RFC 7807bis",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "format": "uri-reference",
      "description": "A URI reference RFC3986 that identifies the \
problem type."
    },
    "title": {
      "type": "string",
      "description": "A short, human-readable summary of the \
problem type. It SHOULD NOT change from occurrence to occurrence \
of the problem, except for purposes of localization (e.g., using \
proactive content negotiation; see RFC7231, Section 3.4)"
    },
    "status": {
      "type": "integer",
      "description": "The HTTP status code (RFC7231, Section 6) \
generated by the origin server for this occurrence of the problem.",
      "minimum": 100,
      "maximum": 599
    },
    "detail": {
      "type": "string",
      "description": "A human-readable explanation specific to \
this occurrence of the problem."
    },
    "instance": {
      "type": "string",
      "format": "uri-reference",
      "description": "A URI reference that identifies the \
specific occurrence of the problem. It may or may not yield \
further information if dereferenced."
    }
  }
}
]]></sourcecode>
    </section>
    <section anchor="xml-syntax">
      <name>HTTP Problems and XML</name>
      <t>HTTP-based APIs that use XML <xref target="XML"/> can express problem details using the format defined in this appendix.</t>
      <t>The RELAX NG schema <xref target="ISO-19757-2"/> for the XML format is:</t>
      <sourcecode type="relax-ng-compact-syntax"><![CDATA[
   default namespace ns = "urn:ietf:rfc:7807"

   start = problem

   problem =
     element problem {
       (  element  type            { xsd:anyURI }?
        & element  title           { xsd:string }?
        & element  detail          { xsd:string }?
        & element  status          { xsd:positiveInteger }?
        & element  instance        { xsd:anyURI }? ),
       anyNsElement
     }

   anyNsElement =
     (  element    ns:*  { anyNsElement | text }
      | attribute  *     { text })*
]]></sourcecode>
      <t>Note that this schema is only intended as documentation, and not as a normative schema that captures all constraints of the XML format. It is possible to use other XML schema languages to define a similar set of constraints (depending on the features of the chosen schema language).</t>
      <t>The media type for this format is "application/problem+xml".</t>
      <t>Extension arrays and objects are serialized into the XML format by considering an element containing a child or children to represent an object, except for elements that contain only child element(s) named 'i', which are considered arrays. For example, the example above appears in XML as follows:</t>
      <sourcecode type="http-message"><![CDATA[
HTTP/1.1 403 Forbidden
Content-Type: application/problem+xml
Content-Language: en

<?xml version="1.0" encoding="UTF-8"?>
<problem xmlns="urn:ietf:rfc:7807">
  <type>https://example.com/probs/out-of-credit</type>
  <title>You do not have enough credit.</title>
  <detail>Your current balance is 30, but that costs 50.</detail>
  <instance>https://example.net/account/12345/msgs/abc</instance>
  <balance>30</balance>
  <accounts>
    <i>https://example.net/account/12345</i>
    <i>https://example.net/account/67890</i>
  </accounts>
</problem>
]]></sourcecode>
      <t>This format uses an XML namespace, primarily to allow embedding it into other XML-based formats; it does not imply that it can or should be extended with elements or attributes in other namespaces. The RELAX NG schema explicitly only allows elements from the one namespace used in the XML format. Any extension arrays and objects MUST be serialized into XML markup using only that namespace.</t>
      <t>When using the XML format, it is possible to embed an XML processing instruction in the XML that instructs clients to transform the XML, using the referenced XSLT code <xref target="XSLT"/>. If this code is transforming the XML into (X)HTML, then it is possible to serve the XML format, and yet have clients capable of performing the transformation display human-friendly (X)HTML that is rendered and displayed at the client. Note that when using this method, it is advisable to use XSLT 1.0 in order to maximize the number of clients capable of executing the XSLT code.</t>
    </section>
    <section anchor="using-problem-details-with-other-formats">
      <name>Using Problem Details with Other Formats</name>
      <t>In some situations, it can be advantageous to embed problem details in formats other than those described here. For example, an API that uses HTML <xref target="HTML5"/> might want to also use HTML for expressing its problem details.</t>
      <t>Problem details can be embedded in other formats either by encapsulating one of the existing serializations (JSON or XML) into that format or by translating the model of a problem detail (as specified in <xref target="problem-json"/>) into the format's conventions.</t>
      <t>For example, in HTML, a problem could be embedded by encapsulating JSON in a script tag:</t>
      <sourcecode type="html"><![CDATA[
<script type="application/problem+json">
  {
   "type": "https://example.com/probs/out-of-credit",
   "title": "You do not have enough credit.",
   "detail": "Your current balance is 30, but that costs 50.",
   "instance": "/account/12345/msgs/abc",
   "balance": 30,
   "accounts": ["/account/12345",
                "/account/67890"]
  }
</script>
]]></sourcecode>
      <t>or by inventing a mapping into RDFa <xref target="RDFA"/>.</t>
      <t>This specification does not make specific recommendations regarding embedding problem details in other formats; the appropriate way to embed them depends both upon the format in use and application of that format.</t>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>The authors would like to thank
Jan Algermissen,
Subbu Allamaraju,
Mike Amundsen,
Roy Fielding,
Eran Hammer,
Sam Johnston,
Mike McCall,
Julian Reschke, and
James Snell
for review of this specification.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
eLNdqo16/wtt8HQSm3EAAA==

-->

</rfc>
