You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]
The text was updated successfully, but these errors were encountered:
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
orfalse
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]
The text was updated successfully, but these errors were encountered: