HL7中国FHIR Connectathon测试实施指南
V20230304 - release

HL7中国FHIR Connectathon测试实施指南 - Local Development build (vV20230304). See the Directory of published versions

: RxEncounterExample01 - TTL Representation

Raw ttl | Download


@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:Encounter;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "RxEncounterExample01"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>status</b>: finished</p><p><b>class</b>: <span title=\"{http://terminology.hl7.org/CodeSystem/v3-ActCode IMP}\">住院诊疗</span></p><p><b>type</b>: <span title=\"Codes: \">新冠肺炎入院</span></p><p><b>subject</b>: <a href=\"Patient-PatientExample01.html\">张三. Generated Summary: active; 张三; Phone: 010-1234567; gender: female; birthDate: 1955-10-25</a></p><p><b>period</b>: 2021年5月7日 下午12:30:02 --&gt; 2002年8月20日 下午4:45:50</p><h3>Diagnoses</h3><table class=\"grid\"><tr><td>-</td><td><b>Condition</b></td><td><b>Use</b></td></tr><tr><td>*</td><td><a href=\"Condition-RxDiagnosisExample01.html\">新冠肺炎. Generated Summary: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/condition-category encounter-diagnosis}\">诊断</span>; <span title=\"Codes: {http://hl7.org/fhir/sid/icd-10 J12.82}\">新冠肺炎</span></a></td><td><span title=\"Codes: {http://terminology.hl7.org/CodeSystem/diagnosis-role DD}\">出院诊断</span></td></tr></table><p><b>serviceProvider</b>: <a href=\"Organization-RxHospitalExample.html\">北大人民医院. Generated Summary: name: 北大人民医院</a></p></div>"
  ];
  fhir:Encounter.status [ fhir:value "finished"];
  fhir:Encounter.class [
     fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
     fhir:Coding.code [ fhir:value "IMP" ];
     fhir:Coding.display [ fhir:value "住院诊疗" ]
  ];
  fhir:Encounter.type [
     fhir:index 0;
     fhir:CodeableConcept.text [ fhir:value "新冠肺炎入院" ]
  ];
  fhir:Encounter.subject [
     fhir:Reference.reference [ fhir:value "Patient/PatientExample01" ];
     fhir:Reference.display [ fhir:value "张三" ]
  ];
  fhir:Encounter.period [
     fhir:Period.start [ fhir:value "2021-05-07T12:30:02+08:00"^^xsd:dateTime ];
     fhir:Period.end [ fhir:value "2002-08-20T16:45:50+08:00"^^xsd:dateTime ]
  ];
  fhir:Encounter.diagnosis [
     fhir:index 0;
     fhir:Encounter.diagnosis.condition [
       fhir:Reference.reference [ fhir:value "Condition/RxDiagnosisExample01" ];
       fhir:Reference.display [ fhir:value "新冠肺炎" ]     ];
     fhir:Encounter.diagnosis.use [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/diagnosis-role" ];
         fhir:Coding.code [ fhir:value "DD" ];
         fhir:Coding.display [ fhir:value "出院诊断" ]       ]     ]
  ];
  fhir:Encounter.serviceProvider [
     fhir:Reference.reference [ fhir:value "Organization/RxHospitalExample" ];
     fhir:Reference.display [ fhir:value "北大人民医院" ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.