Datadog · Schema

Creator

Information about the user who created the monitor

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
id integer The unique numeric ID of the creator user
name string The display name of the creator user
email string The email address of the creator user
handle string The Datadog handle (username) of the creator user
View JSON Schema on GitHub

JSON Schema

datadog-monitors-creator-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-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": "[email protected]"
    },
    "handle": {
      "type": "string",
      "description": "The Datadog handle (username) of the creator user",
      "example": "example_value"
    }
  }
}