{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NotFoundResponse", "title": "NotFoundResponse", "type": "object", "x-apideck-schema-id": "NotFound", "properties": { "status_code": { "type": "number", "description": "HTTP status code", "example": 404 }, "error": { "type": "string", "description": "Contains an explanation of the status_code as defined in HTTP/1.1 standard (RFC 7231)", "example": "Not Found" }, "type_name": { "type": "string", "description": "The type of error returned", "example": "EntityNotFoundError" }, "message": { "type": "string", "description": "A human-readable message providing more details about the error.", "example": "Unknown Widget", "x-speakeasy-error-message": true }, "detail": { "anyOf": [ { "type": "string", "example": "Could not find widget with id: '123'" }, { "type": "object", "x-speakeasy-detail": true, "example": { "not_found": { "entity": "widget", "id": "123" } } } ], "description": "Contains parameter or domain specific information related to the error and why it occurred." }, "ref": { "type": "string", "description": "Link to documentation of error type", "example": "https://developers.apideck.com/errors#entitynotfounderror" } } }