fdr
fdr

Reputation: 11

Is it possible to enable a question in FHIR Questionnaire based on a patient's characteristic? e.g.: age, sex

I have seen in Questionnaire FHIR examples that with enableWhen it is possible to enable or not questions depending on whether the answer to another question takes a certain value or not.

 "enableWhen": [
        {
           "question": "1.1",
           "operator": "=",
           "answerCoding": {
              "system": "http://terminology.hl7.org/CodeSystem/v2-0136",
              "code": "Y"
           }
        }
 ],

Is it possible to do this depending on a characteristic of the patient? For example: enable when the sex is female, enable when the patient is between 20 and 40 years old...

Is there a link to examples of this type that I can consult or can someone provide this kind of examples?

Upvotes: 1

Views: 257

Answers (1)

Grahame Grieve
Grahame Grieve

Reputation: 3586

Have a look at the FHIR SDC specification. See http://hl7.org/fhir/uv/sdc/history.html. In this case, it's worth checking out the continuous integration build version - it's about to be published as a major update

Upvotes: 1

Related Questions