Skip to content

Commit 1b48546

Browse files
committed
Fix patterns and paths in output schema
Fix a raw "$" in two patterns and add a missing "$defs" in three paths
1 parent 2232f5b commit 1b48546

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

output/schema.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,16 @@
5050
{
5151
"properties": {
5252
"keywordLocation": {
53-
"pattern": ".*/$ref/.*"
53+
"pattern": ".*/\\$ref/.*"
5454
}
55-
}
55+
}
5656
},
5757
{
5858
"properties": {
5959
"keywordLocation": {
60-
"pattern": ".*/$recursiveRef/.*"
60+
"pattern": ".*/\\$recursiveRef/.*"
6161
}
62-
}
62+
}
6363
}
6464
]
6565
},
@@ -79,8 +79,8 @@
7979
},
8080
"required": [ "valid" ]
8181
},
82-
"basic": { "$ref": "#/outputUnit" },
83-
"detailed": { "$ref": "#/outputUnit" },
84-
"verbose": { "$ref": "#/outputUnit" }
82+
"basic": { "$ref": "#/$defs/outputUnit" },
83+
"detailed": { "$ref": "#/$defs/outputUnit" },
84+
"verbose": { "$ref": "#/$defs/outputUnit" }
8585
}
8686
}

0 commit comments

Comments
 (0)