{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormFlow", "title": "FormFlow", "type": "object", "additionalProperties": false, "required": [ "id", "type", "config" ], "properties": { "id": { "type": "string", "format": "forms-custom-identifier" }, "type": { "$ref": "#/components/schemas/FormNodeTypeFlowConst" }, "coordinates": { "$ref": "#/components/schemas/FormNodeCoordinates" }, "alias": { "type": "string", "minLength": 1, "maxLength": 150 }, "config": { "$ref": "#/components/schemas/FormFlowConfig" } } }