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
If schema file is as bellow
{
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"positiveInteger": {
"type": "integer",
"minimum": 0
}
},
"$ref": "#definitions/positiveInteger"
}
and data is -100
the check should return false.
The text was updated successfully, but these errors were encountered:
Actually, $ref is not supported. I didn't quite understand how that works
when I wrote the code. I don't have much time to support it now (as I don't
use json in my current project) but if you want to look at fixing that I
would gladly review and merge patches.
If schema file is as bellow
{
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"positiveInteger": {
"type": "integer",
"minimum": 0
}
},
"$ref": "#definitions/positiveInteger"
}
and data is -100
the check should return false.
—
Reply to this email directly or view it on GitHub #13.
If schema file is as bellow
{
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"positiveInteger": {
"type": "integer",
"minimum": 0
}
},
"$ref": "#definitions/positiveInteger"
}
and data is -100
the check should return false.
The text was updated successfully, but these errors were encountered: