This page is part of the MatchSync Implementation Guide (v0.1.0: Release Draft) based on FHIR (HL7® FHIR® Standard) R4. This is the current published version. For a full list of available versions, see the Directory of published versions
: MSPatientExample5 - 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 "MSPatientExample5"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://fhir.nmdp.org/ig/matchsync/StructureDefinition/mspatient"^^xsd:anyURI ;
fhir:link <http://fhir.nmdp.org/ig/matchsync/StructureDefinition/mspatient> ] ) ;
( fhir:security [
fhir:system [ fhir:v "http://terminology.nmdp.org/codesystem/transplant-center"^^xsd:anyURI ] ;
fhir:code [ fhir:v "tc_123" ] ] )
] ; #
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 MSPatientExample5</b></p><a name=\"MSPatientExample5\"> </a><a name=\"hcMSPatientExample5\"> </a><a name=\"MSPatientExample5-en-US\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Joe Everyperson Male, DoB: 1974-12-25 ( http://example.org/mrn#123)</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: 1-612-555-1234</li><li>123 Main St Minneapolis MN 55401 USA </li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Patient Links\">Links:</td><td colspan=\"3\"><ul><li>General Practitioner: <a href=\"PractitionerRole-ReferringPhysicianRoleExample.html\">Referring Physician</a></li><li>General Practitioner: <a href=\"PractitionerRole-TCPhysicianRoleExample.html\">TC Physician</a></li><li>General Practitioner: <a href=\"PractitionerRole-SearchCoordinatorRoleExample.html\">Search Coordinator</a></li></ul></td></tr></table></div>"
] ; #
fhir:identifier ( [
fhir:system [ fhir:v "http://example.org/mrn"^^xsd:anyURI ] ;
fhir:value [ fhir:v "123" ]
] ) ; #
fhir:name ( [
fhir:family [ fhir:v "Everyperson" ] ;
( fhir:given [ fhir:v "Joe" ] )
] ) ; #
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "1-612-555-1234" ]
] ) ; #
fhir:gender [ fhir:v "male"] ; #
fhir:birthDate [ fhir:v "1974-12-25"^^xsd:date] ; #
fhir:address ( [
( fhir:line [ fhir:v "123 Main St" ] ) ;
fhir:city [ fhir:v "Minneapolis" ] ;
fhir:state [ fhir:v "MN" ] ;
fhir:postalCode [ fhir:v "55401" ] ;
fhir:country [ fhir:v "USA" ]
] ) ; #
fhir:generalPractitioner ( [
fhir:reference [ fhir:v "PractitionerRole/ReferringPhysicianRoleExample" ] ;
fhir:display [ fhir:v "Referring Physician" ]
] [
fhir:reference [ fhir:v "PractitionerRole/TCPhysicianRoleExample" ] ;
fhir:display [ fhir:v "TC Physician" ]
] [
fhir:reference [ fhir:v "PractitionerRole/SearchCoordinatorRoleExample" ] ;
fhir:display [ fhir:v "Search Coordinator" ]
] ) . #