Personal Health Records 1.0.0-ballot - ballot
This page is part of the Standard Personal Health Record (v1.0.0-ballot: STU1 Ballot 1) based on FHIR (HL7® FHIR® Standard) R4. . 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 "jane-doe"] ; # fhir:meta [ ( fhir:profile [ fhir:v "http://hl7.org/fhir/uv/phr/StructureDefinition/PhrPatient"^^xsd:anyURI ; fhir:link <http://hl7.org/fhir/uv/phr/StructureDefinition/PhrPatient> ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>Jane Doe Example</p></div>" ] ; # fhir:identifier ( [ fhir:system [ fhir:v "http://hospital.example.org/patient"^^xsd:anyURI ] ; fhir:value [ fhir:v "12345" ] ] ) ; # fhir:active [ fhir:v "true"^^xsd:boolean] ; # fhir:name ( [ fhir:use [ fhir:v "official" ] ; fhir:family [ fhir:v "Doe" ] ; ( fhir:given [ fhir:v "Jane" ] ) ] ) ; # fhir:telecom ( [ fhir:system [ fhir:v "phone" ] ; fhir:value [ fhir:v "555-123-4567" ] ; fhir:use [ fhir:v "mobile" ] ] ) ; # fhir:gender [ fhir:v "female"] ; # fhir:birthDate [ fhir:v "1985-05-15"^^xsd:date] ; # fhir:address ( [ ( fhir:line [ fhir:v "123 Main St" ] ) ; fhir:city [ fhir:v "Springfield" ] ; fhir:state [ fhir:v "IL" ] ; fhir:postalCode [ fhir:v "62704" ] ; fhir:country [ fhir:v "USA" ] ] ) . #