Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build_report_result_data.json « json_schemas « validators « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
}