<?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.19 (Ruby 3.1.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpapi-rfc7807bis-05" category="std" consensus="true" obsoletes="7807" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.3 -->
  <front>
    <title>Problem Details for HTTP APIs</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpapi-rfc7807bis-05"/>
    <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>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 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. 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="UTF8">
          <front>
            <title>UTF-8, a transformation format of ISO 10646</title>
            <author fullname="F. Yergeau" initials="F." surname="Yergeau">
              <organization/>
            </author>
            <date month="November" year="2003"/>
            <abstract>
              <t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems.  The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo.  UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values.  This memo obsoletes and replaces RFC 2279.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="63"/>
          <seriesInfo name="RFC" value="3629"/>
          <seriesInfo name="DOI" value="10.17487/RFC3629"/>
        </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 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 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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
sS6vjHr/C4wVDad1bAAA

-->

</rfc>
