Specialty Medication Enrollment 2.0.0 - STU2 US
This page is part of the Specialty Medication Enrollment (v2.0.0: STU2) based on FHIR R4. This is the current published version. For a full list of available versions, 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 "specialty-rx-patient-1"] ; # fhir:meta [ ( fhir:profile [ fhir:v "http://hl7.org/fhir/us/specialty-rx/StructureDefinition/specialty-rx-patient"^^xsd:anyURI ; fhir:link <http://hl7.org/fhir/us/specialty-rx/StructureDefinition/specialty-rx-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>Timothy V. Doe </b> male, DoB: 1987-02-20 ( id: 1234)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td colspan=\"3\">true</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Details:</td><td colspan=\"3\"><ul><li>ph: 555-555-5555(HOME)</li><li><a href=\"mailto:tim.doe@example.com\">tim.doe@example.com</a></li><li>2224 Century Ave Minnetonka MN 55345 US </li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Languages spoken\">Language:</td><td colspan=\"3\"><span title=\"Codes: {urn:ietf:bcp:47 en-US}\">English (Region=United States)</span></td></tr></table></div>" ] ; # fhir:identifier ( [ fhir:system [ fhir:v "http://example.org/patient-id"^^xsd:anyURI ] ; fhir:value [ fhir:v "1234" ] ] ) ; # fhir:active [ fhir:v "true"^^xsd:boolean] ; # fhir:name ( [ fhir:family [ fhir:v "Doe" ] ; ( fhir:given [ fhir:v "Timothy" ] [ fhir:v "V." ] ) ] ) ; # fhir:telecom ( [ fhir:system [ fhir:v "phone" ] ; fhir:value [ fhir:v "555-555-5555" ] ; fhir:use [ fhir:v "home" ] ] [ fhir:system [ fhir:v "email" ] ; fhir:value [ fhir:v "tim.doe@example.com" ] ] ) ; # fhir:gender [ fhir:v "male"] ; # fhir:birthDate [ fhir:v "1987-02-20"^^xsd:date] ; # fhir:address ( [ ( fhir:line [ fhir:v "2224 Century Ave" ] ) ; fhir:city [ fhir:v "Minnetonka" ] ; fhir:state [ fhir:v "MN" ] ; fhir:postalCode [ fhir:v "55345" ] ; fhir:country [ fhir:v "US" ] ] ) ; # fhir:communication ( [ fhir:language [ ( fhir:coding [ fhir:system [ fhir:v "urn:ietf:bcp:47"^^xsd:anyURI ] ; fhir:code [ fhir:v "en-US" ] ; fhir:display [ fhir:v "English (Region=United States)" ] ] ) ] ] ) . #