BlackoutCollection

Paginated collection of blackouts.

Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle

Properties

Name Type Description
items array
totalCount integer
limit integer
offset integer
hasMore boolean
View JSON Schema on GitHub

JSON Schema

oracle-enterprise-manager-blackoutcollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BlackoutCollection",
  "title": "BlackoutCollection",
  "type": "object",
  "description": "Paginated collection of blackouts.",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Blackout"
      },
      "example": []
    },
    "totalCount": {
      "type": "integer",
      "example": 10
    },
    "limit": {
      "type": "integer",
      "example": 10
    },
    "offset": {
      "type": "integer",
      "example": 10
    },
    "hasMore": {
      "type": "boolean",
      "example": true
    }
  }
}