RenameCastConfig
Config for the rename_cast op. Listed columns are renamed / cast; columns not listed pass through unchanged. input is a port key.
inputInput (string)required
Input port key
columns object[]required
Column rename / cast rules (non-empty)
Array [
nameName (string)required
Source column name
alias object
New column name (defaults to name)
- string
- null
string
cast object
Allowlisted target type
- string
- null
string
Possible values: [utf8, int64, float64, bool]
]
RenameCastConfig
{
"input": "string",
"columns": [
{
"name": "string",
"alias": "string",
"cast": "utf8"
}
]
}