summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/status/ci_detailed_status.json
blob: 8d0f1e4a6af06572a4dd02de7d09b40aee97cc14 (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": { "type": "string" },
    "favicon": { "type": "string" },
    "illustration": { "$ref": "illustration.json" },
    "action": { "$ref": "action.json" }
  },
  "additionalProperties": false
}