> For the complete documentation index, see [llms.txt](https://en.help.firstline.cc/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://en.help.firstline.cc/feature/other/data-field-types.md).

# Data Field Types

## Overview

In the system, whether it's customer data, work orders, or other related information, you will find many different types of fields available. These field types include text, numbers, dates, etc.; each corresponds to specific data processing requirements and directly affects functionality implementation and interface display.

For example, when creating an import template, the system provides these different field types for you to choose from so you can configure them according to your needs.

## Import and export data types

<table><thead><tr><th width="128">Import field types</th><th>Format description</th><th width="159">Example Value</th><th>Usage scenarios</th></tr></thead><tbody><tr><td>Text</td><td>Text: single-line text</td><td>Hello World</td><td>Used for any scenario that requires single-line text, such as names, titles, labels, etc.</td></tr><tr><td>Multi-line text</td><td>Text: can contain multiple lines of text</td><td>Apple<br>Banana<br>Coconut</td><td>Used in scenarios that require multi-line input, such as addresses, descriptions, notes, etc.</td></tr><tr><td>Yes/No</td><td>Boolean value: (0 or 1) - 0 means No, 1 means Yes</td><td>1</td><td>Used for settings that require a yes/no judgment, such as toggle states, whether terms are accepted, etc.</td></tr><tr><td>Date</td><td>Text: YYYY-MM-DD, 24-hour format</td><td>2022-03-07</td><td>Used to record specific dates, such as birthdays, event dates, contract start or end dates</td></tr><tr><td>Time</td><td>Text: HH:MM, 24-hour format</td><td>22:05</td><td>Used to record specific times, such as meeting times, event start or end times</td></tr><tr><td>Date and time</td><td>Text: YYYY-MM-DD HH:MM:SS, 24-hour format</td><td>2022-03-07 22:05:34</td><td>Used when date and time need to be precise to the second, such as transaction times or log timestamps</td></tr><tr><td>single choice</td><td>Text: option value</td><td>value</td><td>Used to select one from fixed options, such as blood type, country, status, etc.</td></tr><tr><td>Multiple choice</td><td>Text: multiple option values separated by delimiters; ",", ":", or ";" can be used</td><td>value1; value2; value3</td><td>Used to select multiple options, such as interests, product types, etc.</td></tr><tr><td>Employee</td><td>Number: a single number representing the system ID number</td><td>5</td><td>Used to identify a unique number for employees or participants, for internal management or system relations</td></tr><tr><td>Customer relation table</td><td>Number: a single number representing the system ID number</td><td>45</td><td>Used to identify the unique number of a customer or other entity, for business or customer relationship management</td></tr></tbody></table>
