OpsGenie · Schema

CountAlertsResponse

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
data 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-countalertsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CountAlertsResponse",
  "title": "CountAlertsResponse",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "count": {
          "type": "integer",
          "description": "Count of alerts matching the query."
        }
      }
    },
    "took": {
      "type": "number",
      "description": "Time taken to process the request in seconds."
    },
    "requestId": {
      "type": "string",
      "description": "Unique identifier for the request."
    }
  }
}