Skip to content

Commit

Permalink
adds schema with properties to config-schema.json
Browse files Browse the repository at this point in the history
  • Loading branch information
benkroeger authored Sep 23, 2021
1 parent 03b1ceb commit d78d75b
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion config-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@
}
],
"definitions": {
"ISchema": {
"title": "ISchema",
"description": "Additional Schema properties (mostly used for schema url)",
"type": "object",
"properties": {
"headers": {}
},
"additionalProperties": {},
},
"IExtensions": {
"additionalProperties": {},
"description": "Configuration of each used extension",
Expand Down Expand Up @@ -77,7 +86,18 @@
},
{
"type": "string"
}
},
{
"$ref": "#/definitions/ISchema",
"title": "schema"
},
{
"items": {
"$ref": "#/definitions/ISchema",
"title": "schema"
},
"type": "array"
},
],
"title": "schema"
}
Expand Down

0 comments on commit d78d75b

Please sign in to comment.