
| Type | Description | mySQL equivalent | Additional Comments |
| Limited length string | A series of characters ,including letters, numbers, symbols, and whitespace, that is restricted to be under a certain length | char(x) | If this type is selected, you must also specify the maximum length of the string under the Max Length field |
| Unlimited length string | As series of characters, including letters, numbers, symbols, and whitespace. No length restriction | text | |
| Integer | An integer | int | |
| Decimal | A decimal | float | |
| Date | A date | date | Users will be provided month/day/year input fields for entering dates |
| Option List | A list of options. The value of this attribute can only be one of a list of given values. | enum('a','b','c') | If this type is selected, you must also specify the list options in the List Options field. List one option per line. |
| File | A system defined data type for storing image files | int (specifying the oid of a file object) | Users will be provided a file field with which they can browse their local filesystem for images to upload into the database. |
| User | A system defined data type for users of the system | int (specifying the oid of a user) | Users are automatically created when a new user is registered. An administrator must register new users. |
| Any other types | All other types listed are data types currently defined for the current Experiment. | int (specifying the oid of an item) | Customized data types are listed so that types can be linked to others related to the experiment. |
