{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {},
"type": "object",
"required": [],
"additionalProperties": false,
"properties": {
"image": {
"type": "object",
"required": [
"url"
],
"additionalProperties": false,
"properties": {
"url": {
"type": "string",
"format": "uri",
"pattern": "^(https?://.*\\.(png|jpg|jpeg|svg|gif|PNG|JPEG|JPG|SVG|GIF))$"
}
}
},
"title": {
"type": "string"
},
"formatting": {
"type": "object",
"additionalProperties": false,
"properties": {
"textStyle": {
"$ref": "style/text.json"
},
"cardStyle": {
"$ref": "style/card.json"
}
}
}
}
}