To enable type coercion pass option coerceTypes
to Ajv with true
or array
(it is false
by default). See example.
The coercion rules are different from JavaScript:
- to validate user input as expected
- to have the coercion reversible
- to correctly validate cases where different types are required in subschemas (e.g., in
anyOf
).
Type coercion only happens if there is type
keyword and if without coercion the validation would have failed. If coercion to the required type succeeds then the validation continues to other keywords, otherwise the validation fails.
If there are multiple types allowed in type
keyword the coercion will only happen if none of the types match the data and some of the scalar types are present (coercion to/from object
/array
is not possible). In this case the validating function will try coercing the data to each type in order until some of them succeeds.
Application of these rules can have some unexpected consequences. Ajv may coerce the same value multiple times (this is why coercion reversibility is required) as needed at different points in the schema. This is particularly evident when using oneOf
, which must test all of the subschemas. Ajv will coerce the type for each subschema, possibly resulting in unexpected failure if it can coerce to match more than one of the subschemas. Even if it succeeds, Ajv will not backtrack, so you'll get the type of the final coercion even if that's not the one that allowed the data to pass validation. If possible, structure your schema with anyOf
, which won't validate subsequent subschemas as soon as it encounters one subschema that matches.
Possible type coercions:
from type → to type ↓ |
string | number | boolean | null | array* |
---|---|---|---|---|---|
string | - | x →""+x |
false →"false" true →"true" |
null →"" |
[x] →x |
number / integer |
Valid number / integer: x →+x |
- | false →0 true →1 |
null →0 |
[x] →x |
boolean | "false" →false "true" →true "abc" ⇸"" ⇸ |
0 →false 1 →true x ⇸ |
- | null →false |
[false] →false [true] →true |
null | "" →null "null" ⇸"abc" ⇸ |
0 →null x ⇸ |
false →null true ⇸ |
- | [null] →null |
array* | x →[x] |
x →[x] |
false →[false] true →[true] |
null →[null] |
- |
* Requires option {coerceTypes: 'array'}
Coercion to number
is possible if the string is a valid number, +data
is used.
Coercion to integer
is possible if the string is a valid number without fractional part (data % 1 === 0
).
Unlike JavaScript, only these strings can be coerced to boolean
:
"true"
->true
"false"
->false
Empty string is coerced to null
, other strings can't be coerced.
Always possible, '' + data
is used
Unlike JavaScript, only these numbers can be coerced to boolean
:
1
->true
0
->false
0
coerces to null
, other numbers can't be coerced.
true
->"true"
false
->"false"
true
->1
false
->0
false
coerces to null
, true
can't be coerced.
null
coerses to the empty string.
null
coerces to 0
null
coerces to false
These coercions require that the option coerceTypes
is "array"
.
If a scalar data is present and array is required, Ajv wraps scalar data in an array.
If an array with one item is present and a scalar is required, Ajv coerces array into its item.
"foo"
->[ "foo" ]
[ "foo" ]
->"foo"