Skip to content

Commit

Permalink
Merge pull request #1411 from json-schema-org/gregsdennis/fix-date-ex…
Browse files Browse the repository at this point in the history
…ample

fix regex in example meta-schema with custom vocab
  • Loading branch information
gregsdennis committed Jun 9, 2023
2 parents 85d464a + b75927e commit 13b048c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsonschema-core.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4148,7 +4148,7 @@ https://example.com/schemas/common#/$defs/allOf/1
"properties": {
"minDate": {
"type": "string",
"pattern": "\d\d\d\d-\d\d-\d\d",
"pattern": "\\d\\d\\d\\d-\\d\\d-\\d\\d",
"format": "date",
}
}
Expand Down

0 comments on commit 13b048c

Please sign in to comment.