-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema_skeleton.json
64 lines (64 loc) · 1.19 KB
/
schema_skeleton.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"definitions": {
"files_list": {
"type": "string",
"enum": []
},
"test_data_categories": {
"type": "string",
"enum": [],
"enumNames": []
},
"extra_group_data": {},
"installed_testers": {
"type": "string",
"enum": []
},
"tester_schemas": {
"oneOf": []
},
"plugins": {
"type": "object",
"title": "Plugins",
"properties": {}
},
"data_entries": {
"type": "array",
"title": "Data Entries",
"uniqueItems": true,
"items": {
"type": "string",
"enum": []
}
}
},
"type": "object",
"required": [
"testers"
],
"properties": {
"testers": {
"title": "Testers",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"required": [
"tester_type",
"test_data"
],
"properties": {
"tester_type": {
"$ref": "#/definitions/installed_testers",
"title": "Tester type"
}
},
"dependencies": {
"tester_type": {
"$ref": "#/definitions/tester_schemas"
}
}
}
}
}
}