{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/r2_edit_custom_domain_request", "title": "r2_edit_custom_domain_request", "example": { "enabled": true, "minTLS": "1.2" }, "properties": { "enabled": { "description": "Whether to enable public bucket access at the specified custom domain", "type": "boolean" }, "minTLS": { "description": "Minimum TLS Version the custom domain will accept for incoming connections. If not set, defaults to previous value.", "enum": [ "1.0", "1.1", "1.2", "1.3" ], "type": "string" } }, "type": "object" }