{ "$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" ] }