<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.5.8 -->
<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc-ext html-pretty-print="prettyprint https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"?>
<rfc xmlns:x="http://purl.org/net/xml2rfc/ext"
     category="std"
     docName="draft-ietf-httpapi-rfc7807bis-01"
     ipr="trust200902"
     obsoletes="7807"
     submissionType="IETF">
   <x:feedback template="mailto:httpapi@ietf.org?subject={docname},%20%22{section}%22\&amp;amp;body=%3c{ref}%3e:"/>
   <front>
      <title>Problem Details for HTTP APIs</title>
      <author fullname="Mark Nottingham" initials="M." surname="Nottingham">
         <address>
            <postal>
               <postalLine>Prahran</postalLine>
               <postalLine>Australia</postalLine>
            </postal>
            <email>mnot@mnot.net</email>
            <uri>https://www.mnot.net/</uri>
         </address>
      </author>
      <author fullname="Erik Wilde" initials="E." surname="Wilde">
         <address>
            <email>erik.wilde@dret.net</email>
            <uri>http://dret.net/netdret/</uri>
         </address>
      </author>
      <author fullname="Sanjay Dalal" initials="S." surname="Dalal">
         <address>
            <email>sanjay.dalal@cal.berkeley.edu</email>
            <uri>https://github.com/sdatspun2</uri>
         </address>
      </author>
      <date year="2021" month="October" day="13"/>
      <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" as a way 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>
   </front>
   <middle>
      <section anchor="introduction">
         <name>Introduction</name>
         <t>HTTP <xref target="HTTP"/> status codes are sometimes not sufficient to convey enough information about an error to be helpful. While humans behind Web browsers can be informed about the nature of the problem with an HTML <xref target="HTML5"/> response body, non-human consumers of so-called "HTTP APIs" are usually not.</t>
         <t>This specification defines simple JSON <xref target="RFC8259"/> and XML <xref target="XML"/> document formats to suit this purpose. They are designed to be reused by HTTP APIs, which can identify distinct "problem types" specific to their needs.</t>
         <t>Thus, API clients can be informed of both the high-level error class (using the status code) and the finer-grained details of the problem (using one of these formats).</t>
         <t>For example, consider a response that indicates that the client's account doesn't have enough credit. The 403 Forbidden status code might be deemed most appropriate to use, as it will inform HTTP-generic software (such as client libraries, caches, and proxies) of the general semantics of the response.</t>
         <t>However, that doesn't give the API client enough information about why the request was forbidden, the applicable account balance, or how to correct the problem. If these details are included in the response body in a machine-readable format, the client can treat it appropriately; for example, triggering a transfer of more credit into the account.</t>
         <t>This specification does this by identifying a specific type of problem (e.g., "out of credit") with a URI <xref target="RFC3986"/>; HTTP APIs can do this by nominating new URIs under their control, or by reusing existing ones.</t>
         <t>Additionally, problem details can contain other information, such as a URI that identifies the specific occurrence of the problem (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 formatted as a JSON document, it uses the "application/problem+json" media type. <xref target="xml-syntax"/> defines how to express them in 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 accommodate describing the relevant details in that application's format. Likewise, in many situations, there is an appropriate HTTP status code that does not require extra detail to be conveyed.</t>
         <t>Instead, the aim of this specification is to define common error formats for those 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>
         <figure>
            <sourcecode type="http-message">
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>
         </figure>
         <t>Here, the out-of-credit problem (identified by its type URI) indicates the reason for the 403 in "title", gives a reference for the specific problem occurrence with "instance", gives occurrence-specific details in "detail", and adds two extensions; "balance" conveys the account's balance, and "accounts" gives links where the account can be topped up.</t>
         <t>The ability to convey problem-specific extensions allows more than one problem to be conveyed. For example:</t>
         <figure>
            <sourcecode type="http-message">
HTTP/1.1 400 Bad Request
Content-Type: application/problem+json
Content-Language: en

{
"type": "https://example.net/validation-error",
"title": "Your request parameters didn't validate.",
"invalid_params": [ {
                      "name": "age",
                      "reason": "must be a positive integer"
                    },
                    {
                      "name": "color",
                      "reason": "must be 'green', 'red' or 'blue'"}
                  ]
}
</sourcecode>
         </figure>
         <t>Note that this requires each of the subproblems to be similar enough to use the same HTTP status code. If they do not, the 207 (Multi-Status) code <xref target="RFC4918"/> could be used to encapsulate multiple status messages.</t>
         <section anchor="members">
            <name>Members of a Problem Details Object</name>
            <t>Problem detail objects can have the following members. If the type of a member's value 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) as the primary identifier for the problem type.</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 in the course of 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>
               <figure>
                  <artwork>
tag:mnot@mnot.net,2021-09-17:OutOfLuck
</artwork>
               </figure>
               <t>Non-resolvable URIs ought not be used when there is some future possibility that it might become desireable to do so. For example, if the URI above were used in an API and later a tool was adopted that resolves type URIs to discover information about the error, taking advantage of that capability would require switching to a resolvable URI, thereby 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"><?aug-anchor status.codes?><?aug-title Status Codes?></xref>) 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 purposes of localization (e.g., using proactive content negotiation; see <xref section="12.1" sectionFormat="comma" target="HTTP"><?aug-anchor proactive.negotiation?><?aug-title Proactive Negotiation?></xref>).</t>
               <t>The "title" string is advisory and included only for users who are not aware of the semantics of the URI and do not have the ability to discover them (e.g., 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"><?aug-anchor field.accept?><?aug-title Accept?></xref>).</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>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 could potentially 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"><?aug-anchor field.accept?><?aug-title Accept?></xref>).</t>
         <t>New problem type definitions MUST document:</t>
         <t>
            <list style="numbers">
               <t>a type URI (typically, with the "http" or "https" scheme),</t>
               <t>a title that appropriately describes it (think short), and</t>
               <t>the HTTP status code for it to be used with.</t>
            </list>
         </t>
         <t>Problem type definitions MAY specify the use of the Retry-After response header (<xref section="10.2.3" sectionFormat="comma" target="HTTP"><?aug-anchor field.retry-after?><?aug-title Retry-After?></xref>) 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 can be used by machines 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 consist of 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 consider using 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 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>
            <t>In summary: an instance URI will always identify a specific occurrence of a problem. On the other hand, type URIs can be reused if an appropriate description of a problem type is already available someplace else, or they can be created for new problem types.</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>Registration requests are reviewed and approved by a Designated Expert, as per <xref section="4.5" sectionFormat="comma" target="RFC8126"/>. A specification document is appreciated, but not required.</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.</t>
            <t>Registrations MAY use the prefix "https://iana.org/assignments/http-problem-types#", and are encouraged to do so when a stable, neutral URI is desirable.</t>
            <t>Registration requests should use the following template:</t>
            <t>
               <list style="symbols">
                  <t>Type URI: [a URI for the problem type]</t>
                  <t>Title: [a short description of the problem type]</t>
                  <t>Recommended HTTP status code: [what status code is most appropriate to use with the type]</t>
                  <t>Reference: [to a specification defining the type]</t>
               </list>
            </t>
            <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>
               <t>
                  <list style="symbols">
                     <t>Type URI: about:blank</t>
                     <t>Title: See HTTP Status Code</t>
                     <t>Recommended HTTP status code: N/A</t>
                     <t>Reference: [this document]</t>
                  </list>
               </t>
               <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, thereby 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 modified the HTTP status code in transit (e.g., by a proxy or cache).</t>
         <t>As such, those defining problem types as well as generators and consumers of problems need to be aware that generic 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 title="Normative References">
         <reference anchor="RFC2119">
            <front>
               <title>Key words for use in RFCs to Indicate Requirement Levels</title>
               <author fullname="S. Bradner" initials="S." surname="Bradner"/>
               <date month="March" year="1997"/>
            </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"/>
               <author fullname="R. Fielding" initials="R." surname="Fielding"/>
               <author fullname="L. Masinter" initials="L." surname="Masinter"/>
               <date month="January" year="2005"/>
            </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"/>
               <author fullname="P. Overell" initials="P." surname="Overell"/>
               <date month="January" year="2008"/>
            </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"/>
               <author fullname="B. Leiba" initials="B." surname="Leiba"/>
               <author fullname="T. Narten" initials="T." surname="Narten"/>
               <date month="June" year="2017"/>
            </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"/>
               <date month="December" year="2017"/>
            </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"/>
            </front>
            <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-semantics-19"/>
            <x:source basename="draft-ietf-httpbis-semantics-19"
                      href="draft-ietf-httpbis-semantics-19.xml"/>
         </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"/>
               <author fullname="Jean Paoli" initials="J." surname="Paoli"/>
               <author fullname="Michael Sperberg-McQueen"
                       initials="M."
                       surname="Sperberg-McQueen"/>
               <author fullname="Eve Maler" initials="E." surname="Maler"/>
               <author fullname="FranÃ§ois Yergeau" initials="F." surname="Yergeau"/>
               <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"/>
               <date month="May" year="2017"/>
            </front>
            <seriesInfo name="BCP" value="14"/>
            <seriesInfo name="RFC" value="8174"/>
            <seriesInfo name="DOI" value="10.17487/RFC8174"/>
         </reference>
      </references>
      <references title="Informative References">
         <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"/>
               <date month="June" year="2007"/>
            </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"/>
               <date month="October" year="2017"/>
            </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"/>
               <date month="August" year="2012"/>
            </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"/>
               <author fullname="J. Klensin" initials="J." surname="Klensin"/>
               <author fullname="T. Hansen" initials="T." surname="Hansen"/>
               <date month="January" year="2013"/>
            </front>
            <seriesInfo name="BCP" value="13"/>
            <seriesInfo name="RFC" value="6838"/>
            <seriesInfo name="DOI" value="10.17487/RFC6838"/>
         </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 year="n.d."/>
            </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"/>
               <author fullname="Mark Birbeck" initials="M." surname="Birbeck"/>
               <author fullname="Shane McCarron" initials="S." surname="McCarron"/>
               <author fullname="Ivan Herman" initials="I." surname="Herman"/>
               <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"/>
               <author fullname="Simon Pieters" initials="S." surname="Pieters"/>
               <author fullname="Henry Thompson" initials="H." surname="Thompson"/>
               <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"/>
               <author fullname="S. Hawke" initials="S." surname="Hawke"/>
               <date month="October" year="2005"/>
            </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 fullname="Henry Andrews" initials="H." surname="Andrews"/>
               <author fullname="Ben Hutton" initials="B." surname="Hutton"/>
               <author fullname="Greg Dennis" initials="G." surname="Dennis"/>
               <date day="8" month="December" year="2020"/>
            </front>
            <seriesInfo name="Internet-Draft" value="draft-bhutton-json-schema-00"/>
         </reference>
      </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>
         <figure>
            <sourcecode type="json">
# 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>
         </figure>
      </section>
      <section anchor="xml-syntax">
         <name>HTTP Problems and XML</name>
         <t>Some HTTP-based APIs use XML <xref target="XML"/> as their primary format convention. Such APIs 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 as follows. Keep in mind that this schema is only meant as documentation, and not as a normative schema that captures all constraints of the XML format. Also, it would be possible to use other XML schema languages to define a similar set of constraints (depending on the features of the chosen schema language).</t>
         <figure>
            <sourcecode type="relax-ng-compact-syntax">
   default namespace ns = "urn:ietf:rfc:7807"

   start = problem

   problem =
     element problem {
       (  element  type            { xsd:anyURI }?
        &amp; element  title           { xsd:string }?
        &amp; element  detail          { xsd:string }?
        &amp; element  status          { xsd:positiveInteger }?
        &amp; element  instance        { xsd:anyURI }? ),
       anyNsElement
     }

   anyNsElement =
     (  element    ns:*  { anyNsElement | text }
      | attribute  *     { text })*
</sourcecode>
         </figure>
         <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>
         <figure>
            <sourcecode type="http-message">
HTTP/1.1 403 Forbidden
Content-Type: application/problem+xml
Content-Language: en

&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;problem xmlns="urn:ietf:rfc:7807"&gt;
  &lt;type&gt;https://example.com/probs/out-of-credit&lt;/type&gt;
  &lt;title&gt;You do not have enough credit.&lt;/title&gt;
  &lt;detail&gt;Your current balance is 30, but that costs 50.&lt;/detail&gt;
  &lt;instance&gt;https://example.net/account/12345/msgs/abc&lt;/instance&gt;
  &lt;balance&gt;30&lt;/balance&gt;
  &lt;accounts&gt;
    &lt;i&gt;https://example.net/account/12345&lt;/i&gt;
    &lt;i&gt;https://example.net/account/67890&lt;/i&gt;
  &lt;/accounts&gt;
&lt;/problem&gt;
</sourcecode>
         </figure>
         <t>Note that this format uses an XML namespace. This is 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>
         <figure>
            <sourcecode type="html">
&lt;script type="application/problem+json"&gt;
  {
   "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"]
  }
&lt;/script&gt;
</sourcecode>
         </figure>
         <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="acknowledgements" numbered="false">
         <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>
</rfc>
