We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca4bff8 commit befb935Copy full SHA for befb935
jsonschema/schemas/draft6.json
@@ -115,6 +115,7 @@
115
"patternProperties": {
116
"type": "object",
117
"additionalProperties": { "$ref": "#" },
118
+ "propertyNames": { "format": "regex" },
119
"default": {}
120
},
121
"dependencies": {
jsonschema/tests/test_validators.py
@@ -892,8 +892,6 @@ def test_invalid_pattern(self):
892
with self.assertRaises(SchemaError):
893
self.Validator.check_schema({"pattern": "\q"})
894
895
- @unittest.skip("This test fails but it shouldn't, see"
896
- "github.com/Julian/jsonschema/pull/425#issuecomment-425667814")
897
def test_invalid_patternProperty(self):
898
899
self.Validator.check_schema(
0 commit comments