Datadog · Schema

APIKeyCreateAttributes

Attributes used to create an API Key.

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
category string The APIKeyCreateAttributes category.
name string Name of the API key.
remote_config_read_enabled boolean The APIKeyCreateAttributes remote_config_read_enabled.
View JSON Schema on GitHub

JSON Schema

datadog-api-api-key-create-attributes-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-attributes-schema.json",
  "title": "APIKeyCreateAttributes",
  "description": "Attributes used to create an API Key.",
  "type": "object",
  "properties": {
    "category": {
      "description": "The APIKeyCreateAttributes category.",
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "description": "Name of the API key.",
      "example": "API Key for submitting metrics",
      "type": "string"
    },
    "remote_config_read_enabled": {
      "description": "The APIKeyCreateAttributes remote_config_read_enabled.",
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "name"
  ]
}