

# TO\$1BOOLEAN\$1COLUMN


Changes the data type of an existing column to BOOLEAN.

**Note**  
We recommend using CHANGE\$1DATA\$1TYPE recipe action rather than TO\$1BOOLEAN\$1COLUMN.

**Parameters**
+ `sourceColumn` – The name of an existing column.
+ `columnDataType` – A value that must be `boolean`.

**Example**  
  

```
{
    "RecipeAction": {
        "Operation": "TO_BOOLEAN_COLUMN",
        "Parameters": {
            "columnDataType": "boolean",
            "sourceColumn": "is_present"
        }
    }
}
```