diff --git a/proxmox-schema/src/schema.rs b/proxmox-schema/src/schema.rs index 60799eaa..fcf71b1c 100644 --- a/proxmox-schema/src/schema.rs +++ b/proxmox-schema/src/schema.rs @@ -1807,6 +1807,10 @@ impl UpdaterType for Vec { type Updater = Option; } +impl UpdaterType for crate::property_string::PropertyString { + type Updater = Option; +} + /// Trait signifying that a type contains an API schema. pub trait ApiType { const API_SCHEMA: Schema;