Column

  • Defines the structure for representing a table column using JSON.

  • Includes columnId to identify the column and columnType to specify its data type using the FieldType object.

  • The provided JSON schema is used for defining columns within tables.

Defines a Table column.

JSON representation
{
  "columnId": string,
  "columnType": {
    object (FieldType)
  }
}
Fields
columnId

string

Column identifier.

columnType

object (FieldType)

Column type.