ConnectDTx Implementation Guide 0.9.9 - trial-use
ConnectDTx Implementation Guide - Local Development build (v0.9.9). See the Directory of published versions
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 "connectdtx-patient-example"] ; # fhir:meta [ ( fhir:profile [ fhir:v "http://connectdtx.kr/fhir/StructureDefinition/connectdtx-patient"^^xsd:anyURI ; fhir:link <http://connectdtx.kr/fhir/StructureDefinition/connectdtx-patient> ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>김환자</b> male, DoB: 1990-10-12 ( Medical record number: P12345)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail:</td><td colspan=\"3\">ph: 010-1234-5678</td></tr></table></div>" ] ; # 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 "P12345" ] ] ) ; # fhir:name ( [ fhir:text [ fhir:v "김환자" ] ] ) ; # fhir:telecom ( [ fhir:system [ fhir:v "phone" ] ; fhir:value [ fhir:v "010-1234-5678" ] ] ) ; # fhir:gender [ fhir:v "male"] ; # fhir:birthDate [ fhir:v "1990-10-12"^^xsd:date] . #