Source code
Revision control
Copy as Markdown
Other Tools
{
"$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"]
}