1{
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}
19