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

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

: Covid19EncounterExample01 - 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 "Covid19EncounterExample01"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org.cn/fhir/StructureDefinition/profile-covid19-encounter";
       fhir:index 0;
       fhir:link <http://hl7.org.cn/fhir/StructureDefinition/profile-covid19-encounter>     ]
  ];
  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 FLD}\">field</span></p><p><b>type</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/encounter-type TEST}\">检查检验</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>: 2022年5月20日 下午6:45:50 --&gt; (ongoing)</p><p><b>serviceProvider</b>: <a href=\"Organization-OrganizationExample03.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 "FLD" ]
  ];
  fhir:Encounter.type [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/encounter-type" ];
       fhir:Coding.code [ fhir:value "TEST" ];
       fhir:Coding.display [ fhir:value "检查检验" ]     ]
  ];
  fhir:Encounter.subject [
     fhir:Reference.reference [ fhir:value "Patient/PatientExample01" ]
  ];
  fhir:Encounter.period [
     fhir:Period.start [ fhir:value "2022-05-20T18:45:50+08:00"^^xsd:dateTime ]
  ];
  fhir:Encounter.serviceProvider [
     fhir:Reference.reference [ fhir:value "Organization/OrganizationExample03" ]
  ].

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

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