Skip to content

Commit 83f8406

Browse files
Adds schema for the MinimalPermissionsGuidancePlugin. Closes #1102 (#1103)
1 parent 466ed97 commit 83f8406

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
3+
"title": "Dev Proxy MinimalPermissionsGuidancePlugin config schema",
4+
"type": "object",
5+
"properties": {
6+
"$schema": {
7+
"type": "string"
8+
},
9+
"apiSpecsFolderPath": {
10+
"type": "string"
11+
}
12+
},
13+
"required": [
14+
"apiSpecsFolderPath"
15+
],
16+
"additionalProperties": false
17+
}

0 commit comments

Comments
 (0)