123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- {
- "type": "object",
- "title": "Themed chat",
- "properties": {
- "title": {
- "type": "string"
- },
- "markdown": {
- "type": "string",
- "title": "Content",
- "format": "markdown",
- "options": {
- "simplemde": {
- "renderingConfig": {
- "singleLineBreaks": false
- },
- "toolbar": [
- "bold",
- "italic",
- "heading",
- "|",
- "ordered-list",
- "unordered-list",
- "|",
- "link",
- "quote",
- "|",
- "preview"
- ]
- }
- }
- },
- "bg_video": {
- "$ref": "/enum/bg-video",
- "title": "Background video",
- "links": [
- {
- "rel": "Preview video",
- "class": "link-info",
- "href": "{{self}}",
- "media-type": "video/mp4"
- }
- ]
- },
- "use_soundtrack": {
- "title": "Use soundtrack",
- "type": "boolean",
- "format": "checkbox"
- },
- "soundtrack": {
- "dependencies": {
- "use_soundtrack": true
- },
- "type": "string",
- "title": "Soundtrack",
- "$ref": "/enum/audio"
- },
- "use_video_content": {
- "title": "Use video content",
- "type": "boolean",
- "format": "checkbox"
- },
- "video_content": {
- "dependencies": {
- "use_video_content": true
- },
- "type": "string",
- "title": "Video content",
- "$ref": "/embeds_enum"
- }
- },
- "required": [
- "title",
- "markdown",
- "bg_video",
- "use_soundtrack",
- "soundtrack",
- "use_video_content",
- "video_content"
- ]
- }
|