OpsGenie · Schema

ListSchedulesResponse

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
data array List of schedules.
expandable array Expandable fields.
took number Time taken in seconds.
requestId string Unique identifier for the request.
View JSON Schema on GitHub

JSON Schema

opsgenie-listschedulesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListSchedulesResponse",
  "title": "ListSchedulesResponse",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Schedule"
      },
      "description": "List of schedules."
    },
    "expandable": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Expandable fields."
    },
    "took": {
      "type": "number",
      "description": "Time taken in seconds."
    },
    "requestId": {
      "type": "string",
      "description": "Unique identifier for the request."
    }
  }
}