changedInput schema / properties / body / properties / affectedComponents / anyOf
Previous value: -[
- {
- "items": {
- "additionalProperties": false,
- "properties": {
- "componentId": {
- "description": "Status page component ID",
- "format": "uuid",
- "type": "string"
- },
- "status": {
- "description": "Component status during this incident",
- "enum": [
- "OPERATIONAL",
- "DEGRADED_PERFORMANCE",
- "PARTIAL_OUTAGE",
- "MAJOR_OUTAGE",
- "UNDER_MAINTENANCE"
- ],
- "type": "string"
- }
- },
- "required": [
- "componentId",
- "status"
- ],
- "type": "object"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "items": {
+ "properties": {
+ "componentId": {
+ "description": "Status page component ID",
+ "format": "uuid",
+ "type": "string"
+ },
+ "status": {
+ "description": "Component status during this incident",
+ "enum": [
+ "OPERATIONAL",
+ "DEGRADED_PERFORMANCE",
+ "PARTIAL_OUTAGE",
+ "MAJOR_OUTAGE",
+ "UNDER_MAINTENANCE"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "componentId",
+ "status"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
removedInput schema / properties / body / properties / autoResolve
Removed value: -{
- "anyOf": [
- {
- "type": "boolean"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Auto-resolve at scheduledUntil (default: false)"
-}
addedInput schema / properties / body / properties / monitoringIncidentId
Added value: +{
+ "anyOf": [
+ {
+ "format": "uuid",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Monitoring incident ID to link this status page incident to; null for standalone"
+}
removedInput schema / properties / body / properties / scheduled
Removed value: -{
- "anyOf": [
- {
- "type": "boolean"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Whether this is a scheduled maintenance (default: false)"
-}
removedInput schema / properties / body / properties / scheduledFor
Removed value: -{
- "anyOf": [
- {
- "format": "date-time",
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Maintenance start time (required when scheduled=true)"
-}
removedInput schema / properties / body / properties / scheduledUntil
Removed value: -{
- "anyOf": [
- {
- "format": "date-time",
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Maintenance end time"
-}