{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-schema/datadog-events-api-error-response-schema.json", "title": "APIErrorResponse", "description": "Standard API error response returned for failed requests", "type": "object", "properties": { "errors": { "type": "array", "description": "List of error messages describing the failure", "items": { "type": "string" } } }, "required": [ "errors" ] }