Request body for updating an existing incident team
{ "$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-update-request-schema.json", "title": "IncidentTeamUpdateRequest", "description": "Request body for updating an existing incident team", "type": "object", "properties": { "data": { "type": "object", "description": "The incident team update data", "required": [ "type", "id", "attributes" ], "properties": { "type": { "type": "string", "description": "The resource type identifier for incident teams", "enum": [ "teams" ] }, "id": { "type": "string", "description": "The unique ID of the incident team to update" }, "attributes": { "type": "object", "description": "The updated incident team attributes", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "The updated name for the incident team" } } } } } }, "required": [ "data" ] }