Datadog · Schema

APIErrorResponse

Standard API error response returned for failed requests

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
errors array List of error messages describing the failure
View JSON Schema on GitHub

JSON Schema

datadog-events-api-error-response-schema.json Raw ↑
{
  "$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"
  ]
}