Back to Activepieces

Data & Storage

.agents/contexts/data-storage/CONTEXT.md

0.86.01.1 KB
Original Source

Data & Storage

The structured-data and blob-storage primitives a project owns: Tables and their rows/columns, stored Files, and key-value state.

Language

Table: A built-in structured data store within a project, with fields, records, and automation triggers. Avoid: database, spreadsheet

Field: A column definition in a Table with a name and type (TEXT, NUMBER, DATE, STATIC_DROPDOWN). Avoid: column

Record: A single row in a Table, composed of Cells keyed by Field. Avoid: row, entry

Cell: A single value at the intersection of a Record and a Field in a Table.

TableWebhook: A registration linking table events (record created/updated/deleted) to a flow for automation. Avoid: table trigger

File: A stored blob (S3 or DB) with type classification, optional compression, and expiry. Avoid: attachment, blob

Store Entry: A key-value pair scoped to a project, used by pieces to persist state across flow runs. Avoid: kv store, project store

Knowledge Base: A document store for AI agents that chunks files into vector-embedded segments for semantic search. Avoid: RAG store, document index