raisejsonschema.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