A JSONAPI-formatted error message.
Array of objects |
{- "errors": [
- {
- "id": "string",
- "status": "string",
- "code": "string",
- "title": "string",
- "detail": "string",
- "source": {
- "pointer": "string",
- "header": "string",
- "parameter": "string"
}
}
]
}
An RFC7807 'Problem Detail' formatted error message.
error required | string Default: "something went wrong!" |
status required | number The HTTP status code of the error. |
type required | string Type is a URI used to uniquely identify the type of error. |
title required | string Title is a human-readable summary that explains the |
detail | string The general, human-readable error message. |
instance | string The unique identifier (ID) for this specific error. |
{- "error": "something went wrong!",
- "status": 0,
- "type": "string",
- "title": "string",
- "detail": "string",
- "instance": "string"
}
An RFC7807 'Problem Detail' formatted error message.
error required | string Default: "something went wrong!" |
status required | number Default: 422 The HTTP status code of the error. |
type required | string Default: "https://api.honeycomb.io/problems/validation-failed" Type is a URI used to uniquely identify the type of error. |
title required | string Default: "The provided input is invalid." Title is a human-readable summary that explains the |
detail | string The general, human-readable error message. |
instance | string The unique identifier (ID) for this specific error. |
Array of objects |
{- "error": "something went wrong!",
- "status": 422,
- "title": "The provided input is invalid.",
- "detail": "string",
- "instance": "string",
- "type_detail": [
- {
- "field": "string",
- "code": "invalid",
- "description": "string"
}
]
}