fhirtypes
Version:
10 lines (9 loc) • 417 B
TypeScript
/**
* @name QuestionnaireEnableOperator
* @description The criteria by which a question is enabled.
* @description exists | = | != | > | < | >= | <=
* @see <a href="https://hl7.org/fhir/R4/valueset-questionnaire-enable-operator.html">QuestionnaireEnableOperator</a>
* @version R4
* @author Claudia Alarcón Lazo
*/
export type QuestionnaireEnableOperatorType = 'exists' | '=' | '!=' | '>' | '<' | '>=' | '<=';