StringSchema extension type
A JSON Schema definition for a String.
- on
- Implemented types
- Available extensions
Constructors
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
-
enumValues
→ Iterable<
String> ? -
The allowed values for this String, corresponds to the
enum
key.no setter - maxLength → int?
-
The maximum allowed length of this String.
no setter
- minLength → int?
-
The minimum allowed length of this String.
no setter
-
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
- pattern → String?
-
A regular expression pattern that the String must match.
no setter
- 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.