summaryrefslogtreecommitdiff
path: root/jsonschema/validators.py
diff options
context:
space:
mode:
Diffstat (limited to 'jsonschema/validators.py')
-rw-r--r--jsonschema/validators.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/jsonschema/validators.py b/jsonschema/validators.py
index a47c3ae..a92e475 100644
--- a/jsonschema/validators.py
+++ b/jsonschema/validators.py
@@ -36,7 +36,9 @@ def validates(version):
Register the decorated validator for a ``version`` of the specification.
Registered validators and their meta schemas will be considered when
- parsing ``$schema`` properties' URIs.
+ parsing ``$schema`` properties' URIs. Meta schemas can use either
+ ``id`` or ``$id`` depending on whether they follow pre-draft6 or draft6
+ and later, respectively.
Arguments:
@@ -54,6 +56,8 @@ def validates(version):
validators[version] = cls
if u"id" in cls.META_SCHEMA:
meta_schemas[cls.META_SCHEMA[u"id"]] = cls
+ elif u"$id" in cls.META_SCHEMA:
+ meta_schemas[cls.META_SCHEMA[u"$id"]] = cls
return cls
return _validates