0.1.0 - ci-build
MatchSyncIG - Local Development build (v0.1.0). 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 "MSPatientExample2"] ; # 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 style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Joe Everyperson </b> male, DoB: 1974-12-25 ( id: 123)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Details:</td><td colspan=\"3\"><ul><li>ph: 1-612-555-1234</li><li>123 Main St Minneapolis MN 55401 USA </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" ] ] ) . #