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

build_report_result_data_tests.json « json_schemas « validators « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 610070fde5fe0708a2758628ebeffd4b78622b6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "Build report result data tests",
  "type": "object",
  "properties": {
    "name": { "type": "string" },
    "duration": { "type": "string" },
    "failed": { "type": "integer" },
    "errored": { "type": "integer" },
    "skipped": { "type": "integer" },
    "success": { "type": "integer" }
  },
  "additionalProperties": false
}