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.
{ "resourceType": "Organization", "id": "example-cms-organization", "meta": { "versionId": "23", "profile": [ "http://ehealthontario.ca/fhir/StructureDefinition/ca-on-cms-profile-Organization|1.0" ] }, "identifier": [ { "system": "https://fhir.infoway-inforoute.ca/NamingSystem/ca-on-provider-upi", "value": "1234567890123" } ], "type": [ { "coding": { "system": "http://terminology.hl7.org/CodeSystem/organization-type", "code": "prov", "display": "Healthcare Provider" } } ], "name": "XYZ Ear,Nose,Throat unit", "alias": [ "ENT Unit", "XYZ Unité pour les oreilles, le nez et la gorge" ], "_alias": [ { "extension": [ { "url": "http://ehealthontario.on.ca/fhir/StructureDefinition/cms-ext-OrganizationNameType", "valueCoding": { "system": "http://ehealthontario.ca/fhir/CodeSystem/cms-organization-name-type", "code": "short-name", "display": "Short Name" } } ] }, { "extension": [ { "url": "http://ehealthontario.on.ca/fhir/StructureDefinition/cms-ext-human-language", "valueCoding": { "system": "urn:ietf:bcp:47", "code": "fr" } } ] } ], "telecom": [ { "system": "phone", "value": "416-655 6780", "use": "mobile" } ], "address": [ { "use": "work", "type": "physical", "line": [ "North Wing, floor 10", "123 Some Street" ], "city": "Toronto", "state": "ON", "postalCode": "M1M 1M1", "country": "CAN" } ] }