For each column, just specifies the name and type and leave the other column
properties as default. In this example, the main source file has four
columns, all of type String: id,
name, age, and
city.
addSchema {
NAME: "tFileInputDelimited_1",
CONNECTOR: "FLOW"
addColumn {
NAME: "id",
TYPE: "id_String"
}
addColumn {
NAME: "name",
TYPE: "id_String"
}
addColumn {
NAME: "age",
TYPE: "id_String"
}
addColumn {
NAME: "city",
TYPE: "id_String"
}
}