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

Generated Narrative

Resource "example-pgx"

status: active

intent: original-order

code: CYP2D6 gene targeted mutation analysis (LOINC#47403-1)

subject: Patient/899962

authoredOn: 2016-10-10T15:00:00-07:00

requester: Practitioner/12345

" ]; fhir:ServiceRequest.status [ fhir:value "active"]; fhir:ServiceRequest.intent [ fhir:value "original-order"]; fhir:ServiceRequest.code [ fhir:CodeableConcept.coding [ fhir:index 0; a loinc:47403-1; fhir:Coding.system [ fhir:value "http://loinc.org" ]; fhir:Coding.code [ fhir:value "47403-1" ]; fhir:Coding.display [ fhir:value "CYP2D6 gene targeted mutation analysis" ] ] ]; fhir:ServiceRequest.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/899962" ] ]; fhir:ServiceRequest.authoredOn [ fhir:value "2016-10-10T15:00:00-07:00"^^xsd:dateTime]; fhir:ServiceRequest.requester [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/12345" ] ] . a fhir:Patient . a fhir:Practitioner . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------