OpsGenie · Schema

CreateTeamRequest

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
name string Name of the team.
description string Description of the team.
members array List of team members with their roles.
View JSON Schema on GitHub

JSON Schema

opsgenie-createteamrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateTeamRequest",
  "title": "CreateTeamRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the team."
    },
    "description": {
      "type": "string",
      "description": "Description of the team."
    },
    "members": {
      "type": "array",
      "description": "List of team members with their roles.",
      "items": {
        "$ref": "#/components/schemas/TeamMember"
      }
    }
  }
}