Skip to main content

Introduction to Problem Details

Describing problems in software engineering is just as hard as naming things. Specific ecosystems report things that go wrong differently. For example, we’ve HTTP response status codes to express client and server errors. However, such error codes may not be sufficient to describe the underlying issue that caused the error. The Problem Details specification proposes a standard way to describe such errors using JSON or XML.

Problem Details specification

The Problem Details specification consists of

Problem Details object

A Problem Details object can have the following standard fields.

The type and instance URLs can be absolute or relative. Depending on the need, the Problem Details object can be extended to include more fields and even nested Problem Details objects.

Representations of Problem Details object

JSON is the canonical representation for a Problem Details object with application/problem+json media type. Alternatively, XML can also represent it with application/problem+xml media type.

The specification doesn’t have opinions on any other format. You can convert the JSON or XML representations to the format of your choice if such a conversion is possible. Alternatively, you can embed the JSON or XML representations in the response (such as HTML document). There are no standard media types for other formats.

Examples

Minimal response with HTTP status

json
HTTP/1.1 403 Forbidden
Content-Type: application/problem+json

{
	"type": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/403",
	"title": "Forbidden",
	"status": 403
}

For minimal responses, the title should be the description of the HTTP status code documented here.

Rich response with additional details

json
HTTP/1.1 400 Bad Request
Content-Type: application/problem+json

{
	"type": "https://example.com/problems/constraint-violation/",
	"title": "The input violated a constraint.",
	"status": 400,
	"detail": "Uploaded onboarding policy is larger than the acceptable legal limit of 7000 characters.",
	"instance": "https://example.com/problems/onboarding-policy#legal-limits"
}

Extended Problem Details with custom fields

json
HTTP/1.1 400 Bad Request
Content-Type: application/problem+json

{
	"type": "https://example.com/problems/constraint-violation/",
	"title": "The input violated a constraint.",
	"status": 400,
	"detail": "Uploaded onboarding policy is larger than the acceptable legal limit of 7000 characters.",
	"instance": "https://example.com/problems/onboarding-policy#legal-limits",
	"violations": [
		{
			"constraint": "length",
			"field": "onboarding_policy",
			"violation": "exceeded 7000 characters"
		}
	]
}

Nested Problem Details for multiple problems

json
HTTP/1.1 500 Internal Server Error
Content-Type: application/problem+json

{
	"type": "https://example.com/problems/integration-failure/",
	"title": "An internal integration failed.",
	"status": 500,
	"detail": "Failed to receive full response from the payment processor because the bank didn't respond within 5 minutes.",
	"instance": "https://example.com/problems/integration-failure/#partial-response-failures",
	"problems": [
		{
			"type": "https://example.com/problems/payment-processing/",
			"title": "The payment processing was interrupted.",
			"status": 500,
			"detail": "Payment processing failed because the transaction was not completed within 5 minutes.",
			"instance": "https://example.com/problems/payment-processing#interrupts"
		},
		{
			"type": "https://example.com/problems/transaction-timeout/",
			"title": "The transaction timed out.",
			"status": 500,
			"detail": "The banking gateway failed to commit the transaction within 5 minutes.",
			"instance": "https://example.com/problems/transaction-timeout/62591"
		}
	]
}

XML representation

xml
HTTP/1.1 403 Forbidden
Content-Type: application/problem+xml

<?xml version="1.0" encoding="UTF-8"?>
<problem xmlns="urn:ietf:rfc:7807">
	<type>https://example.com/problems/expired-payment-details/</type>
	<status>403</status>
	<title>Your default payment method has expired.</title>
	<detail>Configure an active payment method to book a ride.</detail>
	<instance>https://example.com/problems/payment-options/us/2022/</instance>
</problem>

TOML representation

toml
HTTP/1.1 403 Forbidden
Content-Type: application/toml

[problem]
type = "https://example.com/problems/expired-payment-details/"
status = 403
title = "Your default payment method has expired."
detail = "Configure an active payment method to book a ride."
instance = "https://example.com/problems/payment-options/us/2022/"

Note that this is just a converted representation of XML Problem Detail. The Content-Type is the usual application/toml since there’s no recommended media type for the TOML Problem Details object.

Adoption and support

Problem Details has gained support from popular frameworks and libraries.


Related