Skip to main content

Table Commands

Create, populate, and manage structured data tables.

rip artifact publish --type table

Create a new table artifact with a defined schema.
Column types: text, number, date, url, boolean, enum. For enum columns, include a values array. Example:

Import from a CSV

Skip writing the schema by hand — pass a CSV file with --from-csv:
This parses the CSV server-side and creates a populated table in one request. Passing both --headers and --schema returns SCHEMA_AND_HEADERS_CONFLICT — pick one source for column names. See CSV Artifacts for the full comparison with the csv artifact type.

rip table append

Append one or more rows to a table.
Example:

rip table rows

List rows in a table with cursor-based pagination.
Examples:
Pass --after with the nextCursor value to fetch the next page of results.

rip table update

Update a single row by ID.
Example:

rip table delete

Delete one or more rows from a table.
Example:
Deletion is permanent. Returns a success confirmation with no row data.