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

ci_detailed_status.json « status « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d9e4975858fc72287d3f7908b91ef7de8633d18 (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": [
    "icon",
    "text",
    "label",
    "group",
    "tooltip",
    "has_details",
    "details_path",
    "favicon"
  ],
  "properties": {
    "icon": { "type": "string" },
    "text": { "type": "string" },
    "label": { "type": "string" },
    "group": { "type": "string" },
    "tooltip": { "type": "string" },
    "has_details": { "type": "boolean" },
    "details_path": { "oneOf": [{ "type": "null" }, {"type": "string" }] },
    "favicon": { "type": "string" },
    "illustration": { "$ref": "illustration.json" },
    "action": { "$ref": "action.json" }
  },
  "additionalProperties": false
}