Payload schema
hostnamestring
The configured hostname.
kind"cloudflare" | "direct"
Whether Cloudflare for SaaS or a direct Worker route serves it.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"hostname": {
"type": "string",
"description": "The configured hostname."
},
"kind": {
"type": "string",
"enum": [
"cloudflare",
"direct"
],
"description": "Whether Cloudflare for SaaS or a direct Worker route serves it."
}
},
"required": [
"hostname",
"kind"
]
}