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

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

: MedicationUseExample05 - 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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:MedicationStatement;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "MedicationUseExample05"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org.cn/fhir/sd/ehr/StructureDefinition/profile-medical-use";
       fhir:index 0;
       fhir:link <http://hl7.org.cn/fhir/sd/ehr/StructureDefinition/profile-medical-use>     ]
  ];
  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>: active</p><p><b>medication</b>: <span title=\"Codes: {http://snomed.info/sct 1190007}\">二甲双胍</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>context</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><h3>Dosages</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table></div>"
  ];
  fhir:MedicationStatement.status [ fhir:value "active"];
  fhir:MedicationStatement.medicationCodeableConcept [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:1190007;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "1190007" ];
       fhir:Coding.display [ fhir:value "二甲双胍" ]     ]
  ];
  fhir:MedicationStatement.subject [
     fhir:Reference.reference [ fhir:value "Patient/PatientExample01" ];
     fhir:Reference.display [ fhir:value "张三" ]
  ];
  fhir:MedicationStatement.context [
     fhir:Reference.reference [ fhir:value "Encounter/FollowupEncounterExample05" ]
  ];
  fhir:MedicationStatement.dosage [
     fhir:index 0;
     fhir:Dosage.timing [
       fhir:Timing.repeat [
         fhir:Timing.repeat.boundsPeriod [
           fhir:Period.start [ fhir:value "2002-08-20T16:45:50+08:00"^^xsd:dateTime ];
           fhir:Period.end [ fhir:value "2002-09-20T16:45:50+08:00"^^xsd:dateTime ]         ]       ];
       fhir:Timing.code [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-GTSAbbreviation" ];
           fhir:Coding.code [ fhir:value "BID" ];
           fhir:Coding.display [ fhir:value "每日两次" ]         ]       ]     ];
     fhir:Dosage.route [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:26643006;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "26643006" ];
         fhir:Coding.display [ fhir:value "口服" ]       ]     ];
     fhir:Dosage.doseAndRate [
       fhir:index 0;
       fhir:Dosage.doseAndRate.doseQuantity [
         fhir:Quantity.value [ fhir:value "2"^^xsd:decimal ];
         fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
         fhir:Quantity.code [ fhir:value "片" ]       ]     ]
  ].

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

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