Field Types
Core supports multiple content field types, each designed to store and return different kinds of data.
For more information, see the official documentation
Field Groups
There are 8 main groups of fields:
- Text
- Date/Time
- Select
- Radio Button
- Calculated
- Checkbox
- File/Image Uploads
Available Field Types
The following table lists all supported field types and the format of the data they return.
| Field Type | Returned Data Type / Format | Group |
|---|---|---|
| Varchar | UTF-8 text string | Text |
| Integer | Whole number | Text |
| Float | Floating-point number (up to 7 digits) | Text |
| Decimal | Exact-precision numeric value | Text |
| Double | Double-precision floating-point number | Text |
| Text Area | Long-form text (up to 2048 characters) | Text |
| Date Time | Date and time (YYYY-MM-DD HH:MM:SS) |
Date & Time |
| Date | Date (YYYY-MM-DD) |
Date & Time |
| Time | Time (HH:MM:SS) |
Date & Time |
| Radio Button | Single selected item ID | Radio Button |
| Select | Single selected item ID | Select |
| Multi Select | Comma-separated list of selected item IDs | Select |
| Checkbox | Boolean value (Yes/No or 1/0) |
Checkbox |
| File Upload | File ID | File & Image Uploads |
| Multiple File Upload | Comma-separated list of file IDs | File & Image Uploads |
| Image Upload | Image ID | File & Image Uploads |
| Multiple Image Upload | Comma-separated list of image IDs | File & Image Uploads |
| Calculated | Dynamically calculated value | Calculated |
| Signature | Signature image ID | Signature |
| Hidden | Hidden system value | Hidden |