Datadog · JSON Structure

Datadog Monitors Creator Structure

Information about the user who created the monitor

Type: object Properties: 4
AnalyticsDashboardsMonitoringPlatformT1Visualizations

Creator is a JSON Structure definition published by Datadog, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name email handle

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-structure/datadog-monitors-creator-structure.json",
  "name": "Creator",
  "description": "Information about the user who created the monitor",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "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"
    }
  }
}