Extended error details specifically for bad request (400) errors. This builds on the BaseError structure by adding an array of individual validation errors, making it easy to identify and fix multiple issues at once.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BadRequestErrorDetails",
"title": "BadRequestErrorDetails",
"allOf": [
{
"$ref": "#/components/schemas/BaseError"
},
{
"type": "object",
"properties": {
"errors": {
"description": "List of individual validation errors that occurred in the request. Each error provides specific details about what failed validation, where the error occurred in the request, and suggestions for fixing it. This granular information helps developers quickly identify and resolve multiple issues in a single request without having to make repeated API calls.",
"items": {
"$ref": "#/components/schemas/ValidationError"
},
"type": "array"
}
},
"required": [
"errors"
]
}
],
"description": "Extended error details specifically for bad request (400) errors. This builds on the BaseError structure by adding an array of individual validation errors, making it easy to identify and fix multiple issues at once."
}
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we
store it to create your key and to recognise you if you sign in with another
provider. See our Privacy Policy and
Terms.