aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/build_stats/build_stats_schema.json
blob: 021a34954528a677e55021400eeb5df13f8a87da (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
56
[
  {
    "name": "build_number",
    "type": "INTEGER",
    "mode": "NULLABLE"
  },
  {
    "name": "timestamp",
    "type": "TIMESTAMP",
    "mode": "NULLABLE"
  },
  {
    "name": "matrix",
    "type": "RECORD",
    "mode": "REPEATED",
    "fields": [
      {
        "name": "name",
        "type": "STRING",
        "mode": "NULLABLE"
      },
      {
        "name": "duration",
        "type": "FLOAT",
        "mode": "NULLABLE"
      },
      {
        "name": "pass_count",
        "type": "INTEGER",
        "mode": "NULLABLE"
      },
      {
        "name": "failure_count",
        "type": "INTEGER",
        "mode": "NULLABLE"
      },
      {
        "name": "error",
        "type": "RECORD",
        "mode": "REPEATED",
        "fields": [
          {
            "name": "description",
            "type": "STRING",
            "mode": "NULLABLE"
          },
          {
            "name": "count",
            "type": "INTEGER",
            "mode": "NULLABLE"
          }
        ]
      }
    ]
  }
]