{ "$id": "https://carafe.fm/schema/draft-02/bundle.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "type": "object", "properties": { "config": { "$ref": "https://carafe.fm/schema/draft-02/config.schema.json#" }, "data": { "$ref": "https://carafe.fm/schema/draft-02/data.schema.json#" }, "libraries": { "type": "object", "additionalProperties": true }, "preview": { "type": "string", "contentMediaType": "image/*", "contentEncoding": "base64", "errorMessage": "preview.jpg or preview.png is required" }, "template": { "type": "string", "minLength": 1, "errorMessage": "template is required and must not be empty" } }, "required": [ "config", "data", "preview", "template" ] }, { "$ref": "https://carafe.fm/schema/draft-02/meta.schema.json#" } ] }