OpsGenie · Schema

UpdateTeamRequest

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
name string Updated name for the team.
description string Updated description.
members array Updated list of team members.
View JSON Schema on GitHub

JSON Schema

opsgenie-updateteamrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateTeamRequest",
  "title": "UpdateTeamRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Updated name for the team."
    },
    "description": {
      "type": "string",
      "description": "Updated description."
    },
    "members": {
      "type": "array",
      "description": "Updated list of team members.",
      "items": {
        "$ref": "#/components/schemas/TeamMember"
      }
    }
  }
}