OpsGenie · Schema

ListServicesResponse

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

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

JSON Schema

opsgenie-listservicesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListServicesResponse",
  "title": "ListServicesResponse",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Service"
      },
      "description": "List of services."
    },
    "paging": {
      "type": "object",
      "properties": {
        "next": {
          "type": "string",
          "description": "URL for the next page."
        },
        "first": {
          "type": "string",
          "description": "URL for the first page."
        }
      }
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of services."
    },
    "took": {
      "type": "number",
      "description": "Time taken in seconds."
    },
    "requestId": {
      "type": "string",
      "description": "Unique identifier for the request."
    }
  }
}