Specify the data type you wish to extract.
column_type = `assets`
to specify a column that your documents will be uploaded into. Reference the sign_in_sheet
example above:transform_type = 'parse'
. This operation must have column_type = 'assets'.
text
.
14:30:00
).
2025-03-03
).
column_type = 'list'
when you want to extract a list of “primitive” data from your assets or other columns. For example, if you wanted to extract a list of registered names from a sign-in sheet, you could specify the following transformation_params
object:list
, then operations should only be of length 1 since list
can only be of one type.column_type = 'object'
when you want to extract a list of “complex” data from your assets or other columns. For example, if you wanted to extract an object for each registered member from a sign-in sheet, you could specify the following transformation_params
object:column_type = `object`
, you can include as many operations as required, and even nest them!