26 lines
607 B
JSON
26 lines
607 B
JSON
{
|
|
"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
|
|
}
|