maintenance-status

APIs.ioEngineeringPlatform

Properties

Name Type Description
status string
scheduled_time string
connection_services array
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-maintenance-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/maintenance-status",
  "title": "maintenance-status",
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "scheduled_time": {
      "type": "string"
    },
    "connection_services": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "number": {
            "type": "integer"
          }
        },
        "required": [
          "name",
          "number"
        ]
      }
    }
  }
}