For some payloads, e.g. query parameters that are exploded into an object from a string, a value might convey a boolean value but was represented as a string. Provide an option to allow strings that match true or false to be validated as a boolean value:
When this configuration is enabled (default false),
data "false" and "true" will validate successfully against
"type": "boolean"
"type": ["boolean", ..]
"const": true or "const": false
"enum": [true, false]
For some payloads, e.g. query parameters that are exploded into an object from a string, a value might convey a boolean value but was represented as a string. Provide an option to allow strings that match
trueorfalseto be validated as a boolean value:When this configuration is enabled (default false),
data
"false"and"true"will validate successfully against"type": "boolean""type": ["boolean", ..]"const": trueor"const": false"enum": [true, false]