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ụ: Bản ghi người bệnh đã khử nhận dạng cho tập dữ liệu nghiên cứu

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/Patient/ExamplePatientDeIdentified> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "ExamplePatientDeIdentified"] ;
  fhir:Resource.meta [
     fhir:Meta.security [
       fhir:index -1 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-Confidentiality" ] ;
       fhir:Coding.code [ fhir:value "U" ] ;
       fhir:Coding.display [ fhir:value "unrestricted" ]
     ], [
       fhir:index -1 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ObservationValue" ] ;
       fhir:Coding.code [ fhir:value "ANONYED" ] ;
       fhir:Coding.display [ fhir:value "anonymized" ]
     ]
  ] ;
  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: Patient ExamplePatientDeIdentified</b></p><a name=\"ExamplePatientDeIdentified\"> </a><a name=\"hcExamplePatientDeIdentified\"> </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\">Security Labels: <a href=\"http://terminology.hl7.org/7.2.0/CodeSystem-v3-Confidentiality.html\">unrestricted (Details: Confidentiality code U = 'unrestricted')</a>, <a href=\"http://terminology.hl7.org/7.2.0/CodeSystem-v3-ObservationValue.html\">anonymized (Details: ObservationValue code ANONYED = 'anonymized')</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Anonymous Patient Male, DoB: 1981 ( http://example.org/research-dataset/2026-hypertension-cohort#SUBJ-004182)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\">Thành phố Hà Nội VN </td></tr></table></div>"
  ] ;
  fhir:Patient.identifier [
     fhir:index -1 ;
     fhir:Identifier.system [ fhir:value "http://example.org/research-dataset/2026-hypertension-cohort" ] ;
     fhir:Identifier.value [ fhir:value "SUBJ-004182" ]
  ] ;
  fhir:Patient.gender [ fhir:value "male"] ;
  fhir:Patient.birthDate [ fhir:value "1981"^^xsd:gYear] ;
  fhir:Patient.address [
     fhir:index -1 ;
     fhir:Address.state [ fhir:value "Thành phố Hà Nội" ] ;
     fhir:Address.country [ fhir:value "VN" ]
  ] .

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

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