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

Generated Narrative

Resource "genetics-example-1"

status: active

intent: original-order

code: ABCB4 gene mutation analysis (LOINC#49874-1)

subject: Patient/example "Peter CHALMERS"

encounter: Encounter/example

occurrence: 2014-05-12T16:16:00-07:00

requester: Practitioner/example "Adam CAREFUL"

performer: Practitioner/example "Adam CAREFUL"

" ]; fhir:ServiceRequest.status [ fhir:value "active"]; fhir:ServiceRequest.intent [ fhir:value "original-order"]; fhir:ServiceRequest.code [ fhir:CodeableConcept.coding [ fhir:index 0; a loinc:49874-1; fhir:Coding.system [ fhir:value "http://loinc.org" ]; fhir:Coding.code [ fhir:value "49874-1" ] ]; fhir:CodeableConcept.text [ fhir:value "ABCB4 gene mutation analysis" ] ]; fhir:ServiceRequest.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ] ]; fhir:ServiceRequest.encounter [ fhir:link ; fhir:Reference.reference [ fhir:value "Encounter/example" ] ]; fhir:ServiceRequest.occurrenceDateTime [ fhir:value "2014-05-12T16:16:00-07:00"^^xsd:dateTime]; fhir:ServiceRequest.requester [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/example" ] ]; fhir:ServiceRequest.performer [ fhir:index 0; fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/example" ] ] . a fhir:Patient . a fhir:Encounter . a fhir:Practitioner . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------