Datadog · Schema

APIKeyCreateData

Object used to create an API key.

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
attributes object
type object
View JSON Schema on GitHub

JSON Schema

datadog-api-api-key-create-data-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-create-data-schema.json",
  "title": "APIKeyCreateData",
  "description": "Object used to create an API key.",
  "type": "object",
  "properties": {
    "attributes": {
      "$ref": "#/components/schemas/APIKeyCreateAttributes"
    },
    "type": {
      "$ref": "#/components/schemas/APIKeysType"
    }
  },
  "required": [
    "attributes",
    "type"
  ]
}