FQL is a query language that allows you to retrieve, filter and project data from any data source containing FHIR Resources. It brings the power of three existing languages together: SQL, JSON and FhirPath. It allows you to create tables and is useful for gaining insight and perform quality control.
<Observation xmlns="http://hl7.org/fhir"> <id value="MannerOfDeath" /> <meta> <profile value="http://nightingaleproject.github.io/fhirDeathRecord/StructureDefinition/sdr-causeOfDeath-MannerOfDeath" /> </meta> <text> <status value="generated" /> --- We have skipped the narrative for better readability of the resource --- </text> <status value="final" /> <code> <coding> <system value="http://loinc.org" /> <code value="69449-7" /> <display value="Manner of death" /> </coding> </code> <subject> <reference value="Patient/Decedent" /> </subject> <valueCodeableConcept> <coding> <system value="http://snomed.info/sct" /> <code value="38605008" /> <display value="Natural" /> </coding> </valueCodeableConcept> </Observation>