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: 3b6a268831397a7513a323f2e0b637ef722f50ab (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
{
  "$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
}