OpsGenie · Schema

EscalateAlertRequest

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
escalation object
user string Display name of the request owner.
source string Source of the escalation action.
note string Additional note to add with the escalation.
View JSON Schema on GitHub

JSON Schema

opsgenie-escalatealertrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EscalateAlertRequest",
  "title": "EscalateAlertRequest",
  "type": "object",
  "required": [
    "escalation"
  ],
  "properties": {
    "escalation": {
      "$ref": "#/components/schemas/Responder"
    },
    "user": {
      "type": "string",
      "description": "Display name of the request owner."
    },
    "source": {
      "type": "string",
      "description": "Source of the escalation action."
    },
    "note": {
      "type": "string",
      "description": "Additional note to add with the escalation."
    }
  }
}