@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://fhir.hl7.org.vn/core/Patient/ExampleAddressFull> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ExampleAddressFull"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://fhir.hl7.org.vn/core/StructureDefinition/vn-core-patient"^^xsd:anyURI ;
       fhir:l <http://fhir.hl7.org.vn/core/StructureDefinition/vn-core-patient>
     ] )
  ] ; # 
  fhir:language [ fhir:v "vi"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Patient ExampleAddressFull</b></p><a name=\"ExampleAddressFull\"> </a><a name=\"hcExampleAddressFull\"> </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-patient.html\">Bệnh nhân VN Core — VN Core Patient Profile</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Lê Văn Hùng Male, DoB: 1990-11-20 ( Căn cước công dân: VNCCCD#001090006789)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\">Thôn Đoài, Xã Sơn Đồng, Thành phố Hà Nội</td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:type [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://fhir.hl7.org.vn/core/CodeSystem/vn-identifier-type-cs"^^xsd:anyURI ;
           fhir:l <http://fhir.hl7.org.vn/core/CodeSystem/vn-identifier-type-cs>
         ] ;
         fhir:code [ fhir:v "CCCD" ] ;
         fhir:display [ fhir:v "Căn cước công dân" ]
       ] )
     ] ;
     fhir:system [
       fhir:v "http://fhir.hl7.org.vn/core/sid/cccd"^^xsd:anyURI ;
       fhir:l <http://fhir.hl7.org.vn/core/sid/cccd>
     ] ;
     fhir:value [ fhir:v "001090006789" ]
  ] ) ; # 
  fhir:name ( [
     fhir:text [ fhir:v "Lê Văn Hùng" ] ;
     fhir:family [ fhir:v "Lê" ] ;
     fhir:given ( [ fhir:v "Văn" ] [ fhir:v "Hùng" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "1990-11-20"^^xsd:date] ; # 
  fhir:address ( [
     fhir:extension ( [
       fhir:url [
         fhir:v "http://fhir.hl7.org.vn/core/StructureDefinition/vn-ext-province"^^xsd:anyURI ;
         fhir:l <http://fhir.hl7.org.vn/core/StructureDefinition/vn-ext-province>
       ] ;
       fhir:value [
         a fhir:Coding ;
         fhir:system [
           fhir:v "http://fhir.hl7.org.vn/core/CodeSystem/vn-province-cs"^^xsd:anyURI ;
           fhir:l <http://fhir.hl7.org.vn/core/CodeSystem/vn-province-cs>
         ] ;
         fhir:code [ fhir:v "01" ] ;
         fhir:display [ fhir:v "Thành phố Hà Nội" ]
       ]
     ] [
       fhir:url [
         fhir:v "http://fhir.hl7.org.vn/core/StructureDefinition/vn-ext-ward"^^xsd:anyURI ;
         fhir:l <http://fhir.hl7.org.vn/core/StructureDefinition/vn-ext-ward>
       ] ;
       fhir:value [
         a fhir:Coding ;
         fhir:system [
           fhir:v "http://fhir.hl7.org.vn/core/CodeSystem/vn-ward-cs"^^xsd:anyURI ;
           fhir:l <http://fhir.hl7.org.vn/core/CodeSystem/vn-ward-cs>
         ] ;
         fhir:code [ fhir:v "09871" ] ;
         fhir:display [ fhir:v "Xã Sơn Đồng" ]
       ]
     ] ) ;
     fhir:text [ fhir:v "Thôn Đoài, Xã Sơn Đồng, Thành phố Hà Nội" ] ;
     fhir:line ( [ fhir:v "Thôn Đoài" ] ) ;
     fhir:district [ fhir:v "Huyện Hoài Đức" ] ;
     fhir:state [ fhir:v "Thành phố Hà Nội" ] ;
     fhir:country [ fhir:v "VN" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

