-
Notifications
You must be signed in to change notification settings - Fork 15
/
testspec.schema.json
53 lines (53 loc) · 997 Bytes
/
testspec.schema.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
{
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Spec"
},
"type": "array",
"definitions": {
"Spec": {
"required": [
"desc",
"command",
"assert"
],
"properties": {
"desc": {
"type": "string"
},
"skip": {
"type": "boolean"
},
"user": {
"type": "string"
},
"command": {
"items": {
"type": "string"
},
"type": "array"
},
"entrypoint": {
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"items": {
"type": "string"
},
"type": "array"
},
"assert": {
"items": {
"type": "string"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
}
}
}