AdministrationThis page is part of the FHIR Specification (v5.0.0: R5 - STU). This is the current published version. For a full list of available versions, see the Directory of published versions
. Page versions: R5 R4B R4 R3
| Patient Administration Work Group | Maturity Level: N/A | Standards Status: Informative | Compartments: Patient, Practitioner, RelatedPerson |
Raw Turtle (+ also see Turtle/RDF Format Specification)
Real-world patient example (anonymized)
@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
[a fhir:Patient ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "f201"] ; #
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>Roel(OFFICIAL)</b> male, DoB: 1960-03-13 ( BSN: 123456789 (use: OFFICIAL))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td>true</td><td style=\"background-color: #f3f5da\" title=\"Known status of Patient\">Deceased:</td><td>false</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Known Marital status of Patient\">Marital Status:</td><td><span title=\"Codes: {http://snomed.info/sct 36629006}, {http://terminology.hl7.org/CodeSystem/v3-MaritalStatus M}\">Legally married</span></td><td style=\"background-color: #f3f5da\" title=\"Known multipleBirth status of Patient\">Multiple Birth:</td><td colspan=\"3\">false</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Other Ids (see the one above)\">Other Id:</td><td colspan=\"3\">BSN: 123456789 (use: OFFICIAL)</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Details:</td><td colspan=\"3\"><ul><li><a href=\"tel:+31612345678\">+31612345678</a></li><li><a href=\"tel:+31201234567\">+31201234567</a></li><li>Bos en Lommerplein 280 Amsterdam 1055RW NLD (HOME)</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 nl-NL}\">Dutch</span> (preferred)</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Nominated Contact: Wife\">Wife:</td><td colspan=\"3\"><ul><li>Ariadne Bor-Jansma</li><li><a href=\"tel:+31201234567\">+31201234567</a></li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Patient Links\">Links:</td><td colspan=\"3\"><ul><li>Managing Organization: <a href=\"organization-example-f201-aumc.html\">Organization/f201: AUMC</a> "Artis University Medical Center (AUMC)"</li></ul></td></tr></table></div>"
] ; #
fhir:identifier ( [
fhir:use [ fhir:v "official" ] ; # The identifier for the person as this patient (fictive)
fhir:type [
fhir:text [ fhir:v "BSN" ]
] ;
fhir:system [ fhir:v "urn:oid:2.16.840.1.113883.2.4.6.3"^^xsd:anyURI ] ;
fhir:value [ fhir:v "123456789" ]
] [
fhir:use [ fhir:v "official" ] ; # The identifier for this individual
fhir:type [
fhir:text [ fhir:v "BSN" ]
] ;
fhir:system [ fhir:v "urn:oid:2.16.840.1.113883.2.4.6.3"^^xsd:anyURI ] ;
fhir:value [ fhir:v "123456789" ]
] ) ; #
fhir:active [ fhir:v "true"^^xsd:boolean] ; # Indicates that the patient is not part of a multiple birth
fhir:name ( [
fhir:use [ fhir:v "official" ] ; # The name associated with the individual (fictive)
fhir:text [ fhir:v "Roel" ] ;
fhir:family [ fhir:v "Bor" ] ;
fhir:given ( [ fhir:v "Roelof Olaf" ] ) ;
fhir:prefix ( [ fhir:v "Drs." ] ) ;
fhir:suffix ( [ fhir:v "PDEng." ] )
] ) ; #
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ; # The mobile contact detail for the individual
fhir:value [ fhir:v "+31612345678" ] ;
fhir:use [ fhir:v "mobile" ]
] [
fhir:system [ fhir:v "phone" ] ; # The home contact detail for the individual
fhir:value [ fhir:v "+31201234567" ] ;
fhir:use [ fhir:v "home" ]
] ) ; #
fhir:gender [ fhir:v "male"] ; #
fhir:birthDate [ fhir:v "1960-03-13"^^xsd:date] ; #
fhir:deceased [ fhir:v "false"^^xsd:boolean] ; # The date and time of birth for the individual
fhir:address ( [
fhir:use [ fhir:v "home" ] ; # Home address for the individual
fhir:line ( [ fhir:v "Bos en Lommerplein 280" ] ) ;
fhir:city [ fhir:v "Amsterdam" ] ;
fhir:postalCode [ fhir:v "1055RW" ] ;
fhir:country [ fhir:v "NLD" ]
] ) ; # Indicates that the individual is not deceased , ISO 3166 3 letter code
fhir:maritalStatus [
fhir:coding ( [
a sct:36629006 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "36629006" ] ;
fhir:display [ fhir:v "Legally married" ]
] [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus"^^xsd:anyURI ] ;
fhir:code [ fhir:v "M" ]
] ) # Marital status of the person
] ; #
fhir:multipleBirth [ fhir:v "false"^^xsd:boolean] ; #
fhir:photo ( [
fhir:contentType [ fhir:v "image/jpeg" ] ;
fhir:url [ fhir:v "Binary/f006"^^xsd:anyURI ]
] ) ; #
fhir:contact ( [
fhir:relationship ( [
fhir:coding ( [
a sct:127850001 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "127850001" ] ;
fhir:display [ fhir:v "Wife" ]
] [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0131"^^xsd:anyURI ] ;
fhir:code [ fhir:v "N" ]
] [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-RoleCode"^^xsd:anyURI ] ;
fhir:code [ fhir:v "WIFE" ]
] ) # Indicates that the contact is the patient's wife
] ) ; # Contact of the patient
fhir:name [
fhir:use [ fhir:v "usual" ] ; # The name of the contact
fhir:text [ fhir:v "Ariadne Bor-Jansma" ]
] ;
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ; # The home contact detail
fhir:value [ fhir:v "+31201234567" ] ;
fhir:use [ fhir:v "home" ]
] )
] ) ; #
fhir:communication ( [
fhir:language [
fhir:coding ( [
fhir:system [ fhir:v "urn:ietf:bcp:47"^^xsd:anyURI ] ;
fhir:code [ fhir:v "nl-NL" ] ;
fhir:display [ fhir:v "Dutch" ]
] )
] ;
fhir:preferred [ fhir:v "true"^^xsd:boolean ]
] ) ; #
fhir:managingOrganization [
fhir:reference [ fhir:v "Organization/f201" ] ;
fhir:display [ fhir:v "AUMC" ]
]] . #
# -------------------------------------------------------------------------------------
Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.
FHIR ®© HL7.org 2011+. FHIR R5 hl7.fhir.core#5.0.0 generated on Sun, Mar 26, 2023 15:25+1100.
Links: Search |
Version History |
Contents |
Glossary |
QA |
Compare to R4 |
Compare to R4B |
|
Propose a change