2018-10-15 14:42:47 +05:30
|
|
|
{
|
|
|
|
"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" },
|
2018-11-20 20:47:30 +05:30
|
|
|
"favicon": { "type": "string" },
|
|
|
|
"action": {
|
|
|
|
"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" }
|
|
|
|
}
|
|
|
|
}
|
2018-10-15 14:42:47 +05:30
|
|
|
},
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|