Better Stack · Schema
StatusPageCreateRequest
Request body for creating a status page.
IncidentsLogsMonitoringPlatformStatusUptimeObservabilityOn-CallHeartbeats
Properties
| Name | Type | Description |
|---|---|---|
| company_name | string | Company name displayed on the page. |
| company_website | string | Company website URL. |
| subdomain | string | Subdomain slug. |
| timezone | string | Timezone for the page. |
| theme | string | Page theme. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/better-stack/refs/heads/main/json-schema/better-stack-status-page-create-request-schema.json",
"title": "StatusPageCreateRequest",
"description": "Request body for creating a status page.",
"type": "object",
"properties": {
"company_name": {
"type": "string",
"description": "Company name displayed on the page.",
"example": "Acme Corp"
},
"company_website": {
"type": "string",
"format": "uri",
"description": "Company website URL.",
"example": "https://acme.com"
},
"subdomain": {
"type": "string",
"description": "Subdomain slug.",
"example": "acme"
},
"timezone": {
"type": "string",
"description": "Timezone for the page.",
"example": "UTC"
},
"theme": {
"type": "string",
"enum": [
"light",
"dark"
],
"description": "Page theme.",
"example": "light"
}
},
"required": [
"company_name",
"subdomain"
]
}