debian-mirror-gitlab/spec/fixtures/api/schemas/status/action.json
2018-12-05 23:21:45 +05:30

23 lines
353 B
JSON

{
"type": "object",
"required": [
"icon",
"title",
"path",
"method"
],
"properties": {
"icon": {
"type": "string",
"enum": [
"retry",
"play",
"cancel"
]
},
"title": { "type": "string" },
"path": { "type": "string" },
"method": { "$ref": "../http_method.json" }
}
}