@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:ServiceRequest; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "colonoscopy"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

Generated Narrative

Resource "colonoscopy"

identifier: id: 45678

requisition: id: req12345

status: completed

intent: order

code: Colonoscopy (SNOMED CT#73761001 "Colonoscopy (procedure)")

subject: Patient/example "Peter CHALMERS"

authoredOn: 2017-03-05

requester: Practitioner/3ad0687e-f477-468c-afd5-fcc2bf897809: Dr. Beverly Crusher

performer: Practitioner/example: Dr Adam Careful "Adam CAREFUL"

" ]; fhir:ServiceRequest.identifier [ fhir:index 0; fhir:Identifier.value [ fhir:value "45678" ] ]; fhir:ServiceRequest.requisition [ fhir:Identifier.system [ fhir:value "http://bumc.org/requisitions" ]; fhir:Identifier.value [ fhir:value "req12345" ] ]; fhir:ServiceRequest.status [ fhir:value "completed"]; fhir:ServiceRequest.intent [ fhir:value "order"]; fhir:ServiceRequest.code [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:73761001; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "73761001" ]; fhir:Coding.display [ fhir:value "Colonoscopy (procedure)" ] ]; fhir:CodeableConcept.text [ fhir:value "Colonoscopy" ] ]; fhir:ServiceRequest.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ] ]; fhir:ServiceRequest.authoredOn [ fhir:value "2017-03-05"^^xsd:date]; fhir:ServiceRequest.requester [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/3ad0687e-f477-468c-afd5-fcc2bf897809" ]; fhir:Reference.display [ fhir:value "Dr. Beverly Crusher" ] ]; fhir:ServiceRequest.performer [ fhir:index 0; fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/example" ]; fhir:Reference.display [ fhir:value "Dr Adam Careful" ] ] . a fhir:Patient . a fhir:Practitioner . a fhir:Practitioner . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------