Skip to content

Commit 779ab94

Browse files
upload oc schema
1 parent ac7d2af commit 779ab94

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

website/static/schema.json

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"type": "object",
4+
"properties": {
5+
"registries": {
6+
"type": "array",
7+
"items": {
8+
"type": "string"
9+
}
10+
},
11+
"mocks": {
12+
"type": "object",
13+
"properties": {
14+
"plugins": {
15+
"type": "object",
16+
"properties": {
17+
"dynamic": {
18+
"type": "object",
19+
"additionalProperties": {
20+
"type": "string"
21+
}
22+
},
23+
"static": {
24+
"type": "object",
25+
"additionalProperties": {
26+
"type": "string"
27+
}
28+
}
29+
},
30+
"additionalProperties": false
31+
}
32+
},
33+
"additionalProperties": false
34+
}
35+
},
36+
"required": [
37+
"registries"
38+
],
39+
"additionalProperties": false
40+
}

0 commit comments

Comments
 (0)