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

metadata.json « v4 « public_api « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd219b95df8ac6d205c53215e33266c97dc014eb (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
{
  "type": "object",
  "required": [
    "version",
    "revision",
    "kas"
  ],
  "properties": {
    "version": { "type": "string" },
    "revision": { "type": "string" },
    "kas": {
      "type": "object",
      "required": [
        "enabled",
        "externalUrl",
        "version"
      ],
      "properties": {
        "enabled": { "type": "boolean" },
        "externalUrl": { "type": ["string", "null"] },
        "version": { "type": ["string", "null"] }
      }
    }
  },
  "additionalProperties": false
}