病床通報實作指引 - Local Development build (v0.1.0). See the Directory of published versions
: Patient-病人基本資料 - TTL Representation
Raw ttl | Download
@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 -------------------------------------------------------------------
a fhir:Patient ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "pat-example"] ; #
fhir:meta [
( fhir:profile [
fhir:v "https://fhirisolationroom.azurehealthcareapis.com/StructureDefinition/Patient-bedCase"^^xsd:anyURI ;
fhir:link <https://fhirisolationroom.azurehealthcareapis.com/StructureDefinition/Patient-bedCase> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h3><b>病人基本資料</b></h3><blockquote><p><b>識別碼型別</b>:National Person Identifier <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">( <a href=\"https://twcore.mohw.gov.tw/tsfhir/CodeSystem/v2-0203\">Identifier Type Codes</a>#NNTWN)</span><br/><b>身分證字號(official)</b>:A123456789 (http://www.moi.gov.tw/)</p></blockquote><blockquote><p><b>識別碼型別</b>:Medical record number <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">( <a href=\"http://terminology.hl7.org/CodeSystem/v2-0203\">Identifier Type Codes</a>#MR)</span><br/><b>病歷號(official)</b>:8862168 (https://www.tph.mohw.gov.tw/)</p></blockquote><p><b>性別</b>:女性</p><p><b>出生日期</b>:1990-01-01</p></div>"
] ; #
fhir:identifier ( [
fhir:use [ fhir:v "official" ] ;
fhir:type [
( fhir:coding [
fhir:system [ fhir:v "https://twcore.mohw.gov.tw/tsfhir/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "NNTWN" ] ] ) ] ;
fhir:system [ fhir:v "http://www.moi.gov.tw/"^^xsd:anyURI ] ;
fhir:value [ fhir:v "A123456789" ]
] [
fhir:use [ fhir:v "official" ] ;
fhir:type [
( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "MR" ] ] ) ] ;
fhir:system [ fhir:v "https://www.tph.mohw.gov.tw/"^^xsd:anyURI ] ;
fhir:value [ fhir:v "8862168" ]
] ) ; #
fhir:gender [ fhir:v "female"] ; #
fhir:birthDate [ fhir:v "1990-01-01"^^xsd:date] . #