{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateFormResponseContent", "title": "UpdateFormResponseContent", "type": "object", "additionalProperties": false, "required": [ "id", "name", "created_at", "updated_at" ], "properties": { "id": { "type": "string", "maxLength": 30, "format": "form-id" }, "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" }, "created_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" }, "embedded_at": { "type": "string", "format": "date" }, "submitted_at": { "type": "string", "format": "date" } } }