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: 0a12c9c39a72b826e7f03b2669f55ffac0c46c5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "Build report result data",
  "type": "object",
  "properties": {
    "coverage": { "type": "float" },
    "tests": {
      "type": "object",
      "items": { "$ref": "./build_report_result_data_tests.json" }
    }
  },
  "additionalProperties": false
}