trisquel-icecat/icecat/browser/components/asrouter/content-src/templates/OnboardingMessage/NewtabMessage.schema.json
2025-10-06 02:35:48 -06:00

27 lines
739 B
JSON

{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "file:///NewtabMessage.schema.json",
"title": "NewtabMessage",
"description": "A template for messages that are rendered within newtab",
"allOf": [{ "$ref": "file:///FxMSCommon.schema.json#/$defs/Message" }],
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"messageType": {
"type": "string",
"description": "The subtype of the message."
}
},
"additionalProperties": true,
"required": ["messageType"]
},
"template": {
"type": "string",
"const": "newtab_message"
}
},
"additionalProperties": true,
"required": ["targeting"]
}