HL7中国FHIR Connectathon测试实施指南
V20230304 - release
HL7中国FHIR Connectathon测试实施指南 - Local Development build (vV20230304). See the Directory of published versions
@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:Condition;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "RxDiagnosisExample01"];
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>category</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/condition-category encounter-diagnosis}\">诊断</span></p><p><b>code</b>: <span title=\"Codes: {http://hl7.org/fhir/sid/icd-10 J12.82}\">新冠肺炎</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>encounter</b>: <a href=\"Encounter-RxEncounterExample01.html\">Generated Summary: status: finished; <span title=\"{http://terminology.hl7.org/CodeSystem/v3-ActCode IMP}\">住院诊疗</span>; <span title=\"Codes: \">新冠肺炎入院</span>; period: 2021年5月7日 下午12:30:02 --> 2002年8月20日 下午4:45:50</a></p></div>"
];
fhir:Condition.category [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/condition-category" ];
fhir:Coding.code [ fhir:value "encounter-diagnosis" ];
fhir:Coding.display [ fhir:value "诊断" ] ]
];
fhir:Condition.code [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://hl7.org/fhir/sid/icd-10" ];
fhir:Coding.code [ fhir:value "J12.82" ];
fhir:Coding.display [ fhir:value "Pneumonia due to COVID-19" ] ];
fhir:CodeableConcept.text [ fhir:value "新冠肺炎" ]
];
fhir:Condition.subject [
fhir:Reference.reference [ fhir:value "Patient/PatientExample01" ];
fhir:Reference.display [ fhir:value "张三" ]
];
fhir:Condition.encounter [
fhir:Reference.reference [ fhir:value "Encounter/RxEncounterExample01" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.