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

Constructors

AdditionalPropertiesRule(Set<String> allowed)
const

Properties

allowed Set<String>
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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 value at path and returns every violation found.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited