{
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 45
},
"description": {
"type": "string",
"maxLength": 132,
"optional": true
},
"launch_url": {
"type": "string",
"minLength": 1
},
"launch_container": {
"enum": ["tab", "panel"],
"optional": true
},
"permissions": {
"type": "array",
"optional": true,
"items": {
"type": "string",
"minLength": 1
}
},
"urls": {
"type": "array",
"optional": true,
"items": {
"type": "string",
"minLength": 1
}
},
"icons": {
"type": "object",
"optional": true,
"properties": {
"16": { "optional": true, "type": "string", "minLength": 1 },
"48": { "optional": true, "type": "string", "minLength": 1 },
"128": { "optional": true, "type": "string", "minLength": 1 }
}
}
}
}