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

Location: Add note and fix identifier search value for Location resource #840

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 5 additions & 3 deletions content/millennium/r4/base/entities/location.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Search for Locations that meet supplied query parameters:
----------------------|-------------------------|--------------|-------------------------------------------------------
`_id` | This or `-physicalType` | [`token`] | The logical resource id associated with the resource.
`-physicalType` | This or `_id` | [`token`] | The location’s physical type. Example: `http://terminology.hl7.org/CodeSystem/location-physical-type|ro`
`identifier` | no | [`token`] | The location’s identifier. Example: `653385|FSI^~BUILD^~NU`
`identifier` | no | [`token`] | The location’s identifier. Example: `SE123456-O12345`
[`_count`] | no | [`number`] | The maximum number of results to return. Defaults to `100`.
`address` | no | [`string`] | A (part of the) address of the location.
`address-city` | no | [`string`] | A city specified in an address
Expand All @@ -73,7 +73,9 @@ Search for Locations that meet supplied query parameters:
- The `-physicalType` parameter
- Searching by Millennium proprietary codes is not supported.
- The `-address-city` parameter
- needs address-state or address-postalcode while searching with address-city
- Needs address-state or address-postalcode while searching with address-city.
- The `identifier` parameter
- Only Millennium Outbound Aliases are supported.

### Headers

Expand All @@ -96,7 +98,7 @@ Search for Locations that meet supplied query parameters:

#### Request

GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Location?identifier=653385|FSI^~BUILD^~NU
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Location?identifier=SE123456-O12345

#### Response

Expand Down
16 changes: 8 additions & 8 deletions lib/resources/example_json/r4_examples_location.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ module Resources
"userSelected": true
]
},
"system": 'FIN NBR',
"value": '16000'
"system": 'FIN_NBR',
"value": 'SE123456-O12345'
}
],
"status": 'active',
Expand Down Expand Up @@ -135,8 +135,8 @@ module Resources
"userSelected": true
]
},
"system": 'FIN NBR',
"value": '16000'
"system": 'FIN_NBR',
"value": 'SE123456-O12345'
}
],
"status": 'active',
Expand Down Expand Up @@ -252,8 +252,8 @@ module Resources
"userSelected": true
]
},
"system": 'FIN NBR',
"value": '16000'
"system": 'FIN_NBR',
"value": 'SE123456-O12345'
}
],
"status": 'active',
Expand Down Expand Up @@ -342,8 +342,8 @@ module Resources
"userSelected": true
]
},
"system": 'FIN NBR',
"value": '16000'
"system": 'FIN_NBR',
"value": 'SE123456-O12345'
}
],
"status": 'active',
Expand Down