Defines the data types used across Knit's API responses and data models. Use this as a reference when parsing API responses or building integrations.
Here's a list of different data types supported by Knit
| Type | Description | Example |
|---|---|---|
String | Any valid UTF-8 sequence of characters | "John Doe" |
Date | ISO Timestamp of the format yyyy-MM-ddTHH:mm:ss | 2022-09-23T13:45:00Z |
List[X] | An ordered list of objects of type X. X can be Text, Date or some other data model. | ["tag1","tag2"] |
Enum | One of a possible set of values. | "Home_present" |

