{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PortalCustomDomain", "title": "PortalCustomDomain", "type": "object", "properties": { "hostname": { "type": "string" }, "enabled": { "type": "boolean" }, "ssl": { "$ref": "#/components/schemas/PortalCustomDomainSSL" }, "cname_status": { "$ref": "#/components/schemas/PortalCustomDomainCnameStatus" }, "created_at": { "$ref": "#/components/schemas/CreatedAt" }, "updated_at": { "$ref": "#/components/schemas/UpdatedAt" } }, "additionalProperties": false, "required": [ "hostname", "enabled", "ssl", "cname_status", "created_at", "updated_at" ] }