OpsGenie · Schema

Paging

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
next string URL for the next page of results.
first string URL for the first page of results.
last string URL for the last page of results.
View JSON Schema on GitHub

JSON Schema

opsgenie-paging-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Paging",
  "title": "Paging",
  "type": "object",
  "properties": {
    "next": {
      "type": "string",
      "description": "URL for the next page of results."
    },
    "first": {
      "type": "string",
      "description": "URL for the first page of results."
    },
    "last": {
      "type": "string",
      "description": "URL for the last page of results."
    }
  }
}