Skip to main content
The table below outlines all valid data types and their expected formats. Following these specifications will ensure your CSV files are processed correctly by the Envisso platform and prevent validation errors. Each data type has an example showing exactly how the data should appear in your CSV columns.
TypeDefinitionExample
stringA sequence of characters — letters, numbers, and symbols. Typically enclosed in quotes."Hello world"
booleanOne of two possible values: TRUE or FALSE. Typically not enclosed in quotes.TRUE
dateAn ISO 8601 date string."2024-01-30"
datetimeAn ISO 8601 datetime string. Ideally UTC with a Z designator or UTC offset."2024-01-30T12:00:00Z"
currencyThree-letter currency code (ISO 4217 alpha-3)."SGD"
countryTwo-letter country code (ISO 3166 alpha-2)."SG"
integerA whole number (positive, negative, or zero) — no fractional part, up to int64. Typically not enclosed in quotes.1000000
decimalA number with a whole and fractional part. Only a dot as the decimal separator. Up to 5 fractional digits; whole part up to int64. Typically not enclosed in quotes.20.50
urlA URL where the protocol (http:// or https://) can be omitted."www.example.com"
timezoneA timezone name from the latest tz database."Asia/Singapore"
enumA string that must exactly match one of a predefined set of allowed values. Uppercase preferred."PENDING"