Skip to content
Snippets Groups Projects
Commit d3c5ef9f authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

skipping strict check in document for now.

parent 2d8c4d9c
No related branches found
No related tags found
No related merge requests found
......@@ -435,11 +435,12 @@ def validate_json_against_schema(json_doc: typing.Union[str,dict], schema: typin
except json.decoder.JSONDecodeError as e:
raise jsonschema.exceptions.ValidationError("Invalid JSON: %s\n%s" % (str(e), schema))
if '$schema' not in json_doc:
raise jsonschema.exceptions.ValidationError("The json document does not contain a $schema property\n%s" % (schema,))
if json_doc['$schema'].rstrip('/ref_resolved').rstrip('#').rstrip('/') != schema.get('$id','').rstrip('/ref_resolved').rstrip('#').rstrip('/'):
raise jsonschema.exceptions.ValidationError("The json document with $schema='%s' cannot be validated by schema with $id='%s'" % (json_doc['$schema'], schema.get('$id')))
# TODO: uncomment, and make sure all production templates are ok.
# if '$schema' not in json_doc:
# raise jsonschema.exceptions.ValidationError("The json document does not contain a $schema property\n%s" % (schema,))
#
# if json_doc['$schema'].rstrip('/ref_resolved').rstrip('#').rstrip('/') != schema.get('$id','').rstrip('/ref_resolved').rstrip('#').rstrip('/'):
# raise jsonschema.exceptions.ValidationError("The json document with $schema='%s' cannot be validated by schema with $id='%s'" % (json_doc['$schema'], schema.get('$id')))
# resolve $refs to fill in defaults for those, too
schema = resolved_remote_refs(schema, cache=cache, max_cache_age=max_cache_age)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment