BooleanSchema extension type
A JSON Schema definition for a bool.
- on
- Implemented types
- Available extensions
Constructors
- BooleanSchema.new({String? title, String? description})
-
factory
-
BooleanSchema.fromMap(Map<
String, Object?> _value)
Properties
-
allOf
→ List<
Schema> ? -
Schema combinator that requires all sub-schemas to match.
no setterinherited
-
anyOf
→ List<
Schema> ? -
Schema combinator that requires at least one of the sub-schemas to match.
no setterinherited
- description → String?
-
A description of this schema.
no setterinherited
-
not
→ List<
Schema> ? -
Schema combinator that requires none of the sub-schemas to match.
no setterinherited
-
oneOf
→ List<
Schema> ? -
Schema combinator that requires exactly one of the sub-schemas to match.
no setterinherited
- title → String?
-
A title for this schema, should be short.
no setterinherited
- type → JsonType?
-
The JsonType of this schema, if present.
no setterinherited
Methods
-
validate(
Object? data) → List< ValidationError> -
Available on Schema, provided by the SchemaValidation extension
Validates the givendata
against this schema.