debian-mirror-gitlab/spec/fixtures/api/schemas/status/ci_detailed_status.json

27 lines
607 B
JSON
Raw Normal View History

2018-10-15 14:42:47 +05:30
{
"type": "object",
2018-12-05 23:21:45 +05:30
"required": [
2018-10-15 14:42:47 +05:30
"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" },
2018-11-20 20:47:30 +05:30
"favicon": { "type": "string" },
2018-12-05 23:21:45 +05:30
"illustration": { "$ref": "illustration.json" },
"action": { "$ref": "action.json" }
2018-10-15 14:42:47 +05:30
},
"additionalProperties": false
}