Attributes used to update an API Key.
{ "$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-update-attributes-schema.json", "title": "APIKeyUpdateAttributes", "description": "Attributes used to update an API Key.", "type": "object", "properties": { "category": { "description": "The APIKeyUpdateAttributes 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 APIKeyUpdateAttributes remote_config_read_enabled.", "type": "boolean", "example": true } }, "required": [ "name" ] }