본문으로 건너뛰기

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)필수

Input port key

columns object[]필수

Column rename / cast rules (non-empty)

  • Array [
  • nameName (string)필수

    Source column name

    alias object

    New column name (defaults to name)

    하나 이상(anyOf)
    string
    cast object

    Allowlisted target type

    하나 이상(anyOf)
    string

    Possible values: [utf8, int64, float64, bool]

  • ]
  • RenameCastConfig
    {
    "input": "string",
    "columns": [
    {
    "name": "string",
    "alias": "string",
    "cast": "utf8"
    }
    ]
    }