OpsGenie · Schema

Team

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
id string Unique identifier of the team.
name string Name of the team.
description string Description of the team.
members array Members of the team.
links object Related links.
View JSON Schema on GitHub

JSON Schema

opsgenie-team-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Team",
  "title": "Team",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the team."
    },
    "name": {
      "type": "string",
      "description": "Name of the team."
    },
    "description": {
      "type": "string",
      "description": "Description of the team."
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TeamMember"
      },
      "description": "Members of the team."
    },
    "links": {
      "type": "object",
      "properties": {
        "web": {
          "type": "string",
          "format": "uri",
          "description": "URL to the team dashboard in the OpsGenie web UI."
        },
        "api": {
          "type": "string",
          "format": "uri",
          "description": "API URL for this team."
        }
      },
      "description": "Related links."
    }
  }
}