Langflow · Schema
FlowRead
A Langflow flow — a directed graph of components representing an AI agent or workflow.
AIArtificial IntelligenceAgentsWorkflowsLow-CodeVisual BuilderLangChainRAGMCPOpen SourceFastAPI
Properties
| Name | Type | Description |
|---|---|---|
| access_type | string | |
| action_description | object | The description of the action associated with the flow |
| action_name | object | The name of the action associated with the flow |
| data | object | |
| description | object | |
| endpoint_name | object | |
| folder_id | object | |
| gradient | object | |
| icon | object | |
| icon_bg_color | object | |
| id | string | |
| is_component | object | |
| locked | object | |
| mcp_enabled | object | Can be exposed in the MCP server |
| name | string | |
| tags | object | The tags of the flow |
| updated_at | object | |
| user_id | object | |
| webhook | object | Can be used on the webhook endpoint |
JSON Schema
{
"$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"
}