df_write_fact_table
Create, replace, or update a fact table in DataForge. Use create for new tables, replace to reset unspecified fields, update to change only specified attributes.
Instructions
WRITES TO DATAFORGE. Create, replace or update a fact table. A fact table created via the API has no base physical table; attach elements with df_assign_to_fact_table.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | create = POST a new entity; replace = PUT, which resets every optional field not supplied; update = PATCH, which changes only supplied fields. | create |
| name | No | ||
| project_id | Yes | DataForge project id | |
| version_id | Yes | Project version id | |
| description | No | ||
| fact_table_id | No | ||
| idempotency_key | No | Optional UUID v4. Reusing a key within 24 hours replays the original response instead of applying the change twice. One is generated automatically when omitted. |