-
Notifications
You must be signed in to change notification settings - Fork 4
FHIRPath Expressions
Paths are defined using FhirPath, which is an expression language defined by FHIR. In its simplest form, this can take the form of a single dotted path:
Patient.name.given
In the example above, the FHIRPath expression matches all of the patient's given names.
The Form Behavior, Questionnaire Population and Data Extraction all rely on (or have features that rely on) the use of expressions.
Expressions are introduced into Questionnaires using extensions - none of the 'core' data elements of Questionnaire makes use of extensions because they're considered an 'advanced' capability that is not currently supported by a large portion of the systems that make use of the Questioannaire resource. The extensions that make use of expressions and are supported in Android FHIR SDK are shown in the table below. Check out all types of available expression extensions
The variable expression sets a variable that is available for use in expressions within the same item and any descendant items. It has two main uses:
- It allows a complex calculation to be done once and used in multiple other places. (E.g. Determining the score for one group within the questionnaire response that will then be used in calculations on subsequent groups.)
- It allows a calculation to be done closer to the root of the questionnaire response or at the root of the questionnaire response where there is access to more of or all the answers from the questionnaire response. The calculated value might then be used as the answer to a descendant question. (Expressions cannot access answers that are not descendants of the current node.)
The content type of a variable can be pretty much anything. It can be a collection or an individual item. It can be a simple element, a complex type, a resource or even a Bundle of resources. The variable can be referenced by its name. Variable expressions SHALL specify a name. It is not allowed to define variable names that are already reserved by the base specification or by other variables in the questionnaire.
Variable expressions can be defined at the questionnaire and questionnaire item levels. The Structure Data Capture Library provides separate APIs to evaluate variable expressions defined at either questionnaire or questionnaire item level.
{
"resourceType": "Questionnaire",
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/variable",
"valueExpression": {
"name": "weight",
"language": "text/fhirpath",
"expression": "%resource.repeat(item).where(linkId='3.3.1').item.answer.valueDecimal"
}
}
],
"item": [
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-unit",
"valueCoding": {
"system": "http://unitsofmeasure.org",
"code": "kg"
}
}
],
"linkId": "3.3.1",
"text": "Weight (kg)",
"type": "decimal"
}
]
}
To evaluate variable expressions defined at Questionnaire level, we have to pass a variable expression, Questionnaire, QuestionnaireResponse and an optional varaiblesMap
internal fun evaluateQuestionnaireVariableExpression(
expression: Expression,
questionnaire: Questionnaire,
questionnaireResponse: QuestionnaireResponse,
variablesMap: MutableMap<String, Base?> = mutableMapOf()
): Base?
"item": [
{
"linkId": "/groupA",
"text": "Group A",
"type": "group",
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/variable",
"valueExpression": {
"name": "X",
"language": "text/fhirpath",
"expression": "item.where(linkId='/groupA/fieldB').answer[0].valueInteger"
}
},
{
"url": "http://hl7.org/fhir/StructureDefinition/variable",
"valueExpression": {
"name": "Y",
"language": "text/fhirpath",
"expression": "%X + 2",
"comment": "References another variable on the same group"
}
}
],
"item": [
{
"linkId": "/groupA/fieldB",
"text": "Field B",
"type": "integer"
}
]
}
]
To evaluate variable expressions defined at Questionnaire item level, we have to pass a variable expression, questionnaire, QuestionnaireResponse, questionnaireItemParentMap,QuestionnaireItem and an optional varaiblesMap
internal fun evaluateQuestionnaireItemVariableExpression(
expression: Expression,
questionnaire: Questionnaire,
questionnaireResponse: QuestionnaireResponse,
questionnaireItemParentMap:
Map<Questionnaire.QuestionnaireItemComponent, Questionnaire.QuestionnaireItemComponent>,
questionnaireItem: Questionnaire.QuestionnaireItemComponent,
variablesMap: MutableMap<String, Base?> = mutableMapOf()
): Base?
Besides using initial property in Questionnaire.item for providing a default answer on questionnaire load, initial expression is another alternate way of providing default answer based on a FHIRPath expression i.e. rather than specifying a fixed value, the value is calculable.
- It is a Questionnaire.item-level extension
- Examples could be
- current date i.e.
today() + 7 days
or - an expression based on current QuestionnaireResponse.item.answer. The QuestionnaireResponse in the current context can be referred to by %resource. i.e.
%resource.item.where(linkId='weight').answer.first()
- an expression of based on launch context or information queried from external sources i.e.
%patient.birthDate
, full example questionnaire can be found here. - an expression based on
variable
extension. i.e.%weight * 0.25
. See variable rules here
- current date i.e.
Both of the approaches are mutually exclusive and only one of these can be specified.
"item": [
{
"extension": [
{
"url": "http://hl7.org/fhir/uv/sdc/StructureDefinition/sdc-questionnaire-initialExpression",
"valueExpression": {
"language": "text/fhirpath",
"expression": "today() + 7 days"
}
}
],
"linkId": "3.1",
"text": "Next follow up date",
"type": "date",
}
]
enableWhen
aka skip logic controls which questions, groups and display items would show or hide based on answers of other referenced questions within the response.
Besides using enableWhen property in Questionnaire.item for providing skip logic, enableWhen expression is another alternate way of providing skip logic based on a dynamic fhirpath expression.
- Elements that are not enabled are hidden from the user and can not be edited
- It needs to be evaluated each time any of the answers it depends on changes
- Any constraints associated with non-enabled elements i.e. required or minOccurs are ignored and no answers are stored for these.
- Examples could be
- an expression based on current QuestionnaireResponse.item.answer. The QuestionnaireResponse in current context can be referred by %resource. i.e.
%resource.item.where(linkId='weight').answer.first() > 45
- an expression of based on launch context or information queried from external sources i.e.
%patient.deceased = flase
, full example questionnaire can be found here. - an expression based on
variable
extension. i.e.%weight > 60
. See variable rules here
- an expression based on current QuestionnaireResponse.item.answer. The QuestionnaireResponse in current context can be referred by %resource. i.e.
Both of the approaches are mutually exclusive and only one of these can specified.
"extension" : [
{
"url" : "http://hl7.org/fhir/uv/sdc/StructureDefinition/sdc-questionnaire-enableWhenExpression",
"valueExpression" : {
"language" : "text/fhirpath",
"expression" : "%resource.repeat(item).where(linkId='gender').answer.value.code ='female' and %resource.repeat(item).where(linkId='age').answer.value > 49"
}
}
],
"linkId" : "3.1",
"text" : "Is women or non reproductive age",
"type" : "boolean"
}
Calculated Expression is an extension which allows to set answers to Questionnaire.item (generally but not limited to readOnly or hidden). The calculation is dynamic via a fhirpath expression which can be based on answers of other Questionnaire.items.
- Unlike initialExpression extension, instead of only setting value on Questionnaire.item loading, this extension- keeps updating the value as soon as the answers of dependent questions change.
- Mostly it is used for displaying or calculating scores, patient age, BMI, estimated cost etc
- In most cases, 'calculated' answers are 'readOnly', however, the extension can be applied to any Questionnaire.item.
- For modifiable Questionnaire.item if a user has edited the answer of calculated expression, it can no longer be changed based on expression i.e. an edited item does not update by expression anymore
- Examples could be
- an expression based on current QuestionnaireResponse.item.answer. The QuestionnaireResponse in current context can be referred by %resource. i.e.
%resource.item.where(linkId='weight').answer.first()
- an expression of based on launch context or information queried from external sources i.e.
%patient.active
, full example questionnaire can be found here. - an expression based on
variable
extension. i.e.%weight + 20
. See variable rules here
- an expression based on current QuestionnaireResponse.item.answer. The QuestionnaireResponse in current context can be referred by %resource. i.e.
"item": [
{
"linkId": "birthdate",
"text": "Birth Date",
"type": "date",
"extension": [
{
"url": "http://hl7.org/fhir/uv/sdc/StructureDefinition/sdc-questionnaire-calculatedExpression",
"valueExpression": {
"language": "text/fhirpath",
"expression": "%resource.repeat(item).where(linkId='age-years' and answer.empty().not()).select(today() - answer.value)"
}
}
]
},
{
"linkId": "age-years",
"text": "Age years",
"type": "quantity",
"initial": [{
"valueQuantity": {
"unit": "years",
"system": "http://unitsofmeasure.org",
"code": "years"
}
}]
}
]
The possible answers for a Questionnaire.item are restricted or validated based on it type. The allowed value of a Questionnaire.item must conform to an enumerated set. The answerOption the possible allowed values and the type of answerOption must match the type of the question. (Coding type is used for choice and open-choice)
Mainly answers can be enumerated by three ways
- answerOption are hardcoded set of option values and works well when there is a small number of choices and support variety of question types
- answerValueSet element only supports 'string' and Coding elements. It is better when set of codes is large or dynamic e.g. SNOMED or LOINC codes
-
answerExpression extension allows a FHIR Query, FHIRPath, or CQL (not implemented yet) expression that can be resolved to a list of permitted answers.
- Expression must evaluate to a collection with the same type as the Questionnaire.item.type
- If the type is Reference it should evaluate to resources allowed as the referenced type
- It is often used with Choice Column extension to provide display or UI definitions
- Currently Choice Column is applicable only for reference type. With a Reference choiceColumn allows selection of fields from the resource evaulated by x-fhir-query e.g.
name.first().given.first() + ' ' + name.first().family
for the full name of a Patient or Practitioner. - For multiple repetitions of the Choice Column extension the columns (concatenated values separated by space) are displayed in the same order as the extensions appear on the Questionnaire.item. If multiple columns are marked with
"forDisplay": true
, the display value used will be a space-separated concatenation of all column
- Examples of expression are
-
FHIR Query i.e.
Patient?active=true&name=john
-
FHIRPath which must conform to item type i.e.
%resource.item.where(type='choice' and answer.empty().not()).answer
- CQL - not implemented yet
-
FHIR Query i.e.
All three mechanisms are mutually exclusive and only one can appear on same question
Use of other Value Constraint elements is redundant and confusing, hence, when using any of these to restrict answers do not make use of any of the other Value Constraint extensions.
"item": [
{
"extension": [
{
"url": "http://hl7.org/fhir/uv/sdc/StructureDefinition/sdc-questionnaire-answerExpression",
"valueExpression": {
"language": "application/x-fhir-query",
"expression": "Practitioner?active=true&_sort=family,given"
}
},
{
"extension": [
{
"url": "path",
"valueString": "name.where(use='official').family + ', ' + name.where(use='official').given.first()"
},
{
"url": "forDisplay",
"valueBoolean": true
}
],
"url": "http://hl7.org/fhir/uv/sdc/StructureDefinition/sdc-questionnaire-choiceColumn"
},
{
"extension": [
{
"url": "path",
"valueString": "'(' + gender + ')'"
},
{
"url": "forDisplay",
"valueBoolean": true
}
],
"url": "http://hl7.org/fhir/uv/sdc/StructureDefinition/sdc-questionnaire-choiceColumn"
}
],
"linkId": "1.0.0",
"text": "Preferred practitioner",
"type": "reference"
}
]