@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 -------------------------------------------------------------------

<https://build.fhir.org/ig/Rehabotics-Medical-Techology-Co/RTS-IG/Patient/stroke-patient-001> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "stroke-patient-001"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://build.fhir.org/ig/Rehabotics-Medical-Techology-Co/RTS-IG/StructureDefinition/Patient" ;
       fhir:index 0 ;
       fhir:link <https://build.fhir.org/ig/Rehabotics-Medical-Techology-Co/RTS-IG/StructureDefinition/Patient>
     ]
  ] ;
  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 stroke-patient-001</b></p><a name=\"stroke-patient-001\"> </a><a name=\"hcstroke-patient-001\"> </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-Patient.html\">根據醫院實際病人範例進行資料定義</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">先生 張 (official) Male, DoB: 1965-03-15 ( National Person Identifier where the xxx is the ISO table 3166 3-character (alphabetic) country code)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td colspan=\"3\">true</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\">永綏街 臺北市 null 臺灣(TW) </td></tr></table></div>"
  ] ;
  fhir:Patient.identifier [
     fhir:index 0 ;
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0 ;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ] ;
         fhir:Coding.code [ fhir:value "NNxxx" ]
       ]
     ] ;
     fhir:Identifier.system [ fhir:value "http://www.moi.gov.tw" ] ;
     fhir:Identifier.value [ fhir:value "A123456789" ]
  ] ;
  fhir:Patient.active [ fhir:value "true"^^xsd:boolean] ;
  fhir:Patient.name [
     fhir:index 0 ;
     fhir:HumanName.use [ fhir:value "official" ] ;
     fhir:HumanName.family [ fhir:value "張" ] ;
     fhir:HumanName.given [
       fhir:value "先生" ;
       fhir:index 0
     ]
  ] ;
  fhir:Patient.gender [ fhir:value "male"] ;
  fhir:Patient.birthDate [ fhir:value "1965-03-15"^^xsd:date] ;
  fhir:Patient.address [
     fhir:index 0 ;
     fhir:Element.extension [
       fhir:index 0 ;
       fhir:Extension.url [ fhir:value "https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/tw-section" ] ;
       fhir:Extension.valueString [ fhir:value "五段" ]
     ], [
       fhir:index 1 ;
       fhir:Extension.url [ fhir:value "https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/tw-lane" ] ;
       fhir:Extension.valueString [ fhir:value "609巷" ]
     ], [
       fhir:index 2 ;
       fhir:Extension.url [ fhir:value "https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/tw-number" ] ;
       fhir:Extension.valueString [ fhir:value "16號" ]
     ], [
       fhir:index 3 ;
       fhir:Extension.url [ fhir:value "https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/tw-floor" ] ;
       fhir:Extension.valueString [ fhir:value "6樓之11" ]
     ] ;
     fhir:Address.line [
       fhir:value "永綏街" ;
       fhir:index 0
     ] ;
     fhir:Address.city [ fhir:value "臺北市" ] ;
     fhir:Address.district [ fhir:value "中正區" ] ;
     fhir:Address.postalCode [
       fhir:Element.extension [
         fhir:index 0 ;
         fhir:Extension.url [ fhir:value "https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/tw-postal-code" ] ;
         fhir:Extension.valueCodeableConcept [
           fhir:CodeableConcept.coding [
             fhir:index 0 ;
             fhir:Coding.system [ fhir:value "https://twcore.mohw.gov.tw/ig/twcore/CodeSystem/postal-code6-tw" ] ;
             fhir:Coding.code [ fhir:value "100001" ]
           ]
         ]
       ]
     ] ;
     fhir:Address.country [ fhir:value "臺灣(TW)" ]
  ] .

# - ontology header ------------------------------------------------------------

<https://build.fhir.org/ig/Rehabotics-Medical-Techology-Co/RTS-IG/Patient/stroke-patient-001.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

