API error response.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-schema/datadog-api-api-error-response-schema.json", "title": "APIErrorResponse", "description": "API error response.", "type": "object", "properties": { "errors": { "description": "A list of errors.", "example": [ "Bad Request" ], "items": { "description": "A list of items.", "example": "Bad Request", "type": "string" }, "type": "array" } }, "required": [ "errors" ] }