Skip to content

Commit

Permalink
Update _statuspage_incident_blueprint.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
phalbert committed Jun 10, 2024
1 parent 0e344a2 commit 0f344e7
Showing 1 changed file with 48 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,22 @@
"identified",
"monitoring",
"resolved",
"postmortem"
"postmortem",
"scheduled",
"in_progress",
"verifying",
"completed"
],
"enumColors": {
"investigating": "blue",
"identified": "orange",
"monitoring": "yellow",
"resolved": "green",
"postmortem": "purple"
"postmortem": "purple",
"scheduled": "lightGray",
"in_progress": "blue",
"verifying": "yellow",
"completed": "green"
},
"description": "Current status of the incident"
},
Expand Down Expand Up @@ -76,11 +84,49 @@
"title": "Postmortem Published At",
"description": "When the postmortem analysis was published (null if not yet published)"
},
"scheduled_for": {
"type": "string",
"format": "date-time",
"title": "Scheduled For",
"description": "Start time for a scheduled incident (null if not scheduled)"
},
"scheduled_until": {
"type": "string",
"format": "date-time",
"title": "Scheduled Until",
"description": "End time for a scheduled incident (null if not scheduled)"
},
"scheduled_remind_prior": {
"type": "boolean",
"title": "Scheduled Remind Prior",
"description": "Whether to send a reminder before a scheduled incident"
},
"scheduled_reminded_at": {
"type": "string",
"format": "date-time",
"title": "Scheduled Reminded At",
"description": "When the reminder for a scheduled incident was sent (null if not applicable)"
},
"scheduled_auto_in_progress": {
"type": "boolean",
"title": "Scheduled Auto In Progress",
"description": "Whether to automatically transition the incident to 'in progress'"
},
"scheduled_auto_completed": {
"type": "boolean",
"title": "Scheduled Auto Completed",
"description": "Whether to automatically mark the incident as completed"
},
"metadata": {
"type": "object",
"title": "Metadata",
"description": "Custom metadata associated with the incident"
},
"reminder_intervals": {
"type": "string",
"title": "Reminder Intervals",
"description": "Intervals for sending reminders for a scheduled incident (null if not applicable)"
},
"postmortem_body": {
"type": "string",
"format": "markdown",
Expand Down

0 comments on commit 0f344e7

Please sign in to comment.