<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.6.5 (Ruby 3.0.3) -->
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpapi-rfc7807bis-02" category="std" consensus="true" obsoletes="7807" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.3 -->
  <front>
    <title>Problem Details for HTTP APIs</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpapi-rfc7807bis-02"/>
    <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 a HTTP response to avoid the need to define new error response formats for HTTP APIs.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/ietf-wg-httpapi/rfc7807bis"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>HTTP status codes (<xref section="15" sectionFormat="of" target="HTTP"/>) cannot always convey enough information about errors to be helpful. While humans using Web browsers can often understand an HTML <xref target="HTML5"/> response body, non-human consumers of HTTP APIs have difficulty doing so.</t>
      <t>To address that shortcoming, this specification defines simple JSON <xref target="RFC8259"/> 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 the why the server refused the request and the applicable account balance) can be carried in the response content, so that the client can act upon them appropriately (for example, triggering a transfer of more credit into the account).</t>
      <t>This specification identifies the specific "problem type" (e.g., "out of credit") with a URI <xref target="RFC3986"/>. 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="RFC8259"/> object; when serialized as a JSON document, it uses the "application/problem+json" media type. <xref target="xml-syntax"/> defines an equivalent XML format, which uses the "application/problem+xml" media type.</t>
      <t>Note that problem details are (naturally) not the only way to convey the details of a problem in HTTP. If the response is still a representation of a resource, for example, it's often preferable to describe the relevant details in that application's format. Likewise, defined HTTP status codes cover many situations with no need to convey extra detail.</t>
      <t>This specification's aim is to define common error formats for applications that need one so that they aren't required to define their own, or worse, tempted to redefine the semantics of existing HTTP status codes. Even if an application chooses not to use it to convey errors, reviewing its design can help guide the design decisions faced when conveying errors in an existing format.</t>
    </section>
    <section anchor="requirements">
      <name>Requirements</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="RFC8259"/> object.</t>
      <t>When serialized as a JSON document, that format is identified with the "application/problem+json" media type.</t>
      <t>For example, an HTTP response carrying JSON problem details:</t>
      <sourcecode type="http-message"><![CDATA[
HTTP/1.1 403 Forbidden
Content-Type: application/problem+json
Content-Language: en

{
 "type": "https://example.com/probs/out-of-credit",
 "title": "You do not have enough credit.",
 "detail": "Your current balance is 30, but that costs 50.",
 "instance": "/account/12345/msgs/abc",
 "balance": 30,
 "accounts": ["/account/12345",
              "/account/67890"]
}
]]></sourcecode>
      <t>Here, the out-of-credit problem (identified by its type) indicates the reason for the 403 in "title", identifies the specific problem occurrence with "instance", gives occurrence-specific details in "detail", and adds two extensions; "balance" conveys the account's balance, and "accounts" lists links where the account can be topped up.</t>
      <t>When designed to accommodate it, problem-specific extensions can allow more than one instance of the same problem type to be conveyed. For example:</t>
      <sourcecode type="http-message"><![CDATA[
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.",
 "causes": [
             {
               "detail": "must be a positive integer",
               "problem-pointer": "#/age"
             },
             {
               "detail": "must be 'green', 'red' or 'blue'",
               "problem-pointer": "#/profile/color"
             }
          ]     
  }
]]></sourcecode>
      <t>The fictional problem type here defines the "causes" extension, an array that describes the details of multiple occurrences. Each member is an object containing "detail" to describe the issue, and "problem-pointer" to locate the problem within the request's content using a JSON Pointer <xref target="RFC6901"/>.</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>
      <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="RFC3986"/> that identifies the problem type. Consumers MUST use the "type" URI (after resolution, if necessary) problem's primary identifier.</t>
          <t>When this member is not present, its value is assumed to be "about:blank".</t>
          <t>If the type URI is a locator (e.g., those with a "http" or "https" scheme), dereferencing it SHOULD provide human-readable documentation for the problem type (e.g., using HTML <xref target="HTML5"/>). However, consumers SHOULD NOT automatically dereference the type URI, unless they do so when providing information to developers (e.g., when a debugging tool is in use).</t>
          <t>When "type" contains a relative URI, it is resolved relative to the document's base URI, as per <xref section="5" sectionFormat="comma" target="RFC3986"/>. However, using relative URIs can cause confusion, and they might not be handled correctly by all implementations.</t>
          <t>For example, if the two resources "https://api.example.org/foo/bar/123" and "https://api.example.org/widget/456" both respond with a "type" equal to the relative URI reference "example-problem", when resolved they will identify different resources ("https://api.example.org/foo/bar/example-problem" and "https://api.example.org/widget/example-problem" respectively). As a result, it is RECOMMENDED that absolute URIs be used in "type" when possible, and that when relative URIs are used, they include the full path (e.g., "/types/123").</t>
          <t>The type URI can also be a non-resolvable URI. For example, the tag URI scheme <xref target="RFC4151"/> can be used to uniquely identify problem types:</t>
          <artwork><![CDATA[
tag:mnot@mnot.net,2021-09-17:OutOfLuck
]]></artwork>
          <t>Non-resolvable URIs ought not be used when there is some future possibility that it might become desirable to do so. For example, if an API designer used the URI above and later adopted a tool that resolves type URIs to discover information about the error, taking advantage of that capability would require switching to a resolvable URI, creating a new identity for the problem type and thus introducing a breaking change.</t>
        </section>
        <section anchor="status">
          <name>"status"</name>
          <t>The "status" member is a JSON number indicating the HTTP status code (<xref section="15" sectionFormat="comma" target="HTTP"/>) generated by the origin server for this occurrence of the problem.</t>
          <t>The "status" member, if present, is only advisory; it conveys the HTTP status code used for the convenience of the consumer. Generators MUST use the same status code in the actual HTTP response, to assure that generic HTTP software that does not understand this format still behaves correctly. See <xref target="security-considerations"/> for further caveats regarding its use.</t>
          <t>Consumers can use the status member to determine what the original status code used by the generator was, in cases where it has been changed (e.g., by an intermediary or cache), and when message bodies persist without HTTP information. Generic HTTP software will still use the HTTP status code.</t>
        </section>
        <section anchor="title">
          <name>"title"</name>
          <t>The "title" member is a JSON string containing a short, human-readable summary of the problem type.</t>
          <t>It SHOULD NOT change from occurrence to occurrence of the problem, except for localization (e.g., using proactive content negotiation; see <xref section="12.1" sectionFormat="comma" target="HTTP"/>).</t>
          <t>The "title" string is advisory and included only for users who are not aware of the semantics of the URI and can not discover them (e.g., during offline log analysis).</t>
        </section>
        <section anchor="detail">
          <name>"detail"</name>
          <t>The "detail" member is a JSON string containing a human-readable explanation specific to this occurrence of the problem.</t>
          <t>The "detail" member, if present, ought to focus on helping the client correct the problem, rather than giving debugging information.</t>
          <t>Consumers SHOULD NOT parse the "detail" member for information; extensions are more suitable and less error-prone ways to obtain such information.</t>
        </section>
        <section anchor="instance">
          <name>"instance"</name>
          <t>The "instance" member is a JSON string containing a URI reference that identifies the specific occurrence of the problem.</t>
          <t>When the "instance" URI is dereferenceable, the problem details object can be fetched from it. It might also return information about the problem occurrence in other formats through use of proactive content negotiation (see <xref section="12.5.1" sectionFormat="comma" target="HTTP"/>).</t>
          <t>When the "instance" URI is not dereferenceable, it serves as a unique identifier for the problem occurrence that may be of significance to the server, but is opaque to the client.</t>
          <t>When "instance" contains a relative URI, it is resolved relative to the document's base URI, as per <xref section="5" sectionFormat="comma" target="RFC3986"/>. 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-members">
        <name>Extension Members</name>
        <t>Problem type definitions MAY extend the problem details object with additional members.</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 "Multi-Status" example defines two extensions -- "causes" and "problem-pointer". Extensions like "problem-pointer" are more appropriate to use for problems associated with client side errors 4xx only.</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>Note that because extensions are effectively put into a namespace by the problem type, it is not possible to define new "standard" members without defining a new media type.</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 consider the Security Considerations (<xref target="security-considerations"/>), in particular, the risk of exposing attack vectors by exposing implementation internals through error messages.</t>
      <t>Likewise, truly generic problems -- i.e., conditions that might apply to any resource on the Web -- are usually better expressed as plain status codes. For example, a "write access disallowed" problem is probably unnecessary, since a 403 Forbidden status code in response to a PUT request is self-explanatory.</t>
      <t>Finally, an application might have a more appropriate way to carry an error in a format that it already defines. Problem details are intended to avoid the necessity of establishing new "fault" or "error" document formats, not to replace existing domain-specific formats.</t>
      <t>That said, it is possible to add support for problem details to existing HTTP APIs using HTTP content negotiation (e.g., using the Accept request header to indicate a preference for this format; see <xref section="12.5.1" sectionFormat="comma" target="HTTP"/>).</t>
      <t>New problem type definitions MUST document:</t>
      <ol spacing="normal" type="1"><li>a type URI (typically, with the "http" or "https" scheme),</li>
        <li>a title that appropriately describes it (think short), and</li>
        <li>the HTTP status code for it to be used with.</li>
      </ol>
      <t>Problem type definitions MAY specify the use of the Retry-After response header (<xref section="10.2.3" sectionFormat="comma" target="HTTP"/>) in appropriate circumstances.</t>
      <t>A problem's type URI SHOULD resolve to HTML <xref target="HTML5"/> documentation that explains how to resolve the problem.</t>
      <t>A problem type definition MAY specify additional members on the problem details object. For example, an extension might use typed links <xref target="RFC8288"/> 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="RFC5234"/>) and SHOULD comprise characters from ALPHA, DIGIT (<xref section="B.1" sectionFormat="comma" target="RFC5234"/>), and "_" (so that it can be serialized in formats other than JSON), and they SHOULD be three characters or longer.</t>
      <section anchor="example">
        <name>Example</name>
        <t>For example, if you are publishing an HTTP API to your online shopping cart, you might need to indicate that the user is out of credit (our example from above), and therefore cannot make the purchase.</t>
        <t>If you already have an application-specific format that can accommodate this information, it's probably best to do that. However, if you don't, you might use one of the problem details formats -- JSON if your API is JSON-based, or XML if it uses that format.</t>
        <t>To do so, you might look in the registry (<xref target="registry"/>) for an already-defined type URI that suits your purposes. If one is available, you can reuse that URI.</t>
        <t>If one isn't available, you could mint and document a new type URI (which ought to be under your control and stable over time), an appropriate title and the HTTP status code that it will be used with, along with what it means and how it should be handled.</t>
      </section>
      <section anchor="registry">
        <name>Registered Problem Types</name>
        <t>This specification defines the HTTP Problem Type registry for common, widely-used problem type URIs, to promote reuse.</t>
        <t>The policy for this registry is Specification Required, per <xref section="4.5" sectionFormat="comma" target="RFC8126"/>.</t>
        <t>When evaluating requests, the Expert(s) should consider community feedback, how well-defined the problem type is, and this specification's requirements. Vendor-specific, application-specific, and deployment-specific values are not registrable. Specification documents should be published in a stable, freely available manner (ideally located with a URL), but need not be standards.</t>
        <t>Registrations MAY use the prefix "https://iana.org/assignments/http-problem-types#" for the type URI.</t>
        <t>Registration requests should use the following template:</t>
        <ul spacing="normal">
          <li>Type URI: [a URI for the problem type]</li>
          <li>Title: [a short description of the problem type]</li>
          <li>Recommended HTTP status code: [what status code is most appropriate to use with the type]</li>
          <li>Reference: [to a specification defining the type]</li>
        </ul>
        <t>See the registry at <eref target="https://iana.org/assignments/http-problem-types">https://iana.org/assignments/http-problem-types</eref> for details on where to send registration requests.</t>
        <section anchor="blank">
          <name>about:blank</name>
          <t>This specification registers one Problem Type, "about:blank".</t>
          <ul spacing="normal">
            <li>Type URI: about:blank</li>
            <li>Title: See HTTP Status Code</li>
            <li>Recommended HTTP status code: N/A</li>
            <li>Reference: [this document]</li>
          </ul>
          <t>The "about:blank" URI <xref target="RFC6694"/>, 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 Internet media types registry <xref target="RFC6838"/>. 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="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.  This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet.  The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier.  This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC5234">
          <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="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray">
              <organization/>
            </author>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format.  It was derived from the ECMAScript Programming Language Standard.  JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="Roy T. Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke">
              <organization>greenbytes GmbH</organization>
            </author>
            <date day="12" month="September" year="2021"/>
            <abstract>
              <t>   The Hypertext Transfer Protocol (HTTP) is a stateless application-
   level protocol for distributed, collaborative, hypertext information
   systems.  This document describes the overall architecture of HTTP,
   establishes common terminology, and defines aspects of the protocol
   that are shared by all versions.  In this definition are core
   protocol elements, extensibility mechanisms, and the "http" and
   "https" Uniform Resource Identifier (URI) schemes.

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

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-semantics-19"/>
        </reference>
        <reference anchor="XML" target="https://www.w3.org/TR/2008/REC-xml-20081126">
          <front>
            <title>Extensible Markup Language (XML) 1.0 (Fifth Edition)</title>
            <author fullname="Tim Bray" initials="T." surname="Bray">
              <organization/>
            </author>
            <author fullname="Jean Paoli" initials="J." surname="Paoli">
              <organization/>
            </author>
            <author fullname="Michael Sperberg-McQueen" initials="M." surname="Sperberg-McQueen">
              <organization/>
            </author>
            <author fullname="Eve Maler" initials="E." surname="Maler">
              <organization/>
            </author>
            <author fullname="FranÃ§ois Yergeau" initials="F." surname="Yergeau">
              <organization/>
            </author>
            <date day="26" month="November" year="2008"/>
          </front>
          <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-xml-20081126"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC4918">
          <front>
            <title>HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)</title>
            <author fullname="L. Dusseault" initials="L." role="editor" surname="Dusseault">
              <organization/>
            </author>
            <date month="June" year="2007"/>
            <abstract>
              <t>Web Distributed Authoring and Versioning (WebDAV) consists of a set of methods, headers, and content-types ancillary to HTTP/1.1 for the management of resource properties, creation and management of resource collections, URL namespace manipulation, and resource locking (collision avoidance).</t>
              <t>RFC 2518 was published in February 1999, and this specification obsoletes RFC 2518 with minor revisions mostly due to interoperability experience.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4918"/>
          <seriesInfo name="DOI" value="10.17487/RFC4918"/>
        </reference>
        <reference anchor="RFC8288">
          <front>
            <title>Web Linking</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <date month="October" year="2017"/>
            <abstract>
              <t>This specification defines a model for the relationships between resources on the Web ("links") and the type of those relationships ("link relation types").</t>
              <t>It also defines the serialisation of such links in HTTP headers with the Link header field.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8288"/>
          <seriesInfo name="DOI" value="10.17487/RFC8288"/>
        </reference>
        <reference anchor="RFC6694">
          <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="RFC6838">
          <front>
            <title>Media Type Specifications and Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed">
              <organization/>
            </author>
            <author fullname="J. Klensin" initials="J." surname="Klensin">
              <organization/>
            </author>
            <author fullname="T. Hansen" initials="T." surname="Hansen">
              <organization/>
            </author>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols.  This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="6838"/>
          <seriesInfo name="DOI" value="10.17487/RFC6838"/>
        </reference>
        <reference anchor="RFC6901">
          <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="ISO-19757-2">
          <front>
            <title>Information Technology -- Document Schema Definition Languages (DSDL) -- Part 2: Grammar-based Validation -- RELAX NG</title>
            <author>
              <organization>International Organization for Standardization</organization>
            </author>
            <date year="2003"/>
          </front>
          <seriesInfo name="ISO/IEC" value="19757-2"/>
        </reference>
        <reference anchor="HTML5" target="https://html.spec.whatwg.org">
          <front>
            <title>HTML - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RDFA" target="https://www.w3.org/TR/2015/REC-rdfa-core-20150317">
          <front>
            <title>RDFa Core 1.1 - Third Edition</title>
            <author fullname="Ben Adida" initials="B." surname="Adida">
              <organization/>
            </author>
            <author fullname="Mark Birbeck" initials="M." surname="Birbeck">
              <organization/>
            </author>
            <author fullname="Shane McCarron" initials="S." surname="McCarron">
              <organization/>
            </author>
            <author fullname="Ivan Herman" initials="I." surname="Herman">
              <organization/>
            </author>
            <date day="17" month="March" year="2015"/>
          </front>
          <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-rdfa-core-20150317"/>
        </reference>
        <reference anchor="XSLT" target="https://www.w3.org/TR/2010/REC-xml-stylesheet-20101028">
          <front>
            <title>Associating Style Sheets with XML documents 1.0 (Second Edition)</title>
            <author fullname="James Clark" initials="J." surname="Clark">
              <organization/>
            </author>
            <author fullname="Simon Pieters" initials="S." surname="Pieters">
              <organization/>
            </author>
            <author fullname="Henry Thompson" initials="H." surname="Thompson">
              <organization/>
            </author>
            <date day="28" month="October" year="2010"/>
          </front>
          <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-xml-stylesheet-20101028"/>
        </reference>
        <reference anchor="RFC4151">
          <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="I-D.draft-bhutton-json-schema-00">
          <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">
         </author>
            <author fullname="Greg Dennis" initials="G." surname="Dennis">
         </author>
            <date day="8" month="December" year="2020"/>
            <abstract>
              <t>   JSON Schema defines the media type "application/schema+json", a JSON-
   based format for describing the structure of JSON data.  JSON Schema
   asserts what a JSON document must look like, ways to extract
   information from it, and how to interact with it.  The "application/
   schema-instance+json" media type provides additional feature-rich
   integration with "application/schema+json" beyond what can be offered
   for "application/json" documents.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bhutton-json-schema-00"/>
        </reference>
      </references>
    </references>
    <section anchor="json-schema">
      <name>JSON Schema for HTTP Problems</name>
      <t>This section presents a non-normative JSON Schema <xref target="I-D.draft-bhutton-json-schema-00"/> for HTTP Problem Details. If there is any disagreement between it and the text of the specification, the latter prevails.</t>
      <sourcecode type="json"><![CDATA[
# NOTE: '\' line wrapping per RFC 8792
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "A problem object RFC 7807bis",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "format": "uri-reference",
      "description": "A URI reference RFC3986 that identifies the \
problem type."
    },
    "title": {
      "type": "string",
      "description": "A short, human-readable summary of the \
problem type. It SHOULD NOT change from occurrence to occurrence \
of the problem, except for purposes of localization (e.g., using \
proactive content negotiation; see RFC7231, Section 3.4)"
    },
    "status": {
      "type": "integer",
      "description": "The HTTP status code (RFC7231, Section 6) \
generated by the origin server for this occurrence of the problem.",
      "minimum": 100,
      "maximum": 599
    },
    "detail": {
      "type": "string",
      "description": "A human-readable explanation specific to \
this occurrence of the problem."
    },
    "instance": {
      "type": "string",
      "format": "uri-reference",
      "description": "A URI reference that identifies the \
specific occurrence of the problem. It may or may not yield \
further information if dereferenced."
    }
  }
}
]]></sourcecode>
    </section>
    <section anchor="xml-syntax">
      <name>HTTP Problems and XML</name>
      <t>HTTP-based APIs that use XML <xref target="XML"/> can express problem details using the format defined in this appendix.</t>
      <t>The RELAX NG schema <xref target="ISO-19757-2"/> for the XML format is:</t>
      <sourcecode type="relax-ng-compact-syntax"><![CDATA[
   default namespace ns = "urn:ietf:rfc:7807"

   start = problem

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

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

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

-->

</rfc>
