No bound choices
Field types that do not offer choice options to select from.
Field type | Description | Scalar type | Value type in script | Length, example, or validation criteria |
---|---|---|---|---|
Big Integer | This is a numeric field type used to store large numbers. The size of the data stored is 8 bytes. In SimpleOne, it is displayed as an input field with a numeric value. | int8 | number |
Field content example: 166674708111757858 |
Days of Week | This field is displayed as a drop-down list with checkboxes presenting the days of the week: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday. Several options can be selected. Technically, the field stores a numeric value or a sum of values. The size of data is 2 bytes. Each day of the week is assigned a value: Monday = 1 For example, if Tuesday (2) and Wednesday (4) are selected, the field value is 6. | int2 | number | Minimum value is 0 (no days are selected). Maximum value of is 127 (all days are selected). Field content example: 8 |
Decimal | This field type implements numbers with up to two digits after the decimal point. | decimal | number | Field content example: 12.33 |
Duration | This field type is used to calculate the duration between two events in milliseconds. It stores an integer number. | int8 | number | Validation processing:
Field content example: 3600000 |
Encrypted Password | This field type is used to provide secure password storage in a database, with the decoding ability (two-way encryption). After entering a password and saving the record, the field becomes empty, the password is no longer available on the record form. | varchar | string | This field can contain any characters. The length is limited to 255 characters. Field content example: 0YATXJjpWt5wFPL6FiKxQA== |
Float | This field type implements a floating-point number. | float4 | number | Validation criteria:
Field content example: 0.333 |
HTML | This field type is implemented as a rich text widget. There are various settings displayed as HTML tags in a database. When this field is read-only, the data is displayed as HTML; otherwise, it is displayed as text that can be edited and transformed. There are two modes to use in this field: rich text editor and source editor. You can enter the source editor by clicking Source on the panel. Changes made in one modes are displayed in the other, and vice versa. | text | string | This field can contain any characters and is lengthless unless limited by the Max length attribute. Field content example: <html><head><title></title></head><body><h3>Email body:</h3><p><code>"Hello world!"</code></p></body></html> |
Integer | This is a numeric field type. The size of the stored data is 4 bytes. | int4 | number | The value specified should not exceed this range: [-2147483648 ... +2147483647]. Field content example: 1211345967 |
Journal Input | This field type is used to operate with the comment widget. Due to its specifics, the field cannot be read only. It is implemented as a text area with a placeholder or a field title. There are two ways to leave a comment using the Journal Input column type:
When comments are added, they are stored in two tables:
| text | string | This field can be used to submit any characters and is lengthless unless limited by the Max length attribute. In the database, a journal input column always contains an empty string: Field content example: "" |
JSON | This field type is physically stored as JSON. | jsonb | string | JSON type fields are validated as if they contain a string structured in a JSON way. To learn more about this, please refer to official JSON documentation. Field content example: {"name": "White", "color": "#ffffff", "policy": "Open", "sys_id": 158462172516422349, "application_id": 155931135900000002, "sys_created_at": "2020-03-19 12:42:05", "sys_created_by": 155931135900000001, "sys_updated_at": "2020-03-19 12:42:05", "sys_updated_by": 155931135900000001} |
Password | This field stores passwords. It is displayed as an input field. After entering a password and saving the record, the field becomes empty, the password is no longer available on the record form. | varchar | string | This field can contain any characters. The length is limited to 255 characters. Field content example: $2y$13$MtP.z1mkGN.SdrzhzBQQ7.XaXgg58IS/qm2/wwQSeT/B58fxNMQGK |
Percent Complete | This field type is used to display a task completion rate. | decimal | number | Validation criteria:
Field content example: 99.90 |
Phone | This field stores phone numbers. In the SimpleOne interface, it is displayed as an input field with the phone number. | varchar | string | Validation criteria:
Field content example: +74951818520 |
Script | This field type is physically implemented as a lengthless text string. In the interface, it is displayed as a CodeMirror widget (JS component that provides ability of the code editing in a browser). | text | string | This field can contain any characters and is lengthless. It can be limited by the Max length attribute. Automatic script validation during form submission is configured for some fields of the script type. Field content example: // console.log() |
Small Integer | This is a numeric field type. The size of the data stored is 2 bytes. | int2 | number | The value specified should not exceed this range: [-32768 ... +32767]. Field content example: 12 |
String | This field type is physically implemented as a string 255 characters long. In the interface, it is displayed as a text input field. | varchar | string | This field can contain any characters and is lengthless. It can be limited by the Max length attribute. Field content example: john.doe12 |
Text | This field type is physically implemented as a lengthless text string. The memory is allocated dynamically when processing the field. In the interface, it is displayed as a textarea. | text | string | This field can contain any characters and is lengthless. It can be limited by the Max length attribute. Field content example: Email body:\n"Hello world!" |
Translated Text | This field type allows the same field to display different content based on the user's chosen language. See the Translated Text Fields article to learn more. | varchar | string | This field can contain any characters and is lengthless. It can be limited by the Max length attribute. Field content example: Send email |
URL | This field type is used to store a URL. | varchar | string | This field can contain any characters. The length is limited to 1024 characters. Field content example: https://example.simpleone.ru/portal |
Choice-like fields
Field types that offer choice options to a user and can be filled by selecting a value.
Field type | Description | Scalar type | Value type in script | Length, example, or validation criteria | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
True/False | This field type implements binary logic (true or false, 1 or 0). In the interface, it is displayed as a checkbox. You can change its default value to true or false by selectiong or clearing it. | boolean | boolean | Field content example: true | |||||||||||||||||||||
Choice | This field type implements the choice functionality. In the interface, it is displayed as a drop-down list. See the Choice Fields article to learn more. Supporting fields are created for this field type in the sys_db_column table. The choice options for such columns are located in the sys_choice table. The following types of Choices are available (they vary by Choice Type setting on the column creation form):
When creating a column you can specify Choice Table and Choice Column. In this case, the Choice Column values are the options for the values of the specified table in the Choice Table. | varchar | string | This field can contain any characters. If the string length is not set, it is limited to 80 characters. Field content example: Changed | |||||||||||||||||||||
Color | This field type is intended to keep and share information about the system color or the color of an interface element. This field type is used, for example, in the Style Rules. | varchar | string | This field can contain either 4 or 7 symbols (concise or full RGB record) starting with the hash sign (#). Allowed symbols are: numbers, English letters (A to F), and the hash sign. Field content example: #db3e00 | |||||||||||||||||||||
Conditions | This field type is used to build AND/OR filters. In the interface, it is displayed as a filter configuration widget. It stores JSON conditions. | text | string | The validation criteria are:
Field content example: (active=true) | |||||||||||||||||||||
Date | This field type stores the date in the following YYYY-MM-DD format, within one day, and does not specify the time. The size of the data stored is 4 bytes. In the interface, it is displayed as an input field with a date picker. See the Date and datetime columns article to learn more. | date | string | A date must be in the ISO 8601 format:
Date elements are validated to meet the following criteria:
Available characters in this field:
Field content example: 2022-11-15 | |||||||||||||||||||||
Date/Time | This field type stores the timestamp measured in seconds. In the interface, it is displayed as an input field with a date and time picker. See the Date and Time Columns article to learn more. | timestamp | string | The datetime can be written in the ISO 8601 format as shown below: YYYY-MM-DD hh:mm:ss Datetime elements are validated to meet the following criteria:
Field content example: 2022-11-15 11:01:34 | |||||||||||||||||||||
Date/Time Specific | This field type stores the timestamp measured in seconds. In the interface, it is displayed as an input field with a date and time picker. This field type is mainly used in schedules. In contrast to the Date/Time field type, this field type uses the UTC offset parameter defined in the system timezone. See the Date and Time Columns article to learn more. | timestamp | string | The datetime can be written in ISO 8601 format like shown below: YYYY-MM-DD hh:mm:ss Datetime elements are validated to meet the following criteria:
Field content example: 2022-11-15 13:59:53 | |||||||||||||||||||||
Document ID | This field type is used to store various IDs as universally unique identifiers (UUID). A UUID is written as a series of 32 hexadecimal characters separated by hyphens into five groups in an 8-4-4-4-12 pattern:
It is 32 digits and 128 bits total. On a form, the field of this type is displayed as a reference field. It should contain a reference to a specified column in a specified table. To specify a reference, click the string or the magnifier icon and select a table and a column. | uuid | string | Validation criteria:
Field content example: 022c7bf5-6eb7-09f0-0244-bd40328f5f0f | |||||||||||||||||||||
Field Name | This field type is used to store a reference to a column in a particular table and contains a list of columns in the referenced table. To specify a reference, complete the steps below:
| int8 | string | The input string is validated to ensure that it is a string value. Field content example: 165062848110459919 | |||||||||||||||||||||
Image | This field type is used to store uploaded image files in the following formats: .jpeg, .png, .gif, .webp, .bmp, .svg, .ico. In the interface, it is displayed as a file upload modal window. | int8 | string | The value specified should not exceed this range: [9223372036854775807 ... 9223372036854775806]. Field content example: 166851128418198961 | |||||||||||||||||||||
List | This field type can contain a text string of unlimited length. It stores record IDs of the specified table and is displayed as a list of record values (which are the references to the record form). It provides you with the functionality of adding, previewing, and deleting records. See the Reference Fields article to learn more. | text | string | Validation criteria:
Field content example: 166807095216015872,166608269714919765 | |||||||||||||||||||||
Record Class | This field type is used to label the table to which the specified record is related. The Record Class field is created for a table once a newly inherited table is created for it. Initially, when creating a new root table (without any parents), the table will not have this field. Type of the stored data is ID. The size of the stored data is 8 bytes. | int8 | string | The value specified should not exceed this range: [100000000000000000 .. Example of usage:
Field content example: 155931135900000084 | |||||||||||||||||||||
Reference | This field type works like an external key and stores the record ID of the specified table. This table must be specified in the Reference field. It is stored as Big Integer. In order to limit the output when referencing a field, use the reference qualifiers. See the Reference Fields article to learn more. | int8 | string | You can use this range of whole big integers: [-9223372036854775808 … 9223372036854775807] Field content example: 155931135900000001 | |||||||||||||||||||||
Template | This field type allows for storing a set of column names and their values in JSON format for all tables. Nested JSON format is used. On the first nesting level, the element numbers starting from 1 are used as keys. Because the field type stores data pairs column name ↔ value, it is commonly used in template forms. You can use a range of whole bug integers if required. The field allows for applying stored data to records created from templates. The elements are objects in the following format:
| json | string |
Template Expand source
// the following columns of user dictionary are used: username, active, locked_out { "1": { "156943341303994936": "new_user" }, "2": { "156943341308746896": "1" }, "3": { "155931135900001086": "0" } } Empty field value: Field content example: [] | |||||||||||||||||||||
Time | This field type is used as a time storage. The timezone is not taken into account. The date is not stored. The size of the stored data is 8 bytes. See the Date and Time Columns article to learn more. | time | string | The time can be written in the ISO 8601 format as shown below: hh:mm:ss Time stamp elements are validated to meet the following criteria:
The allowed symbols are numbers and a colon ( : ). Field content example: 11:00:54 |