{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateFormRequestContent", "title": "UpdateFormRequestContent", "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 150 }, "messages": { "$ref": "#/components/schemas/FormMessagesNullable" }, "languages": { "$ref": "#/components/schemas/FormLanguagesNullable" }, "translations": { "$ref": "#/components/schemas/FormTranslationsNullable" }, "nodes": { "$ref": "#/components/schemas/FormNodeListNullable" }, "start": { "$ref": "#/components/schemas/FormStartNodeNullable" }, "ending": { "$ref": "#/components/schemas/FormEndingNodeNullable" }, "style": { "$ref": "#/components/schemas/FormStyleNullable" } } }