<?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.24 (Ruby 3.1.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpapi-rfc7807bis-06" category="std" consensus="true" obsoletes="7807" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.16.0 -->
  <front>
    <title>Problem Details for HTTP APIs</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpapi-rfc7807bis-06"/>
    <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 to avoid the need to define new error response formats for HTTP APIs.</t>
      <t>This document obsoletes RFC 7807.</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 content, 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 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 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>When they are conveyed in an HTTP response, the contents of problem details can be negotiated using proactive negotiation; see <xref section="12.1" sectionFormat="of" target="HTTP"/>. In particular, the language used for human-readable strings (such as those in title and description) can be negotiated using the Accept-Language request header field (<xref section="12.5.4" sectionFormat="of" target="HTTP"/>), although that negotiation may still result in a non-preferred, default representation being returned.</t>
      <t>Problem details can be used with any HTTP status code, but they most naturally fit the semantics of 4xx and 5xx responses. 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>
      <t>See <xref target="changes"/> for a list of changes from RFC 7807.</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>
    </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 convey more than one instance of the same problem type. 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) as the problem type'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 an "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 is allowed to 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>However, resolvable type URIs are encouraged by this specification because it might become desirable to resolve the URI in the future. 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 when it has been changed (e.g., by an intermediary or cache), and when a message's content is persisted 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 is included only for users who are both unaware of and cannot discover the semantics of the type URI (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" string, 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 an "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"/>.</t>
      </section>
    </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 take into account 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.6" 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 registerable. 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. Note that those URIs may not be able to be resolved.</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>
    </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="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="XML" target="https://www.w3.org/TR/2008/REC-xml-20081126/">
          <front>
            <title>Extensible Markup Language (XML) 1.0 (Fifth Edition)</title>
            <author fullname="Eve Maler" role="editor"/>
            <author fullname="François Yergeau" role="editor"/>
            <author fullname="Jean Paoli" role="editor"/>
            <author fullname="Michael Sperberg-McQueen" role="editor"/>
            <author fullname="Tim Bray" role="editor"/>
            <date day="26" month="November" year="2008"/>
          </front>
          <seriesInfo name="W3C REC" value="REC-xml-20081126"/>
          <seriesInfo name="W3C" 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" initials="A." surname="Wright">
         </author>
            <author fullname="Henry Andrews" initials="H." surname="Andrews">
         </author>
            <author fullname="Ben Hutton" initials="B." surname="Hutton">
              <organization>Postman</organization>
            </author>
            <author fullname="Greg Dennis" initials="G." surname="Dennis">
         </author>
            <date day="10" month="June" year="2022"/>
            <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-01"/>
        </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" role="editor"/>
            <author fullname="Ivan Herman" role="editor"/>
            <author fullname="Mark Birbeck" role="editor"/>
            <author fullname="Shane McCarron" role="editor"/>
            <date day="17" month="March" year="2015"/>
          </front>
          <seriesInfo name="W3C REC" value="REC-rdfa-core-20150317"/>
          <seriesInfo name="W3C" 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="Henry Thompson" role="editor"/>
            <author fullname="James Clark" role="editor"/>
            <author fullname="Simon Pieters" role="editor"/>
            <date day="28" month="October" year="2010"/>
          </front>
          <seriesInfo name="W3C REC" value="REC-xml-stylesheet-20101028"/>
          <seriesInfo name="W3C" 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 that identifies the \
problem type."
    },
    "title": {
      "type": "string",
      "description": "A short, human-readable summary of the \
problem type."
    },
    "status": {
      "type": "integer",
      "description": "The HTTP status code \
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 anchor="changes">
      <name>Changes from RFC 7807</name>
      <t>This revision has made the following changes:</t>
      <ul spacing="normal">
        <li>
          <xref target="registry"/> introduces a registry of common problem type URIs</li>
        <li>
          <xref target="problem-json"/> clarifies how multiple problems should be treated</li>
        <li>
          <xref target="extension"/> reserves a prefix for future standards-defined object members</li>
        <li>
          <xref target="type"/> provides guidance for using type URIs that cannot be dereferenced</li>
      </ul>
    </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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

-->

</rfc>
