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:
--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:
rip table update
Update a single row by ID.
Example:
rip table delete
Delete one or more rows from a table.
Example: