BigPanda · Schema

MaintenancePlanRequest

Payload for creating a maintenance plan.

IncidentsMonitoringPlatform

Properties

Name Type Description
name string Maintenance plan name.
condition string Filter condition for hosts in maintenance.
start integer Start Unix timestamp.
end integer End Unix timestamp.
View JSON Schema on GitHub

JSON Schema

bigpanda-maintenance-plan-request-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MaintenancePlanRequest",
  "type": "object",
  "description": "Payload for creating a maintenance plan.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Maintenance plan name.",
      "example": "Weekend Maintenance"
    },
    "condition": {
      "type": "string",
      "description": "Filter condition for hosts in maintenance.",
      "example": "host = \"production-database-1\""
    },
    "start": {
      "type": "integer",
      "description": "Start Unix timestamp.",
      "example": 1713000000
    },
    "end": {
      "type": "integer",
      "description": "End Unix timestamp.",
      "example": 1713086400
    }
  },
  "required": [
    "name",
    "condition",
    "start",
    "end"
  ]
}