Datadog · Schema

APIKeyResponse

Response for retrieving an API key.

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
data object
included array Array of objects related to the API key.
View JSON Schema on GitHub

JSON Schema

datadog-api-api-key-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-key-response-schema.json",
  "title": "APIKeyResponse",
  "description": "Response for retrieving an API key.",
  "type": "object",
  "properties": {
    "data": {
      "$ref": "#/components/schemas/FullAPIKey"
    },
    "included": {
      "description": "Array of objects related to the API key.",
      "items": {
        "$ref": "#/components/schemas/APIKeyResponseIncludedItem"
      },
      "type": "array",
      "x-merge-override": {
        "items": false
      }
    }
  }
}