Bug 1225715: Follow-up: Ignore unknown permissions and top-level manifest keys. r=me

This commit is contained in:
Kris Maglione 2016-02-06 14:02:30 -08:00
parent 6c8a453365
commit c4c3f5975b

View File

@ -99,7 +99,12 @@
"permissions": {
"type": "array",
"items": { "$ref": "Permission" },
"items": {
"choices": [
{ "$ref": "Permission" },
{ "type": "string" }
]
},
"optional": true
},
@ -108,6 +113,10 @@
"items": { "type": "string" },
"optional": true
}
},
"additionalProperties": {
"type": "any"
}
},
{