From 1b485461fd15e4b516baceb6af24b116daecce91 Mon Sep 17 00:00:00 2001 From: Shawn Silverman Date: Fri, 15 May 2020 03:02:15 -0700 Subject: [PATCH] Fix patterns and paths in output schema Fix a raw "$" in two patterns and add a missing "$defs" in three paths --- output/schema.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/output/schema.json b/output/schema.json index 7cf4c4ac..dce6fc0b 100644 --- a/output/schema.json +++ b/output/schema.json @@ -50,16 +50,16 @@ { "properties": { "keywordLocation": { - "pattern": ".*/$ref/.*" + "pattern": ".*/\\$ref/.*" } - } + } }, { "properties": { "keywordLocation": { - "pattern": ".*/$recursiveRef/.*" + "pattern": ".*/\\$recursiveRef/.*" } - } + } } ] }, @@ -79,8 +79,8 @@ }, "required": [ "valid" ] }, - "basic": { "$ref": "#/outputUnit" }, - "detailed": { "$ref": "#/outputUnit" }, - "verbose": { "$ref": "#/outputUnit" } + "basic": { "$ref": "#/$defs/outputUnit" }, + "detailed": { "$ref": "#/$defs/outputUnit" }, + "verbose": { "$ref": "#/$defs/outputUnit" } } }