/** * @name ItemType * @description Distinguishes groups from questions and display text and indicates data type for questions. * @description group | display | question | boolean | decimal | integer | date | dateTime | time | string | text | url | choice | open-choice | attachment | reference | quantity * @see ItemType * @version R4 * @author Claudia Alarcón Lazo */ export type ItemTypeType = 'group' | 'display' | 'question' | 'boolean' | 'decimal' | 'integer' | 'date' | 'dateTime' | 'time' | 'string' | 'text' | 'url' | 'choice' | 'open-choice' | 'attachment' | 'reference' | 'quantity';