{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/activepieces/refs/heads/main/json-schema/activepieces-create-flow-request-schema.json", "title": "CreateFlowRequest", "description": "Request body for creating a flow", "type": "object", "properties": { "displayName": { "type": "string", "description": "Flow display name", "example": "My New Flow" }, "projectId": { "type": "string", "description": "Project ID to create flow in", "example": "project-xyz789" }, "folderId": { "type": "string", "description": "Optional folder ID" }, "templateId": { "type": "string", "description": "Optional template to base the flow on" }, "metadata": { "type": "object", "description": "Custom metadata" } }, "required": [ "displayName", "projectId" ] }