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

Review and Updates for NutritionOrder #1008

Merged
merged 2 commits into from
Nov 7, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 9 additions & 20 deletions content/millennium/r4/clinical/care-provision/nutrition-order.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The NutritionOrder resource returns requests or orders to supply a diet or suppl

The following fields are returned if valued:

* [NutritionOrder id](https://hl7.org/fhir/r4/resource-definitions.html#Resource.id)
* [NutritionOrder ID](https://hl7.org/fhir/r4/resource-definitions.html#Resource.id)
* [Status](https://www.hl7.org/fhir/r4/nutritionorder-definitions.html#NutritionOrder.status)
* [Intent](https://www.hl7.org/fhir/r4/nutritionorder-definitions.html#NutritionOrder.intent)
* [Extensions including basedOn](#extensions)
Expand Down Expand Up @@ -53,13 +53,13 @@ Search for NutritionOrders 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.
`patient` | This or `_id` or `subject` | [`reference`] | Who the nutrition order is for. Example: `12345`
`status` | No | [`token`] | The status of the nutrition order. Example: `active`
`_lastUpdated` | No | [`date`] | An explicit or implied date-time range within which the most recent clinically relevant update was made to the nutrition order. Must include a time, and must be prefixed by ‘ge’ or ‘le’. Example: `ge2014-05-19T20:54:02.000Z`
[`_count`] | No | [`number`] | The maximum number of nutrition orders to include in a page.
`_id` | Conditionally | [`token`] | The logical resource ID associated with the resource. This parameter is required if `subject` is not used. Example: `11111111`
`patient` | Conditionally | [`reference`] | Who the Nutrition Order is for. This parameter is required if the `_id` parameter is not used. Example: `12345`
RicardoCrespo-ora marked this conversation as resolved.
Show resolved Hide resolved
`status` | No | [`token`] | The status of the Nutrition Order. Example: `active`
`_lastUpdated` | No | [`date`] | An explicit or implied date-time range within which the most recent clinically relevant update was made to the Nutrition Order. Must include a time, and must be prefixed by ‘ge’ or ‘le’. Example: `ge2014-05-19T20:54:02.000Z`
[`_count`] | No | [`number`] | The maximum number of Nutrition Orders to include in a page.

Notes:

Expand Down Expand Up @@ -101,9 +101,9 @@ Notes:

The common [errors] and [OperationOutcomes] may be returned.

## Retrieve by id
## Retrieve by ID

List an individual NutritionOrder by its id:
List an individual NutritionOrder by its ID:

GET /NutritionOrder/:id

Expand All @@ -128,17 +128,6 @@ List an individual NutritionOrder by its id:

<%= disclaimer %>

#### Request

GET https://fhir-ehr.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/NutritionOrder/313790117

#### Response

<%= headers status: 200 %>
<%= json(:r4_nutrition_order_child_entry) %>

<%= disclaimer %>

#### Patient Authorization Request

GET https://fhir-ehr.cerner.com/4/ec2458f2-1e24-41c8-b71b-0e701af7583d/NutritionOrder/313790117
Expand Down
Loading