KR Core Implementation Guide
2.0.0-preview - STU2
KR Core Implementation Guide - Local Development build (v2.0.0-preview) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions
Page standards status: Informative |
@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 -------------------------------------------------------------------
a fhir:Patient ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "krcore-patient-example-01"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://www.hl7korea.or.kr/fhir/krcore/StructureDefinition/krcore-patient"^^xsd:anyURI ;
fhir:link <http://www.hl7korea.or.kr/fhir/krcore/StructureDefinition/krcore-patient> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Patient krcore-patient-example-01</b></p><a name=\"krcore-patient-example-01\"> </a><a name=\"hckrcore-patient-example-01\"> </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-krcore-patient.html\">KR Core Patient Profile</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">박아픔 Male, DoB: 2001-01-01 ( Medical record number)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\"><ul><li>ph: 010-1234-5678</li><li><a href=\"mailto:patientKim@example.co.kr\">patientKim@example.co.kr</a></li><li>서울특별시 강남구 일원로 81 (일원동)</li></ul></td></tr></table></div>"^^rdf:XMLLiteral
] ; #
fhir:identifier ( [
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 "urn:oid:1.2.3.4.5.6"^^xsd:anyURI ] ;
fhir:value [ fhir:v "PID12345" ]
] ) ; #
fhir:name ( [
fhir:text [ fhir:v "박아픔" ]
] ) ; #
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "010-1234-5678" ]
] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "patientKim@example.co.kr" ]
] ) ; #
fhir:gender [ fhir:v "male"] ; #
fhir:birthDate [ fhir:v "2001-01-01"^^xsd:date] ; #
fhir:address ( [
( fhir:extension [
( fhir:extension [
fhir:url [ fhir:v "district"^^xsd:anyURI ] ;
fhir:value [
a fhir:string ;
fhir:v "서울특별시 강남구" ] ] [
fhir:url [ fhir:v "roadName"^^xsd:anyURI ] ;
fhir:value [
a fhir:string ;
fhir:v "일원로" ] ] [
fhir:url [ fhir:v "detailedAddress"^^xsd:anyURI ] ;
fhir:value [
a fhir:string ;
fhir:v "81" ] ] [
fhir:url [ fhir:v "complements"^^xsd:anyURI ] ;
fhir:value [
a fhir:string ;
fhir:v "일원동" ] ] ) ;
fhir:url [ fhir:v "http://www.hl7korea.or.kr/fhir/krcore/StructureDefinition/krcore-roadNameAddress"^^xsd:anyURI ] ] ) ;
fhir:text [ fhir:v "서울특별시 강남구 일원로 81 (일원동)" ] ;
fhir:postalCode [ fhir:v "06351" ]
] ) . #