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.