@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:ServiceRequest; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "ReferralRequestExample06"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://hl7.org.cn/fhir/sd/ehr/StructureDefinition/profile-referral-request"; fhir:index 0; fhir:link ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "" ]; fhir:ServiceRequest.status [ fhir:value "active"]; fhir:ServiceRequest.intent [ fhir:value "proposal"]; fhir:ServiceRequest.code [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:3457005; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "3457005" ]; fhir:Coding.display [ fhir:value "转诊" ] ] ]; fhir:ServiceRequest.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/PatientExample01" ]; fhir:Reference.display [ fhir:value "张三" ] ]; fhir:ServiceRequest.encounter [ fhir:link ; fhir:Reference.reference [ fhir:value "Encounter/FollowupEncounterExample06" ] ]; fhir:ServiceRequest.authoredOn [ fhir:value "2002-08-23T16:45:50.597-05:00"^^xsd:dateTime]; fhir:ServiceRequest.requester [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/PractitionerExample01" ]; fhir:Reference.display [ fhir:value "赵勇" ] ]; fhir:ServiceRequest.performer [ fhir:index 0; fhir:link ; fhir:Reference.reference [ fhir:value "Organization/DepartmentExample01" ]; fhir:Reference.display [ fhir:value "急诊科" ] ], [ fhir:index 1; fhir:link ; fhir:Reference.reference [ fhir:value "Organization/OrganizationExample03" ]; fhir:Reference.display [ fhir:value "北大人民医院" ] ]; fhir:ServiceRequest.reasonCode [ fhir:index 0; fhir:CodeableConcept.text [ fhir:value "转诊原因" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------