基于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:Goal;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "GoalMovementExample05"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org.cn/fhir/sd/ehr/StructureDefinition/profile-goal-movement";
fhir:index 0;
fhir:link <http://hl7.org.cn/fhir/sd/ehr/StructureDefinition/profile-goal-movement> ]
];
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>lifecycleStatus</b>: planned</p><p><b>description</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>start</b>: 2002-08-23</p><blockquote><p><b>target</b></p><p><b>measure</b>: <span title=\"Codes: {http://hl7.org.cn/fhir/sd/ehr/CodeSystem/ws363-2011 DE03.00.087.00}\">目标运动频率</span></p><p><b>detail</b>: <span title=\"Codes: {http://hl7.org.cn/fhir/sd/ehr/CodeSystem/cv03-00-111 2}\">每周一次以上</span></p><p><b>due</b>: 2002-09-23</p></blockquote><blockquote><p><b>target</b></p><p><b>measure</b>: <span title=\"Codes: {http://hl7.org.cn/fhir/sd/ehr/CodeSystem/ws363-2011 DE03.00.088.00}\">目标运动时长</span></p><p><b>detail</b>: 30 分钟/次</p><p><b>due</b>: 2002-09-23</p></blockquote><p><b>addresses</b>: <a href=\"Observation-MovementConditionExample05.html\">Generated Summary: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/observation-category social-history}\">Social History</span>; <span title=\"Codes: {http://loinc.org 89177-0}\">运动情况</span></a></p></div>"
];
fhir:Goal.lifecycleStatus [ fhir:value "planned"];
fhir:Goal.description [
fhir:CodeableConcept.text [ fhir:value "目标运动情况" ]
];
fhir:Goal.subject [
fhir:Reference.reference [ fhir:value "Patient/PatientExample01" ];
fhir:Reference.display [ fhir:value "张三" ]
];
fhir:Goal.startDate [ fhir:value "2002-08-23"^^xsd:date];
fhir:Goal.target [
fhir:index 0;
fhir:Goal.target.measure [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://hl7.org.cn/fhir/sd/ehr/CodeSystem/ws363-2011" ];
fhir:Coding.code [ fhir:value "DE03.00.087.00" ];
fhir:Coding.display [ fhir:value "目标运动频率" ] ] ];
fhir:Goal.target.detailCodeableConcept [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://hl7.org.cn/fhir/sd/ehr/CodeSystem/cv03-00-111" ];
fhir:Coding.code [ fhir:value "2" ];
fhir:Coding.display [ fhir:value "每周一次以上" ] ] ];
fhir:Goal.target.dueDate [ fhir:value "2002-09-23"^^xsd:date ]
], [
fhir:index 1;
fhir:Goal.target.measure [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://hl7.org.cn/fhir/sd/ehr/CodeSystem/ws363-2011" ];
fhir:Coding.code [ fhir:value "DE03.00.088.00" ];
fhir:Coding.display [ fhir:value "目标运动时长" ] ] ];
fhir:Goal.target.detailQuantity [
fhir:Quantity.value [ fhir:value "30"^^xsd:decimal ];
fhir:Quantity.unit [ fhir:value "分钟/次" ];
fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
fhir:Quantity.code [ fhir:value "分钟/次" ] ];
fhir:Goal.target.dueDate [ fhir:value "2002-09-23"^^xsd:date ]
];
fhir:Goal.addresses [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Observation/MovementConditionExample05" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.