summaryrefslogtreecommitdiff
path: root/app/validators/json_schemas/build_report_result_data.json
blob: d109389a046d8032b34f87e9f2f1b9e01d87c7dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "Build report result data",
  "type": "object",
  "properties": {
    "coverage": {
      "type": "number",
      "format": "float"
    },
    "tests": {
      "type": "object",
      "items": {
        "$ref": "./build_report_result_data_tests.json"
      }
    }
  },
  "additionalProperties": false
}