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
This is my schema: {
"type": "object",
"properties": {
"game": {
"allOf": [
{"$ref": "../gameSchema.json"}
]
}
}
}
Whatever is in gameSchema.json doesn't seem to be taken in consideration and the validation is not done. I am sure that the path is correct because it fails in case of a syntax error inside gameSchema.json.
I am using v2.1.3.
The text was updated successfully, but these errors were encountered:
Also, there seem to be a problem with error recording because when using fully_validate the returned array would be empty, but when using validate!, I would get: The property '#/game' of type Hash did not match all of the required schemas in schema
Hi,
This is my schema:
{
"type": "object",
"properties": {
"game": {
"allOf": [
{"$ref": "../gameSchema.json"}
]
}
}
}
Whatever is in
gameSchema.json
doesn't seem to be taken in consideration and the validation is not done. I am sure that the path is correct because it fails in case of a syntax error insidegameSchema.json
.I am using v2.1.3.
The text was updated successfully, but these errors were encountered: