Search

ZD EpisodeOfCare

Resources conforming to this profile are requested by ZorgDomein when populating the referral letter or request form with data from the source information system.

Queries on the https://[FHIRServerUrl]/EpisodeOfCare endpoint may include the following query parameters:

  • patient=[PatientID]: [PatientID] refers to the patient ID as provided in the Task resource that is requested by ZorgDomein during SSO.
  • _sort=-date: indicates that the resources in the search result must be sorted by date, descending.

The canonical URL for this profile is:

http://zorgdomein.nl/fhir/StructureDefinition/zd-episodeofcare

This profile builds on EpisodeOfCare.


idS Σ1..1id
url1..1uriFixed Value
systemΣ1..1uriFixed Value
versionΣ0..1string
codeΣ1..1code
displayΣ0..1string
userSelectedΣ0..1boolean
textΣ0..1string
identifier0..*Identifier
statusΣ ?!1..1codeBinding
status1..1codeBinding
periodI1..1Period
systemΣ0..1uri
versionΣ0..1string
codeΣ1..1codeFixed Value
displayΣ0..1stringFixed Value
userSelectedΣ0..1boolean
textΣ0..1string
referenceΣ I0..1string
identifierΣ0..1Identifier
displayS Σ1..1string
roleΣ0..1CodeableConceptBinding
rankΣ0..1positiveInt
patientS Σ I1..1Reference(ZD Patient)
managingOrganizationΣ I0..1Reference(Organization)
periodS Σ I0..1Period
referralRequestI0..*Reference(ReferralRequest)
careManagerI0..1Reference(Practitioner)
teamI0..*Reference(CareTeam)
accountI0..*Reference(Account)

See the profile on simplifier.net for additional details.

Resource example

Below you find an example of an EpisodeOfCare resource that conforms to the ZD EpisodeOfCare profile.

    {
      "resourceType": "EpisodeOfCare",
      "id": "10893",
      "meta": {
        "versionId": "1",
        "lastUpdated": "2019-06-05T14:23:56.385+02:00",
        "profile": [
          "http://zorgdomein.nl/fhir/StructureDefinition/zd-episodeofcare"
        ]
      },
      "extension": [
        {
          "url": "http://zorgdomein.nl/fhir/StructureDefinition/zd-classification-code",
          "valueCodeableConcept": {
            "coding": [
              {
                "system": "http://hl7.org/fhir/sid/icpc-1-nl",
                "code": "T90",
                "display": "Diabetes mellitus"
              }
            ]
          }
        }
      ],
      "status": "active",
      "type": [
        {
          "coding": {
            "code": "flagged-episode",
            "display": "Episode met attentiewaarde"
          }
        }
      ],
      "diagnosis": [
        {
          "condition": {
            "display": "Diabetes mellitus"
          }
        }
      ],
      "patient": {
        "reference": "Patient/10796"
      },
      "period": {
        "start": "2017-02-14T00:00:00+01:00"
      }
    }
    
    <EpisodeOfCare xmlns='http://hl7.org/fhir'>
      <id value='10893'/>
      <meta>
        <versionId value='1'/>
        <lastUpdated value='2019-06-05T14:23:56.385+02:00'/>
        <profile value='http://zorgdomein.nl/fhir/StructureDefinition/zd-episodeofcare'/>
      </meta>
      <extension url='http://zorgdomein.nl/fhir/StructureDefinition/zd-classification-code'>
        <valueCodeableConcept>
          <coding>
            <system value='http://hl7.org/fhir/sid/icpc-1-nl'/>
            <code value='T90'/>
            <display value='Diabetes mellitus'/>
          </coding>
        </valueCodeableConcept>
      </extension>
      <status value='active'/>
      <type>
        <coding>
          <code value='flagged-episode'/>
          <display value='Episode met attentiewaarde'/>
        </coding>
      </type>
      <diagnosis>
        <condition>
          <display value='Diabetes mellitus'/>
        </condition>
      </diagnosis>
      <patient>
        <reference value='Patient/10796'/>
      </patient>
      <period>
        <start value='2017-02-14T00:00:00+01:00'/>
      </period>
    </EpisodeOfCare>