OpsGenie · Schema

Responder

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
id string ID of the responder.
name string Name of the responder (for teams and schedules).
username string Username of the responder (for users).
type string Type of the responder entity.
View JSON Schema on GitHub

JSON Schema

opsgenie-responder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Responder",
  "title": "Responder",
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the responder."
    },
    "name": {
      "type": "string",
      "description": "Name of the responder (for teams and schedules)."
    },
    "username": {
      "type": "string",
      "description": "Username of the responder (for users)."
    },
    "type": {
      "type": "string",
      "enum": [
        "team",
        "user",
        "escalation",
        "schedule"
      ],
      "description": "Type of the responder entity."
    }
  }
}