QI-Core Implementation Guide - This is the current published version.. See the Directory of published versions
Formats: Narrative, XML, JSON, Turtle
Raw ttl
@prefix fhir: <http://hl7.org/fhir/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- a fhir:Flag; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-flag"; fhir:index 0; fhir:link <http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-flag> ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: example</p><p><b>meta</b>: </p><p><b>identifier</b>: 12345</p><p><b>status</b>: inactive</p><p><b>category</b>: admin <span style=\"background: LightGoldenRodYellow\">(Details : {http://example.org/local code 'admin' = 'admin', given as 'Admin'})</span></p><p><b>code</b>: Patient has a big dog at his home. Always always wear a suit of armor or take other active counter-measures <span style=\"background: LightGoldenRodYellow\">(Details : {http://example.org/local code 'bigdog' = 'bigdog', given as 'Big dog'})</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">Peter Patient. Generated Summary: id: example; Medical record number = 12345 (USUAL); active; Peter James Chalmers (OFFICIAL), Jim Chalmers , Peter James Windsor (MAIDEN); ph: (03) 5555 6473(WORK), ph: (03) 3410 5613(MOBILE), ph: (03) 5555 8834(OLD); gender: male; birthDate: 1974-12-25; </a></p><p><b>period</b>: Jan 17, 2015 12:00:00 AM --> Dec 1, 2016 12:00:00 AM</p><p><b>author</b>: <a href=\"Practitioner-example.html\">Nancy Nurse. Generated Summary: id: example; 23; active; Adam Careful </a></p></div>" ]; fhir:Flag.identifier [ fhir:index 0; fhir:Identifier.value [ fhir:value "12345" ] ]; fhir:Flag.status [ fhir:value "inactive"]; fhir:Flag.category [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://example.org/local" ]; fhir:Coding.code [ fhir:value "admin" ]; fhir:Coding.display [ fhir:value "Admin" ] ]; fhir:CodeableConcept.text [ fhir:value "admin" ] ]; fhir:Flag.code [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://example.org/local" ]; fhir:Coding.code [ fhir:value "bigdog" ]; fhir:Coding.display [ fhir:value "Big dog" ] ]; fhir:CodeableConcept.text [ fhir:value "Patient has a big dog at his home. Always always wear a suit of armor or take other active counter-measures" ] ]; fhir:Flag.subject [ fhir:Reference.reference [ fhir:value "Patient/example" ]; fhir:Reference.display [ fhir:value "Peter Patient" ] ]; fhir:Flag.period [ fhir:Period.start [ fhir:value "2015-01-17"^^xsd:date ]; fhir:Period.end [ fhir:value "2016-12-01"^^xsd:date ] ]; fhir:Flag.author [ fhir:Reference.reference [ fhir:value "Practitioner/example" ]; fhir:Reference.display [ fhir:value "Nancy Nurse" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.