54 lines
2 KiB
JSON
54 lines
2 KiB
JSON
{
|
|
"type": "object",
|
|
"required": ["thirdPartyId", "overridesId", "urls"],
|
|
"properties": {
|
|
"thirdPartyId": {
|
|
"type": "string",
|
|
"title": "Third-party Add-on Id",
|
|
"description": "The identifier of the third party add-on which will override the app provided one. Should be of the format example@foo. If the third party engine is an OpenSearch engine, then this must be opensearch@search.mozilla.org",
|
|
"pattern": "^([a-zA-Z0-9-._]*@[a-zA-Z0-9-._]*|\\{[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\\})$"
|
|
},
|
|
"overridesId": {
|
|
"type": "string",
|
|
"title": "Add-on Id to Override",
|
|
"description": "The identifier of the app-provided add-on to be overridden. Should be of the format example@search.mozilla.org",
|
|
"pattern": "^[a-zA-Z0-9-._]*@search.mozilla.org$"
|
|
},
|
|
"engineName": {
|
|
"type": "string",
|
|
"title": "Engine Name",
|
|
"description": "The name of the search engine to be overridden, only applies to OpenSearch engines"
|
|
},
|
|
"urls": {
|
|
"type": "array",
|
|
"title": "URLs",
|
|
"description": "An array of URL sets which must be matched (with the add-on's manifest settings) to allow the override",
|
|
"items": {
|
|
"type": "object",
|
|
"required": ["search_url"],
|
|
"properties": {
|
|
"search_url": {
|
|
"type": "string",
|
|
"title": "search_url",
|
|
"description": "The main search url"
|
|
},
|
|
"search_url_get_params": {
|
|
"type": "string",
|
|
"title": "search_url_get_params",
|
|
"description": "Any get parameters"
|
|
},
|
|
"search_url_post_params": {
|
|
"type": "string",
|
|
"title": "search_url_post_params",
|
|
"description": "Any post parameters"
|
|
},
|
|
"search_form": {
|
|
"type": "string",
|
|
"title": "search_form",
|
|
"description": "The search form url"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|