AdditionalPropertiesRule class final
Rejects map keys that are not in the declared set.
Corresponds to additionalProperties: false in JSON Schema for programmatic
schema construction where no patternProperties are involved.
Limitation: this rule has no knowledge of PatternPropertiesRule. If
both are included in the same CompositeRule, keys matched by a pattern
will still be rejected as "additional". For schemas that combine
additionalProperties with patternProperties, use
AdditionalPropertiesSchemaRule with an AlwaysInvalidRule payload and
supply the relevant AdditionalPropertiesSchemaRule.patternRegexes —
this is what SchemaParser always produces.
- Inheritance
-
- Object
- SchemaRule
- AdditionalPropertiesRule
Constructors
-
AdditionalPropertiesRule(Set<
String> allowed) -
const
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
validate(
dynamic value, String path) → List< SchemaViolation> -
Validates
valueatpathand returns every violation found.override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited