{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateFormRequestContent", "title": "CreateFormRequestContent", "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 150 }, "messages": { "$ref": "#/components/schemas/FormMessages" }, "languages": { "$ref": "#/components/schemas/FormLanguages" }, "translations": { "$ref": "#/components/schemas/FormTranslations" }, "nodes": { "$ref": "#/components/schemas/FormNodeList" }, "start": { "$ref": "#/components/schemas/FormStartNode" }, "ending": { "$ref": "#/components/schemas/FormEndingNode" }, "style": { "$ref": "#/components/schemas/FormStyle" } } }