diff --git a/crates/registry/src/schema/structs_impl.rs b/crates/registry/src/schema/structs_impl.rs index 08f0162c..346cde22 100644 --- a/crates/registry/src/schema/structs_impl.rs +++ b/crates/registry/src/schema/structs_impl.rs @@ -4147,9 +4147,7 @@ impl RegistryJsonPropertyPatch for Bootstrap { value: JmapValue<'x>, ) -> PatchResult<'x> { match pointer.next_property() { - Some(Property::ServerHostname) => self - .server_hostname - .patch(pointer.with_validators(&[StringValidator::Hostname]), value), + Some(Property::ServerHostname) => self.server_hostname.patch(pointer, value), Some(Property::DefaultDomain) => self.default_domain.patch(pointer, value), Some(Property::RequestTlsCertificate) => { self.request_tls_certificate.patch(pointer, value)