基于FHIR标准的健康档案共享文档实施指南
0.8.0.2022705 - 持续集成版

基于FHIR的健康档案共享文档实施时必须严格遵循本实施指南的规定。

: MovementConditionExample05 - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://loinc.org/rdf#> .
@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:Observation;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "MovementConditionExample05"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org.cn/fhir/sd/ehr/StructureDefinition/profile-movement-condition";
       fhir:index 0;
       fhir:link <http://hl7.org.cn/fhir/sd/ehr/StructureDefinition/profile-movement-condition>     ]
  ];
  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></p><p><b>category</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/observation-category social-history}\">Social History</span></p><p><b>code</b>: <span title=\"Codes: {http://loinc.org 89177-0}\">运动情况</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-FollowupEncounterExample05.html\">Generated Summary: id: N1233456675; status: finished; <span title=\"{http://terminology.hl7.org/CodeSystem/v3-ActCode HH}\">随访</span>; <span title=\"Codes: {http://hl7.org.cn/fhir/sd/ehr/CodeSystem/cv06-00-207 2}\">家庭</span>; period: 2021-5-7 12:30:02 --&gt; 2002-8-20 16:45:50</a></p><blockquote><p><b>component</b></p><p><b>code</b>: <span title=\"Codes: {http://hl7.org.cn/fhir/sd/ehr/CodeSystem/ws363-2011 DE03.00.087.00}\">运动频率</span></p><p><b>value</b>: <span title=\"Codes: {http://hl7.org.cn/fhir/sd/ehr/CodeSystem/cv03-00-111 3}\">偶尔</span></p></blockquote><blockquote><p><b>component</b></p><p><b>code</b>: <span title=\"Codes: {http://hl7.org.cn/fhir/sd/ehr/CodeSystem/ws363-2011 DE03.00.088.00}\">运动时长</span></p><p><b>value</b>: 20 分钟/次</p></blockquote></div>"
  ];
  fhir:Observation.status [ fhir:value "final"];
  fhir:Observation.category [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/observation-category" ];
       fhir:Coding.code [ fhir:value "social-history" ]     ]
  ];
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a loinc:89177-0;
       fhir:Coding.system [ fhir:value "http://loinc.org" ];
       fhir:Coding.code [ fhir:value "89177-0" ];
       fhir:Coding.display [ fhir:value "运动情况" ]     ]
  ];
  fhir:Observation.subject [
     fhir:Reference.reference [ fhir:value "Patient/PatientExample01" ];
     fhir:Reference.display [ fhir:value "张三" ]
  ];
  fhir:Observation.encounter [
     fhir:Reference.reference [ fhir:value "Encounter/FollowupEncounterExample05" ]
  ];
  fhir:Observation.component [
     fhir:index 0;
     fhir:Observation.component.code [
       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:Observation.component.valueCodeableConcept [
       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 "3" ];
         fhir:Coding.display [ fhir:value "偶尔" ]       ]     ]
  ], [
     fhir:index 1;
     fhir:Observation.component.code [
       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:Observation.component.valueQuantity [
       fhir:Quantity.value [ fhir:value "20"^^xsd:decimal ];
       fhir:Quantity.unit [ fhir:value "分钟/次" ];
       fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
       fhir:Quantity.code [ fhir:value "分钟/次" ]     ]
  ].

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

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