...
Info |
---|
A Patient is considered a 'singleton' in the eHealth Infrastructure. The patient is primarily a container for demographic information. While it is allowed according to the FHIR specification to have multiple different logical Patient for the same person, it does not fit the case for the infrastructure and the Danish modelling of patient information. As such, the patient resource is shared across different episode of cares and other clinical resources. |
Ensuring a Match Between CRN and Citizen
In order to verify correspondence between Citizen name and CRN, a lookup can be made with Person name lookup, based on the CRN given in the input Person resource.
...
Expand |
---|
title | Example Create Patient HTTP Request and Response |
---|
|
Code Block |
---|
| POST /Patient/$createPatient
Content-Type: text/xml; extended-operation-type
Accept: */*
Host: localhost:8080
accept-encoding: gzip, deflate
content-length: 689
<Parameters xmlns="http://hl7.org/fhir">
<parameter>
<name value="crn"/>
<valueIdentifier>
<system value="urn:oid:1.2.208.176.1.2"/>
<value value="2810887020"/>
</valueIdentifier>
</parameter>
</Parameters> |
Example HTTP Response: Code Block |
---|
| HTTP/1.1 200
status: 200
Date: Wed, 20 Feb 2019 09:00:35 GMT
X-Powered-By: Trifork
Content-Type: application/fhir+xml;charset=utf-8
Content-Encoding: gzip
Transfer-Encoding: chunked
Server: Jetty(9.4.14.v20181114)
<Parameters xmlns="http://hl7.org/fhir">
<parameter>
<resource>
<Patient xmlns="http://hl7.org/fhir">
<id value="9952"/>
<meta>
<versionId value="1"/>
<lastUpdated value="2019-03-29T11:22:34.053+01:00"/>
<profile value="http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-patient"/>
</meta>
<text>...</text>
<identifier>
<system value="urn:oid:1.2.208.176.1.2"/>
<value value="2810887020"/>
</identifier>
<name>
<family value="Møller"/>
<given value="Anne"/>
<given value="Holm"/>
</name>
<birthDate value="1988-10-28"/>
<address>
<extension url="http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-municipality-code">
<valueCoding>
<system value="urn:oid:1.2.208.176.8.1.100"/>
<code value="370"/>
<display value="Næstved"/>
</valueCoding>
</extension>
<use value="home"/>
<type value="postal"/>
<line value="Bjergagervej 110"/>
<city value="Karrebæksminde"/>
<postalCode value="4736"/>
<country value="DK"/>
</address>
<generalPractitioner>
<reference value="http://organization.exttest.ehealth.sundhed.dk/fhir/Organization/1"/>
</generalPractitioner>
</Patient>
</resource>
</parameter>
</Parameters> |
|
...
Over the lifecycle of an EpisodeOfCare, the set of CareTeam involved might change. Adjustment of CareTeam involved can be performed in a number of ways:
Through EpisodeOfCare Patch
Through EpisodeOfCare$update-care-teams
...