pub trait ValidateMaxProperties {
    fn validate_max_properties(
        &self,
        max_properties: usize
    ) -> Result<(), MaxPropertiesErrorParams>; }
Expand description

Max size of the object properties validation.

See https://json-schema.org/understanding-json-schema/reference/object.html#size

Required Methods

Implementors