HL7 Vietnam VN Core FHIR Implementation Guide

Bộ Hướng dẫn Triển khai Core FHIR cho Việt Nam
0.8.0 - Draft for Community Review Viet Nam cờ

Bộ Hướng dẫn Triển khai Core FHIR cho Việt Nam - Draft for Community Review (v0.8.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions

: Ví dụ: Mục tiêu điều trị — Kiểm soát huyết áp

Bản thô ttl | Tải xuống


@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 -------------------------------------------------------------------

<http://hl7.org/fhir/Goal/ExampleGoalBloodPressureControl> a fhir:Goal ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "ExampleGoalBloodPressureControl"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://fhir.hl7.org.vn/core/StructureDefinition/vn-core-goal" ;
       fhir:index -1 ;
       fhir:link <http://fhir.hl7.org.vn/core/StructureDefinition/vn-core-goal>
     ]
  ] ;
  fhir:Resource.language [ fhir:value "vi"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Goal ExampleGoalBloodPressureControl</b></p><a name=\"ExampleGoalBloodPressureControl\"> </a><a name=\"hcExampleGoalBloodPressureControl\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-vn-core-goal.html\">Mục tiêu điều trị VN Core — VN Core Goal Profile</a></p></div><p><b>lifecycleStatus</b>: Active</p><p><b>category</b>: <span title=\"Codes:\">Quản lý bệnh mạn tính</span></p><p><b>description</b>: <span title=\"Codes:\">Kiểm soát huyết áp &lt; 140/90 mmHg trong vòng 3 tháng</span></p><p><b>subject</b>: <a href=\"Patient-ExamplePatientNguyenVanAn.html\">Nguyễn Văn An</a></p><h3>Targets</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Measure</b></td><td><b>Detail[x]</b></td><td><b>Due[x]</b></td></tr><tr><td style=\"display: none\">*</td><td><span title=\"Codes:{http://loinc.org 8480-6}\">Systolic blood pressure</span></td><td>&lt;140 mmHg<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM  codemm[Hg] = 'mm[Hg]')</span></td><td>2026-06-19</td></tr></table><p><b>expressedBy</b>: <a href=\"Practitioner-ExamplePractitionerBSCKII.html\">BS CKII Nguyễn Thị Lan</a></p></div>"
  ] ;
  fhir:Goal.lifecycleStatus [ fhir:value "active"] ;
  fhir:Goal.category [
     fhir:index -1 ;
     fhir:CodeableConcept.text [ fhir:value "Quản lý bệnh mạn tính" ]
  ] ;
  fhir:Goal.description [
     fhir:CodeableConcept.text [ fhir:value "Kiểm soát huyết áp < 140/90 mmHg trong vòng 3 tháng" ]
  ] ;
  fhir:Goal.subject [
     fhir:link <http://hl7.org/fhir/Patient/ExamplePatientNguyenVanAn> ;
     fhir:Reference.reference [ fhir:value "Patient/ExamplePatientNguyenVanAn" ] ;
     fhir:Reference.display [ fhir:value "Nguyễn Văn An" ]
  ] ;
  fhir:Goal.target [
     fhir:index -1 ;
     fhir:Goal.target.measure [
       fhir:CodeableConcept.coding [
         fhir:index -1 ;
         a loinc:8480-6 ;
         fhir:Coding.system [ fhir:value "http://loinc.org" ] ;
         fhir:Coding.code [ fhir:value "8480-6" ] ;
         fhir:Coding.display [ fhir:value "Systolic blood pressure" ]
       ]
     ] ;
     fhir:Goal.target.detailQuantity [
       fhir:Quantity.value [ fhir:value "140"^^xsd:decimal ] ;
       fhir:Quantity.comparator [ fhir:value "<" ] ;
       fhir:Quantity.unit [ fhir:value "mmHg" ] ;
       fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ] ;
       fhir:Quantity.code [ fhir:value "mm[Hg]" ]
     ] ;
     fhir:Goal.target.dueDate [ fhir:value "2026-06-19"^^xsd:date ]
  ] ;
  fhir:Goal.expressedBy [
     fhir:link <http://hl7.org/fhir/Practitioner/ExamplePractitionerBSCKII> ;
     fhir:Reference.reference [ fhir:value "Practitioner/ExamplePractitionerBSCKII" ] ;
     fhir:Reference.display [ fhir:value "BS CKII Nguyễn Thị Lan" ]
  ] .

<http://hl7.org/fhir/Patient/ExamplePatientNguyenVanAn> a fhir:Patient .

<http://hl7.org/fhir/Practitioner/ExamplePractitionerBSCKII> a fhir:Practitioner .

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

<http://hl7.org/fhir/Goal/ExampleGoalBloodPressureControl.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Goal/ExampleGoalBloodPressureControl.ttl> .