blob: da41e96c8af8c37cdbe528f095406366bf0a2e74 [file] [log] [blame]
Gyorgy Szingba1095c2020-11-24 00:33:11 +01001{
2 "$schema" : "http://json-schema.org/schema#",
3 "$id" : "Schema for build test description file",
4 "type": "object",
5 "properties" : {
6 "data" : {
7 "type" : "array",
8 "properties" : {
9 "name" : {"type" : "string"},
10 "src" : {"type" : "string"},
11 "params" : {
12 "type" : "array",
13 "items" : [ {"type" : "string"} ]
14 }
15 }
16 }
17 }
18}