File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "$schema" : " http://json-schema.org/draft-03 /schema#" ,
2
+ "$schema" : " http://json-schema.org/draft-04 /schema#" ,
3
3
"type" : " array" ,
4
4
"items" : {
5
5
"type" : " object" ,
6
+ "required" : [" description" , " schema" , " tests" ],
6
7
"properties" : {
7
- "description" : {"type" : " string" , "required" : true },
8
- "schema" : {"required" : true },
8
+ "description" : {"type" : " string" },
9
+ "schema" : {},
9
10
"tests" : {
10
11
"type" : " array" ,
11
12
"items" : {
12
13
"type" : " object" ,
14
+ "required" : [" description" , " data" , " valid" ],
13
15
"properties" : {
14
- "description" : {"type" : " string" , "required" : true },
15
- "data" : {"required" : true },
16
- "valid" : {"type" : " boolean" , "required" : true }
16
+ "description" : {"type" : " string" },
17
+ "data" : {},
18
+ "valid" : {"type" : " boolean" }
17
19
},
18
20
"additionalProperties" : false
19
21
},
You can’t perform that action at this time.
0 commit comments