forked from layeredy/uptimematrix-statuspage-pulse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
55 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,75 @@ | ||
{ | ||
"Whitelabel": false, | ||
"RandomOperationalMessage": true, | ||
"OverallStatus": "NoOverride", | ||
"announcement": { | ||
"text": "This is a demo announcement. You can customize this message in data.json!" | ||
}, | ||
"RandomOperationalMessage": true, | ||
"Whitelabel": false, | ||
"maintenanceAlerts": [ | ||
{ | ||
"start": "2024-09-17T12:00:00Z", | ||
"end": "2024-09-18T12:00:00Z", | ||
"message": "Demo maintenance (hide by disabling maintenanceAlerts in data.json).", | ||
"title": "Demo Maintenance" | ||
"message": "Demo maintenance (hide by disabling maintenanceAlerts in data.json!)", | ||
"start": "2024-09-17T12:00:00Z", | ||
"title": "Demo" | ||
} | ||
], | ||
"sections": { | ||
"announcementBar": false, | ||
"maintenanceAlerts": true, | ||
"statusUpdates": true, | ||
"announcementBar": true | ||
"statusUpdates": true | ||
}, | ||
"services": { | ||
"Example 1": { | ||
"Example service 1": "Operational", | ||
"Example service 2": "Operational", | ||
"Example service 3": "Operational" | ||
"services": [ | ||
{ | ||
"categoryName": "Example 1", | ||
"services": [ | ||
{ | ||
"serviceName": "Example service 1", | ||
"status": "Operational" | ||
}, | ||
{ | ||
"serviceName": "Example service 2", | ||
"status": "Operational" | ||
}, | ||
{ | ||
"serviceName": "Example service 3", | ||
"status": "Operational" | ||
} | ||
] | ||
}, | ||
"Example 2": { | ||
"Another example service 1": "Operational", | ||
"Another example service 2": "Operational", | ||
"Another example service 3": "Operational" | ||
{ | ||
"categoryName": "Example 2", | ||
"services": [ | ||
{ | ||
"serviceName": "Another example service 1", | ||
"status": "Operational" | ||
}, | ||
{ | ||
"serviceName": "Another example service 2", | ||
"status": "Operational" | ||
}, | ||
{ | ||
"serviceName": "Another example service 3", | ||
"status": "Operational" | ||
} | ||
] | ||
}, | ||
"Example 3": { | ||
"Again another example service 1": "Operational", | ||
"Again another example service 2": "Operational" | ||
{ | ||
"categoryName": "Example 3", | ||
"services": [ | ||
{ | ||
"serviceName": "Again another example service 1", | ||
"status": "Operational" | ||
}, | ||
{ | ||
"serviceName": "Again another example service 2", | ||
"status": "Operational" | ||
} | ||
] | ||
} | ||
}, | ||
], | ||
"statusUpdates": [ | ||
{ | ||
"color": "#7a54f8", | ||
"date": "2024-08-10T09:00:00Z", | ||
"message": "We like playing Uno... and developing software!", | ||
"message": "We like playing uno... and developing software", | ||
"title": "This is a demo site!" | ||
} | ||
] | ||
} | ||
} |