OpsGenie · Schema

ListUserEscalationsResponse

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
data array List of escalations the user belongs to.
took number Time taken in seconds.
requestId string Unique identifier for the request.
View JSON Schema on GitHub

JSON Schema

opsgenie-listuserescalationsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListUserEscalationsResponse",
  "title": "ListUserEscalationsResponse",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Escalation ID."
          },
          "name": {
            "type": "string",
            "description": "Escalation name."
          }
        }
      },
      "description": "List of escalations the user belongs to."
    },
    "took": {
      "type": "number",
      "description": "Time taken in seconds."
    },
    "requestId": {
      "type": "string",
      "description": "Unique identifier for the request."
    }
  }
}