Datadog · Schema

APIErrorResponse

API error response.

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
errors array A list of errors.
View JSON Schema on GitHub

JSON Schema

datadog-api-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-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"
  ]
}