Skip to content

Update _validators.py #116

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions jsonschema/_validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,19 @@ def patternProperties(validator, patternProperties, instance, schema):
return

for pattern, subschema in iteritems(patternProperties):
s = []
for k, v in iteritems(instance):
if re.search(pattern, k):
for error in validator.descend(
v, subschema, path=k, schema_path=pattern
):
yield error
else:
s.append(k)

if len(s) != 0:
error = "Properties (%s) %s not matched the pattern: " + pattern
yield ValidationError(error % _utils.extras_msg(s))


def additionalProperties(validator, aP, instance, schema):
Expand Down