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

ci_job_annotation_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: d623ed3c179224ea7dee51add2fa2ca1c73f18f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "Build annotation",
  "type": "array",
  "items": {
    "anyOf": [
      {
        "type": "object",
        "properties": {
          "external_link": {
            "$ref": "./ci_job_external_link_data.json"
          }
        },
        "additionalProperties": false
      }
    ]
  },
  "maxItems": 1000
}