{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-schema/datadog-monitors-creator-schema.json", "title": "Creator", "description": "Information about the user who created the monitor", "type": "object", "properties": { "id": { "type": "integer", "description": "The unique numeric ID of the creator user", "example": 42 }, "name": { "type": "string", "description": "The display name of the creator user", "example": "Example Monitor" }, "email": { "type": "string", "format": "email", "description": "The email address of the creator user", "example": "user@example.com" }, "handle": { "type": "string", "description": "The Datadog handle (username) of the creator user", "example": "example_value" } } }