SolarWinds · Schema

MaintenanceList

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
maintenance array
View JSON Schema on GitHub

JSON Schema

solarwinds-maintenancelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MaintenanceList",
  "title": "MaintenanceList",
  "type": "object",
  "properties": {
    "maintenance": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "description": {
            "type": "string"
          },
          "from": {
            "type": "integer"
          },
          "to": {
            "type": "integer"
          },
          "checks": {
            "type": "object"
          }
        }
      },
      "example": []
    }
  }
}