IncidentCollection

Paginated collection of incidents.

Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle

Properties

Name Type Description
items array
totalCount integer Total number of incidents matching the query.
limit integer
offset integer
hasMore boolean
View JSON Schema on GitHub

JSON Schema

oracle-enterprise-manager-cloud-control-incident-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "IncidentCollection",
  "type": "object",
  "description": "Paginated collection of incidents.",
  "properties": {
    "items": {
      "type": "array"
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of incidents matching the query."
    },
    "limit": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "hasMore": {
      "type": "boolean"
    }
  }
}