UNPKG

1.95 kBJSONView Raw
1{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "definitions": {
4 "GroupItem": {
5 "properties": {
6 "items": {
7 "items": {
8 "anyOf": [
9 {
10 "$ref": "#/definitions/GroupItem"
11 },
12 {
13 "$ref": "#/definitions/ModelItem"
14 }
15 ]
16 },
17 "type": "array"
18 },
19 "name": {
20 "type": "string"
21 },
22 "path": {
23 "type": "string"
24 },
25 "type": {
26 "enum": [
27 "group"
28 ],
29 "type": "string"
30 }
31 },
32 "type": "object"
33 },
34 "ModelItem": {
35 "properties": {
36 "model": {
37 "type": "string"
38 },
39 "name": {
40 "type": "string"
41 },
42 "path": {
43 "type": "string"
44 },
45 "type": {
46 "enum": [
47 "model"
48 ],
49 "type": "string"
50 }
51 },
52 "type": "object"
53 }
54 },
55 "properties": {
56 "$schema": {
57 "type": "string"
58 },
59 "navigation": {
60 "items": {
61 "anyOf": [
62 {
63 "$ref": "#/definitions/GroupItem"
64 },
65 {
66 "$ref": "#/definitions/ModelItem"
67 }
68 ]
69 },
70 "type": "array"
71 }
72 },
73 "type": "object"
74}
75