From b75927e97f17bd5f58c37a4f498323af735a056f Mon Sep 17 00:00:00 2001 From: Greg Dennis Date: Tue, 6 Jun 2023 11:00:20 +1200 Subject: [PATCH] fix regex in example meta-schema with custom vocab --- jsonschema-core.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonschema-core.xml b/jsonschema-core.xml index c8fc6123..b1055ffb 100644 --- a/jsonschema-core.xml +++ b/jsonschema-core.xml @@ -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", } }