BigPanda · Schema
MaintenancePlan
A BigPanda maintenance plan for suppressing alerts.
IncidentsMonitoringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Maintenance plan ID. |
| name | string | Maintenance plan name. |
| active | boolean | Whether the maintenance plan is currently active. |
| start | integer | Start Unix timestamp. |
| end | integer | End Unix timestamp. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MaintenancePlan",
"type": "object",
"description": "A BigPanda maintenance plan for suppressing alerts.",
"properties": {
"id": {
"type": "string",
"description": "Maintenance plan ID.",
"example": "mp-abc123"
},
"name": {
"type": "string",
"description": "Maintenance plan name.",
"example": "Weekend Maintenance"
},
"active": {
"type": "boolean",
"description": "Whether the maintenance plan is currently active.",
"example": false
},
"start": {
"type": "integer",
"description": "Start Unix timestamp.",
"example": 1713000000
},
"end": {
"type": "integer",
"description": "End Unix timestamp.",
"example": 1713086400
}
}
}