{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "MessageTemplateDTO", "type": "object", "properties": { "title": { "type": "string" }, "content": {}, "lexorank": { "type": "string" }, "isPublic": { "type": "boolean" }, "users": { "items": { "type": "string" }, "type": "array" }, "attachments": { "items": {}, "type": "array" }, "actions": { "items": { "properties": { "data": {}, "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "type": "array" } }, "required": [ "title", "content", "lexorank" ] }