summaryrefslogtreecommitdiffstats
path: root/python/mozperftest/mozperftest/schemas/transformer_schema.json
blob: ab156f538661123d94aec1d97e4f146343af194d (plain)
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
54
55
{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "definitions": {
        "data": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "file": {
                        "type": "string"
                    },
                    "value": {},
                    "xaxis": {
                        "type": "number"
                    }
                },
                "required": [
                    "file",
                    "value",
                    "xaxis"
                ]
            }
        },
        "dict": {
            "type": "object",
            "properties": {
                "data": {
                    "$ref": "#/definitions/data"
                },
                "name": {
                    "type": "string"
                },
                "subtest": {
                    "type": "string"
                }
            },
            "required": [
                "data",
                "name",
                "subtest"
            ]
        }
    },
    "oneOf": [
        {
            "$ref": "#/definitions/dict"
        },
        {
            "type": "array",
            "items": {
                "$ref": "#/definitions/dict"
            }
        }
    ]
}