@prefix fhir: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Patient ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "MSPatientExample2"] ; # fhir:meta [ fhir:profile ( [ fhir:v "http://fhir.nmdp.org/ig/matchsync/StructureDefinition/mspatient"^^xsd:anyURI ; fhir:link ] ) ; 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 "

Generated Narrative: Patient MSPatientExample2

Profile: MSPatient

Security Label: tc_123 (Details: transplant-center code tc_123)

Joe Everyperson Male, DoB: 1974-12-25 ( http://example.org/mrn#123)


Contact Detail
  • ph: 1-612-555-1234
  • 123 Main St Minneapolis MN 55401 USA
"^^rdf:XMLLiteral ] ; # 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" ] ] ) . # # -------------------------------------------------------------------------------------