Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Commit

Permalink
Reviewed per PRODOC-202500
Browse files Browse the repository at this point in the history
Edits per PRODOC-202500
  • Loading branch information
summerlcollins committed Oct 23, 2023
1 parent efb3bbf commit 1d337d9
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions content/millennium/dstu2/medications/immunization.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ title: Immunization | DSTU 2 API

## Overview

The Immunization resource is intended to cover the recording of current and historical administration of vaccines to patients across all healthcare disciplines in all care settings and all regions. This resource contains the functionality to query a patient's immunization history. Detailed administration records may be found in the [`MedicationAdministration`] resource, while this Immunization resource would represent the known vaccination history regardless of where the administration itself was done.
The Immunization resource is intended to cover the recording of current and historical administration of vaccines to patients across all healthcare disciplines, in all care settings, and all regions. This resource contains the functionality to query a patient's immunization history. Detailed administration records may be found in the [`MedicationAdministration`] resource, while this Immunization resource would represent the known vaccination history regardless of where the administration itself was done.

An immunization reaction may indicate an allergy or intolerance. If so, a separate [`AllergyIntolerance`] resource instance should be created as well.
An immunization reaction may indicate an allergy or intolerance. If so, a separate [`AllergyIntolerance`] resource instance must be created.

Note that while the terms "immunization" and "vaccination" are not clinically identical, for the purposes of FHIR resources, the terms are used synonymously.
Note that while the terms immunization and vaccination are not clinically identical, for the purposes of FHIR resources, the terms are used synonymously.

The following fields are returned if valued:

Expand Down Expand Up @@ -45,7 +45,7 @@ The common [errors] and [OperationOutcomes] may be returned.

## Search

Search for Immunizations that meet supplied query parameters:
Search for immunizations that meet supplied query parameters:

GET /Immunization?:parameters

Expand All @@ -55,11 +55,11 @@ Search for Immunizations that meet supplied query parameters:

### Parameters

Name | Required? | Type | Description
Name | Required | Type | Description
-----------|--------------------|---------------|-----------------------------------------------------------------------------------------------------
`_id` | This, or `patient` | [`token`] | The logical resource id associated with the resource. Example `12345`
`patient` | This, or `_id` | [`reference`] | The patient for the vaccination record(s). Example: `12345`
`date` | N | [`date`] | Date range for the immunization administration(s). Example: `date=ge2020-01-01T08:00:00.000Z&date=le2020-01-31T17:00:00.000Z`
`_id` | Conditionally | [`token`] | The logical resource ID associated with the resource. This parameter is required if the `patient` parameter is not used. Example: `12345`
`patient` | Conditionally | [`reference`] | The patient for the vaccination record(s). This parameter is required if the `_id` parameter is not used. Example: `12345`
`date` | No | [`date`] | Date range for the immunization administration(s). Example: `date=ge2020-01-01T08:00:00.000Z&date=le2020-01-31T17:00:00.000Z`

_Implementation Notes_

Expand Down Expand Up @@ -93,9 +93,9 @@ _Implementation Notes_
<%= json(:dstu2_immunization_bundle) %>


## Retrieve by id
## Retrieve by ID

List an individual Immunization by its id:
List an individual immunization by its ID:

GET /Immunization/:id

Expand Down

0 comments on commit 1d337d9

Please sign in to comment.