Activepieces · Schema

Folder

A folder for organizing flows

AutomationNo-CodeOpen SourceWorkflowAI AgentsMCP

Properties

Name Type Description
id string Folder ID
created string
updated string
displayName string Folder display name
projectId string Project ID
View JSON Schema on GitHub

JSON Schema

activepieces-folder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/activepieces/refs/heads/main/json-schema/activepieces-folder-schema.json",
  "title": "Folder",
  "description": "A folder for organizing flows",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Folder ID",
      "example": "folder-abc123"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "updated": {
      "type": "string",
      "format": "date-time"
    },
    "displayName": {
      "type": "string",
      "description": "Folder display name",
      "example": "Production Flows"
    },
    "projectId": {
      "type": "string",
      "description": "Project ID"
    }
  }
}