Hi,
We are developing a questionnaire using the HL7 FHIR standard. However, we have not found a way to include response options that depends on a condition.
For example, in the question below the option “pregnancy” should only show if the patient is female:
- Do you have any of the conditions below?
[ ] Pregnancy (condition: only show if patient is female)
[x] Diabetes
[x] Hypertension
[ ] Asthma
Another example:
- Have you been treated for the diseases below?
[x] Diabetes (condition: only show if answer to question 1 contains diabetes)
[x] Hypertension (condition: only show if answer to question 1 contains hypertension)
[ ] Asthma
Is there any way to represent this kind of condition? We saw that enableWhen exists, but it seems to work only for the whole question.
Thank you!