基于FHIR标准的健康档案共享文档实施指南
0.8.0.2022705 - 持续集成版
基于FHIR的健康档案共享文档实施时必须严格遵循本实施指南的规定。
@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 "NextFollowupEncounterExample05"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org.cn/fhir/sd/ehr/StructureDefinition/profile-followup-encounter";
fhir:index 0;
fhir:link <http://hl7.org.cn/fhir/sd/ehr/StructureDefinition/profile-followup-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>: planned</p><p><b>class</b>: <span title=\"{http://terminology.hl7.org/CodeSystem/v3-ActCode HH}\">随访</span></p><p><b>serviceType</b>: <span title=\"Codes: {http://hl7.org.cn/fhir/sd/ehr/CodeSystem/cv06-00-207 5}\">网络</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><h3>Participants</h3><table class=\"grid\"><tr><td>-</td><td><b>Type</b></td><td><b>Individual</b></td></tr><tr><td>*</td><td><span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v3-ParticipationType AUT}\">author (originator)</span></td><td><a href=\"Practitioner-PractitionerExample01.html\">赵勇. Generated Summary: 赵勇; gender: male</a></td></tr></table><p><b>period</b>: 2021-5-27 12:30:02 --> (ongoing)</p><p><b>serviceProvider</b>: <a href=\"Organization-OrganizationExample02.html\">爱民路社区服务中心. Generated Summary: active; name: 爱民路社区服务中心</a></p></div>"
];
fhir:Encounter.status [ fhir:value "planned"];
fhir:Encounter.class [
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
fhir:Coding.code [ fhir:value "HH" ];
fhir:Coding.display [ fhir:value "随访" ]
];
fhir:Encounter.serviceType [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://hl7.org.cn/fhir/sd/ehr/CodeSystem/cv06-00-207" ];
fhir:Coding.code [ fhir:value "5" ];
fhir:Coding.display [ fhir:value "网络" ] ]
];
fhir:Encounter.subject [
fhir:Reference.reference [ fhir:value "Patient/PatientExample01" ];
fhir:Reference.display [ fhir:value "张三" ]
];
fhir:Encounter.participant [
fhir:index 0;
fhir:Encounter.participant.type [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ParticipationType" ];
fhir:Coding.code [ fhir:value "AUT" ] ] ];
fhir:Encounter.participant.individual [
fhir:Reference.reference [ fhir:value "Practitioner/PractitionerExample01" ];
fhir:Reference.display [ fhir:value "赵勇" ] ]
];
fhir:Encounter.period [
fhir:Period.start [ fhir:value "2021-05-27T12:30:02+08:00"^^xsd:dateTime ]
];
fhir:Encounter.serviceProvider [
fhir:Reference.reference [ fhir:value "Organization/OrganizationExample02" ];
fhir:Reference.display [ fhir:value "爱民路社区服务中心" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.