Skip to main content

ErrorResponse

Standard error envelope returned by all error responses

statusinteger

HTTP status code

Example: 404
errorstring

HTTP status reason phrase

Example: Not Found
messagestring

Human-readable error description

Example: No spec found with id 'acme-payments-v2'
pathstring

Request path that produced the error

Example: /api/v1/specs/acme-payments-v2
ErrorResponse
{
"status": 404,
"error": "Not Found",
"message": "No spec found with id 'acme-payments-v2'",
"path": "/api/v1/specs/acme-payments-v2"
}