# FieldTypes: HubSpot Domain FieldTypes Lookup-table that translates code values of the domain 'FieldTypes' into descriptions. - Catalog: `HubSpot` - Schema: `CodeValues` - Label: Domain FieldTypes Example: The code value 'booleancheckbox' means 'Input that will allow users to selected one of either Yes or No'. - Retrieve: True ## View Columns The columns of the view `FieldTypes` are shown below. Each column has an SQL data type. | Name | Data Type | Label | Required | Documentation | |---|:---:|---|:---:|---| | `code` | `varchar2(240)` | Code | ☑ | Unique code within the domain. | | `description` | `varchar2(4000)` | Description | ☐ | Meaning of the unique code within the domain. | | `domain` | `varchar2(240)` | Domain | ☑ | Each domain defines a map of codes to values. | | `resource_code` | `varchar2(240)` | Resource Code | ☐ | Resource code for internationalization. | ## Values | Code | Description | |:---:|---| | `booleancheckbox` | Input that will allow users to selected one of either Yes or No | | `calculation_equation` | Custom equation that can calculate values based on other property values and/or associations | | `checkbox` | List of checkboxes that will allow a user to select multiple options from a set of options allowed for the property | | `date` | Date value, displayed as a date picker | | `file` | Allows for a file to be uploaded to a form, stored and displayed as a URL link to the file | | `html` | String, rendered as sanitized html, that enables the use of a rich text editor for the property | | `number` | String of numerals or numbers written in decimal or scientific notation | | `radio` | Input that will allow users to select one of a set of options allowed for the property | | `select` | Dropdown input that will allow users to select one of a set of options allowed for the property | | `text` | Plain text string, displayed in a single line text input | | `textarea` | Plain text string, displayed as a multi-line text input |