Skip to main content

Property Data Type

The property data type determines the types of data generated for a specific property. When integrating your data into the generation process, it’s crucial to ensure that the provided values align with the defined type.

TypeDescription
sequenceAn auto incremental integer number
textA text value
numberA decimal number value, such as 100, -54 or 99.99
dateA date value with day-level accuracy
datetimeA date time value with second level accuracy
timeA time value without date with second level accuracy

Data Format

The output format of each data type is determined by its dialect, constraints, or both. When no constraints are present, the default output formats are listed as follows.

GeneralSQLSalesforce
sequenceInteger starting from 1, e.g. 1, 2, 3Integer starting from 1, e.g. 1, 2, 3Integer starting from 1, e.g. 1, 2, 3
textText, e.g. "abc"Text, e.g. "abc"Text, e.g. "abc"
numberNumber, e.g. 5, -3.2, 100.99Number, e.g. 5, -3.2, 100.99Number, e.g. 5, -3.2, 100.99
dateText formatted as "yyyy-MM-dd", e.g. "2024-05-31"Text formatted as "yyyy-MM-dd", e.g. "2024-05-31"Text formatted as "yyyy-MM-dd", e.g. "2024-05-31"
datetimeText formatted as "yyyy-MM-dd HH:mm:ss", e.g. "2024-05-31 15:23:17"Text formatted as "yyyy-MM-dd HH:mm:ss", e.g. "2024-05-31 15:23:17"Text formatted as "yyyy-MM-dd'T'HH:mm:ss.'000Z'", e.g. "2024-05-31T15:23:17.000Z"
timeText formatted as "HH:mm:ss", e.g. "08:05:09", "00:00:00"Text formatted as "HH:mm:ss", e.g. "08:05:09", "00:00:00"Text formatted as "HH:mm:ss.'000Z'", e.g. "08:05:09.000Z", "00:00:00.000Z"