Variable data help to prepare the processing of answers (coding scheme).

interface VariableInfo {
    id: string;
    alias?: string;
    type: AllowedPropertiesValues.VariableInfoType;
    format?: AllowedPropertiesValues.Format;
    multiple?: boolean;
    nullable?: boolean;
    values?: values[];
    valuePositionLabels?: valuePositionLabels[];
    valuesComplete?: boolean;
    page?: string;
}

Properties

id: string
alias?: string
multiple?: boolean
nullable?: boolean
values?: values[]
valuePositionLabels?: valuePositionLabels[]
valuesComplete?: boolean
page?: string