id
stringlengths
7
9
content
stringlengths
37
141
fhirpath
stringlengths
10
246
topic
stringclasses
9 values
train_100
FHIR path expression for SNOMED-CT code indicating the assessment result
Observation.valueCodeableConcept.coding.where(system='http://snomed.info/sct').first().code
Observation
train_101
FHIR path expression for identifier of the encounter that this assessment is done
Observation.encounter
Observation
train_102
FHIR path expression for code for the condition (ICD-10 or SNOMED-CT)
Condition.code.coding.where(system='http://hl7.org/fhir/sid/icd-10' or system='http://snomed.info/sct').code.first()
Condition
train_103
FHIR path expression for certainty of diagnosis
Condition.verificationStatus.coding.where(system='http://terminology.hl7.org/CodeSystem/condition-ver-status').code.first()
Condition
train_104
FHIR path expression for whether condition is patient reported
Condition.asserter.reference.startsWith('Patient/')
Condition
train_105
FHIR path expression for identifier of the encounter that this diagnosis is done
Condition.encounter.reference
Condition
train_106
FHIR path expression for medication start date
MedicationStatement.effectivePeriod.start
MedicationStatement
train_107
FHIR path expression for medication end date
MedicationStatement.effectivePeriod.end
MedicationStatement
train_108
FHIR path expression for ATC code for the medication
MedicationStatement.medicationCodeableConcept.coding.where(system='http://www.whocc.no/atc').code
MedicationStatement
train_109
FHIR path expression for how many times per day the medication is taken
MedicationStatement.dosage.timing.repeat.frequency
MedicationStatement
train_110
FHIR path expression for dose per usage
MedicationStatement.dosage.doseAndRate.doseQuantity.value
MedicationStatement
train_111
FHIR path expression for unit of dose
MedicationStatement.dosage.doseAndRate.doseQuantity.unit
MedicationStatement
train_112
FHIR path expression for SNOMED-CT code indicating the pregnancy status
Observation.valueCodeableConcept.coding.where(system='http://snomed.info/sct').first().code
Observation
train_113
FHIR path expression for start time for the risk
Observation.effectivePeriod.start
Observation
train_114
FHIR path expression for end time of the risk if it is no longer valid
Observation.effectivePeriod.end
Observation
train_115
FHIR path expression for code indicating the type of the risk
Observation.code.coding.where(system='http://snomed.info/sct').first().code
Observation
train_116
FHIR path expression for whether patient has the risk or not
Observation.valueBoolean
Observation
train_117
FHIR path expression for if risk is critical or not
Observation.component.where(code.coding.exists(system='http://snomed.info/sct' and code='246112005')).valueBoolean
Observation
train_119
FHIR path expression for if risk is permanent or not
Observation.component.where(code.coding.exists(system='http://snomed.info/sct' and code='260868000')).valueBoolean
Observation
train_120
FHIR path expression for certainty of risk
Observation.component.where(code.coding.exists(system='http://snomed.info/sct' and code='246103008')).valueCodeableConcept.coding.code.first()
Observation
train_121
FHIR path expression for identifier of the encounter that this assessment is done
Observation.encounter.reference
Observation
train_122
FHIR path expression for SNOMED-CT code indicating the symptom
Observation.code.coding.where(system='http://snomed.info/sct').first().code
Observation
train_123
FHIR path expression for whether symptom seen
Observation.valueBoolean
Observation
train_124
FHIR path expression for patient's home address
Patient.address.where(use = 'home').first()
Patient
train_125
FHIR path expression for patient's work address
Patient.address.where(use = 'work').first()
Patient
train_126
FHIR path expression for patient's marital status
Patient.maritalStatus.coding.where(system = 'http://hl7.org/fhir/ValueSet/marital-status' and code.exists()).first().code
null
train_127
FHIR path expression for married patient records
Patient.where(maritalStatus.coding.exists(system = 'http://hl7.org/fhir/ValueSet/marital-status' and code = 'M'))
Patient