Skip to content

Single-Line Text Field

Single-line text is the most basic field type, used to store brief text content.

Physical Field Type

  • MySQL: varchar
  • PostgreSQL: varchar
  • SQLite: text

Applicable Scenarios

  • Username
  • Product name
  • Article title
  • Brief description

API Return Example

json
{
  "name": "John Doe"
}

Tip

If you need to store longer text content, it is recommended to use the Multi-Line Text field type.

Released under the MIT License.