HL7 Vietnam VN Core FHIR Implementation Guide

Hướng dẫn triển khai FHIR cốt lõi Việt Nam — VN Core FHIR Implementation Guide
0.9.0 - Draft for Community Review Viet Nam cờ

Hướng dẫn triển khai FHIR cốt lõi Việt Nam — VN Core FHIR Implementation Guide - Draft for Community Review (v0.9.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions

: Ví dụ: Phiếu nhập thuốc từ nhà cung cấp (liên thông CSDL Dược)

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


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

<http://hl7.org/fhir/SupplyDelivery/ExampleSupplyDeliveryPharmacyStockIn> a fhir:SupplyDelivery ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "ExampleSupplyDeliveryPharmacyStockIn"] ;
  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: SupplyDelivery ExampleSupplyDeliveryPharmacyStockIn</b></p><a name=\"ExampleSupplyDeliveryPharmacyStockIn\"> </a><a name=\"hcExampleSupplyDeliveryPharmacyStockIn\"> </a><p><b>identifier</b>: PN-79001-20260715-001</p><p><b>status</b>: Delivered</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/supply-item-type medication}\">Medication</span></p><h3>SuppliedItems</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Quantity</b></td><td><b>Item[x]</b></td></tr><tr><td style=\"display: none\">*</td><td>500 viên</td><td><a href=\"Medication-ExampleMedicationAmoxicillin.html\">Medication Amoxicillin</a></td></tr></table><p><b>occurrence</b>: 2026-07-15 08:45:00+0700</p><p><b>supplier</b>: Công ty TNHH Dược phẩm Sông Xanh (nhà cung cấp bán buôn — dữ liệu hư cấu)</p><p><b>destination</b>: Kho Nhà thuốc Bệnh viện Chợ Rẫy</p></div>"
  ] ;
  fhir:SupplyDelivery.identifier [
     fhir:index -1 ;
     fhir:Identifier.value [ fhir:value "PN-79001-20260715-001" ]
  ] ;
  fhir:SupplyDelivery.status [ fhir:value "completed"] ;
  fhir:SupplyDelivery.type [
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/supply-item-type" ] ;
       fhir:Coding.code [ fhir:value "medication" ] ;
       fhir:Coding.display [ fhir:value "Medication" ]
     ]
  ] ;
  fhir:SupplyDelivery.suppliedItem [
     fhir:SupplyDelivery.suppliedItem.quantity [
       fhir:Quantity.value [ fhir:value "500"^^xsd:decimal ] ;
       fhir:Quantity.unit [ fhir:value "viên" ]
     ] ;
     fhir:SupplyDelivery.suppliedItem.itemReference [
       fhir:link <http://hl7.org/fhir/Medication/ExampleMedicationAmoxicillin> ;
       fhir:Reference.reference [ fhir:value "Medication/ExampleMedicationAmoxicillin" ]
     ]
  ] ;
  fhir:SupplyDelivery.occurrenceDateTime [ fhir:value "2026-07-15T08:45:00+07:00"^^xsd:dateTime] ;
  fhir:SupplyDelivery.supplier [
     fhir:Reference.display [ fhir:value "Công ty TNHH Dược phẩm Sông Xanh (nhà cung cấp bán buôn — dữ liệu hư cấu)" ]
  ] ;
  fhir:SupplyDelivery.destination [
     fhir:Reference.display [ fhir:value "Kho Nhà thuốc Bệnh viện Chợ Rẫy" ]
  ] .

<http://hl7.org/fhir/Medication/ExampleMedicationAmoxicillin> a fhir:Medication .

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

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