Datadog · Schema

IncidentTeamCreateRequest

Request body for creating a new incident team

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
data object The incident team creation data
View JSON Schema on GitHub

JSON Schema

datadog-incidents-incident-team-create-request-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-incidents-incident-team-create-request-schema.json",
  "title": "IncidentTeamCreateRequest",
  "description": "Request body for creating a new incident team",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "description": "The incident team creation data",
      "required": [
        "type",
        "attributes"
      ],
      "properties": {
        "type": {
          "type": "string",
          "description": "The resource type identifier for incident teams",
          "enum": [
            "teams"
          ]
        },
        "attributes": {
          "type": "object",
          "description": "The incident team attributes",
          "required": [
            "name"
          ],
          "properties": {
            "name": {
              "type": "string",
              "description": "The name of the incident team for display and identification"
            }
          }
        }
      }
    }
  },
  "required": [
    "data"
  ]
}