{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/langflow/main/json-schema/langflow-flow-schema.json", "title": "FlowRead", "description": "A Langflow flow \u2014 a directed graph of components representing an AI agent or workflow.", "properties": { "access_type": { "enum": [ "PRIVATE", "PUBLIC" ], "title": "AccessTypeEnum", "type": "string" }, "action_description": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "The description of the action associated with the flow", "title": "Action Description" }, "action_name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "The name of the action associated with the flow", "title": "Action Name" }, "data": { "anyOf": [ { "additionalProperties": true, "type": "object" }, { "type": "null" } ], "title": "Data" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Description" }, "endpoint_name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Endpoint Name" }, "folder_id": { "anyOf": [ { "format": "uuid", "type": "string" }, { "type": "null" } ], "title": "Folder Id" }, "gradient": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Gradient" }, "icon": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Icon" }, "icon_bg_color": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Icon Bg Color" }, "id": { "format": "uuid", "title": "Id", "type": "string" }, "is_component": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": false, "title": "Is Component" }, "locked": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": false, "title": "Locked" }, "mcp_enabled": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": false, "description": "Can be exposed in the MCP server", "title": "Mcp Enabled" }, "name": { "title": "Name", "type": "string" }, "tags": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "description": "The tags of the flow", "title": "Tags" }, "updated_at": { "anyOf": [ { "format": "date-time", "type": "string" }, { "type": "null" } ], "title": "Updated At" }, "user_id": { "anyOf": [ { "format": "uuid", "type": "string" }, { "type": "null" } ], "title": "User Id" }, "webhook": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": false, "description": "Can be used on the webhook endpoint", "title": "Webhook" } }, "required": [ "name", "id", "user_id", "folder_id" ], "type": "object" }