File tree 1 file changed +22
-22
lines changed
1 file changed +22
-22
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " http://json-schema.org/draft-04/schema#" ,
3
3
"description" : " Schema for tests" ,
4
+ "type" : " array" ,
5
+ "items" : {
6
+ "type" : " object" ,
7
+ "required" : [ " description" , " schema" , " tests" ],
8
+ "properties" : {
9
+ "id" : {
10
+ "description" : " Uniquely identifies a set of tests" ,
11
+ "type" : " string" ,
12
+ "format" : " uri"
13
+ },
14
+ "description" : { "type" : " string" },
15
+ "schema" : {},
16
+ "tests" : {
17
+ "description" : " A set of related tests all using the same schema" ,
18
+ "type" : " array" ,
19
+ "items" : { "$ref" : " #/definitions/test" },
20
+ "minItems" : 1
21
+ }
22
+ },
23
+ "additionalProperties" : false ,
24
+ "minItems" : 1
25
+ },
4
26
"definitions" : {
5
27
"outputItem" : {
6
28
"type" : " object" ,
47
69
},
48
70
"additionalProperties" : false
49
71
}
50
- },
51
- "type" : " array" ,
52
- "items" : {
53
- "type" : " object" ,
54
- "required" : [ " description" , " schema" , " tests" ],
55
- "properties" : {
56
- "id" : {
57
- "description" : " Uniquely identifies a set of tests" ,
58
- "type" : " string" ,
59
- "format" : " uri"
60
- },
61
- "description" : { "type" : " string" },
62
- "schema" : {},
63
- "tests" : {
64
- "description" : " A set of related tests all using the same schema" ,
65
- "type" : " array" ,
66
- "items" : { "$ref" : " #/definitions/test" },
67
- "minItems" : 1
68
- }
69
- },
70
- "additionalProperties" : false ,
71
- "minItems" : 1
72
72
}
73
73
}
You can’t perform that action at this time.
0 commit comments