OpsGenie · Schema

ListAlertsResponse

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
data array List of alerts.
paging object
took number Time taken to process the request in seconds.
requestId string Unique identifier for the request.
View JSON Schema on GitHub

JSON Schema

opsgenie-listalertsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListAlertsResponse",
  "title": "ListAlertsResponse",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Alert"
      },
      "description": "List of alerts."
    },
    "paging": {
      "$ref": "#/components/schemas/Paging"
    },
    "took": {
      "type": "number",
      "description": "Time taken to process the request in seconds."
    },
    "requestId": {
      "type": "string",
      "description": "Unique identifier for the request."
    }
  }
}