Skip to content

Add Column Rule (add_column) โ€‹

Adds a new column with a specified default value.

FieldDescriptionRequired
column_nameName of the new column to addโœ… Yes
default_valueDefault value for the new columnโœ… Yes

Example: โ€‹

json
{
    "type": "add_column",
    "column_name": "processed_flag",
    "default_value": true
}

Behavior: Adds a new column processed_flag with default value true for all rows.