### Example GET Request with Parameters
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/srv_root_url.html
This example demonstrates how to make a GET request to retrieve MedicationOrder resources with specific query parameters. Ensure the 'Accept' header is set correctly.
```shell
$ curl -i -H "Accept: application/json+fhir" "https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/MedicationOrder?patient=2744010&status=active"
```
--------------------------------
### Example GET Request for Procedure
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-procedure-id-get.html
This is an example of a GET request to retrieve a Procedure resource. Ensure the correct ID and endpoint are used.
```http
GET /r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Procedure/1788134987
```
--------------------------------
### GET Request Example
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-nutritionorder-id-get.html
This example demonstrates how to make a GET request to retrieve a NutritionOrder resource. Ensure the base URL and resource ID are correct for your environment.
```http
GET https://fhir-ehr.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/NutritionOrder/328575703
```
--------------------------------
### Example GET Request for Operation Definition
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-operationdefinition-id-get.html
This is an example GET request to retrieve a specific operation definition by its ID.
```http
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/OperationDefinition/binary-autogen-ccd-if
```
--------------------------------
### Example x-actor Consent GET Response
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-consent-get.html
This is an example of a successful response when querying for Consent information. It returns a Bundle resource containing Consent details.
```JSON
{
"resourceType": "Bundle",
"id": "133043a5-2f67-41c7-a93c-bfe3cb95dffd",
"type": "searchset",
"link": [
{
"relation": "self",
"url": "https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Consent?actor=12724066-12742397"
}
],
"entry": [
{
"fullUrl": "https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Consent/AR-12742397-12724066",
"resource": {
"resourceType": "Consent",
"id": "AR-12742397-12724066",
"meta": {
"versionId": "95",
"lastUpdated": "2020-08-21T15:51:38.000Z"
},
"text": {
"status": "generated",
"div": "
Consent
Patient Name: Smart, BabyBoy
Status: Inactive
Scope: Privacy Consent
Category: Patient Consent
Policy Rule: Consent given for electronic record sharing (finding)
Consent Start Date: Jan 1, 2001 6:00 A.M. UTC
Consent End Date: Sep 14, 2008 12:00 A.M. UTC
Actor Name: Smart II, Nancy
Actor Role: Authorized Representative
"
},
"status": "active",
"scope": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/consentscope",
"code": "patient-privacy",
"display": "Privacy Consent"
}
],
"text": "Privacy Consent"
},
"category": [
{
"coding": [
{
"system": "http://loinc.org",
"code": "59284-0",
"display": "Patient Consent"
}
],
"text": "Patient Consent"
}
],
"patient": {
"reference": "Patient/12742397",
"display": "Smart, BabyBoy"
},
"policyRule": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "425691002",
"display": "Consent given for electronic record sharing (finding)"
}
],
"text": "Consent given for electronic record sharing (finding)"
},
"provision": {
"type": "permit",
"period": {
"start": "2020-07-09T14:15:16.000Z",
"end": "2008-09-14T00:00:00.000Z"
},
"actor": [
{
"id": "12724066",
"role": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationFunction",
"code": "AUCG",
"display": "caregiver information receiver"
}
],
"text": "Authorized Representative"
},
"reference": {
"reference": "RelatedPerson/12724066-12742397",
"display": "Smart II, Nancy"
}
}
],
"action": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/consentaction",
"code": "correct",
"display": "Access and Correct"
}
],
"text": "Access and Correct"
}
],
"purpose": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-ActReason",
"code": "PurposeOfUse",
"display": "purpose of use"
}
]
}
}
},
{
"search": {
"mode": "match"
}
}
]
}
```
--------------------------------
### Example x-patient GET Request
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-goal-get.html
Use this GET request to retrieve Goal resources for a specific patient. Ensure you have the correct authorization.
```http
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Goal?patient=12724069
```
--------------------------------
### Example GET Request with x-target-date
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-goal-get.html
Use this GET request to retrieve Goal resources filtered by a target date greater than January 12, 2021. Ensure you have the correct authorization.
```http
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Goal?patient=12724069&target-date=gt2021-01-12
```
--------------------------------
### Example x-actor Consent GET Request
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-consent-get.html
Use this GET request to retrieve Consent information for a specific actor. Ensure the actor ID is correctly formatted.
```HTTP
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Consent?actor=12724066-12742397
```
--------------------------------
### Example GET Request for Person Resource
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-person-get.html
Use this GET request to retrieve a specific Person resource. Ensure you include the correct base URL and the unique identifier for the person.
```http
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Person/2572382193
```
--------------------------------
### x-include Request
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-consent-get.html
Example GET request for retrieving Consent resources with included patient and actor information.
```http
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Consent?patient=12742397&_include=Consent:patient&_include=Consent:actor
```
--------------------------------
### Example CareTeam Search Request
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-careteam-get.html
This example demonstrates how to construct a GET request to search for care teams associated with a specific patient and encounter category. Ensure your authorization token has the necessary scopes.
```http
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/CareTeam?patient=119078440&category=encounter
```
--------------------------------
### Example Request and Response
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-chargeitem-id-credit-post.html
Example POST request for the $credit operation and the corresponding response headers.
```http
POST https://fhir-ehr.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/ChargeItem/292427912/$credit
```
```http
no-cache
Content-Length: 0
Content-Type: application/fhir+json
Date: Tue, 07 Sep 2021 17:23:14 GMT
Etag: W/"0"
Location: https://fhir-ehr.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/ChargeItem/2180632343
Last-Modified: Tue, 07 Sep 2021 17:25:14 GMT
Vary: Origin
X-Request-Id: 11111111111111111111111111111111
```
--------------------------------
### CORS GET Request Example
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/r4_overview.html
Example of a GET request sent from a specific origin to the API, demonstrating Cross-Origin Resource Sharing (CORS) headers.
```curl
$ curl -X GET -i -H "Origin: http://example.com" https://fhir-ehr-code.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/metadata
HTTP/1.1 200 OK
Access-Control-Allow-Methods: DELETE, GET, POST, PUT, PATCH, OPTIONS, HEAD
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: ETag, Content-Location, Location, X-Request-Id, WWW-Authenticate, Date
Access-Control-Max-Age: 0
```
--------------------------------
### Resource Identity Example 2 (Different Context)
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/srv_root_url.html
This example illustrates how the same resource ID can refer to a different resource if the service root URL (context) changes. Always use the complete URL.
```text
https://fhir-open.cerner.com/r4/d075cf8b-3261-481d-97e5-ba6c48d3b41f/Patient/12742400
```
--------------------------------
### Identifier Period Field Example
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-encounter-post.html
Example structure for the period field indicating validity start time.
```json
{
"start": "2017-01-17T20:39:40.000Z"
}
```
--------------------------------
### Procedure Resource Example
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-procedure-post.html
A complete example of a Procedure resource payload.
```json
{
"resourceType": "Procedure",
"status": "completed",
"meta": {
"security": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
"code": "PHY"
},
{
"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
"code": "PRS"
}
]
},
"subject": {
"reference": "Patient/12724066"
},
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "119954001",
"display": "Adenoid excision (procedure)",
"userSelected": true
}
],
"text": "Adenoid excision (text)"
},
"encounter": {
"reference": "Encounter/97953477"
},
"location": {
"display": "Baseline East"
},
"performedDateTime": "2019-04-05T20:21:46Z",
"performedPeriod": {
"start": "2019-04-05T20:21:46Z",
"end": "2019-04-05T21:21:46Z"
},
"performer": [
{
"function": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "223366009",
"display": "Healthcare professional (occupation)",
"userSelected": true
}
],
"text": "Healthcare professional (occupation)"
},
"actor": {
"reference": "Practitioner/4122630"
}
}
],
"note": [
{
"text": "Procedure comment",
"time": "2019-04-05T20:21:46Z",
"authorReference": {
"reference": "Practitioner/4122630"
}
}
]
}
```
--------------------------------
### POST /Practitioner/
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-practitioner-post.html
Creates a new practitioner resource for reference purposes.
```APIDOC
## POST /Practitioner/
### Description
Creates a practitioner to be referenced by other resources. This API is not used for user provisioning.
### Method
POST
### Endpoint
/Practitioner/
### Authorization Types
- Provider
- System
```
--------------------------------
### GET NutritionOrder Request
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-nutritionorder-id-get.html
This is an example of a GET request to retrieve a NutritionOrder. Ensure the base URL and resource ID are correct for your environment.
```http
GET https://fhir-ehr.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/NutritionOrder/328575687
```
--------------------------------
### Parameters Resource Structure
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-chargeitem-id-credit-post.html
A full example of the Parameters resource used for the $credit operation.
```json
{
"resourceType": "Parameters",
"parameter": [
{
"name": "versionId",
"valueId": "2"
},
{
"name": "transactionId",
"valueUuid": "urn:uuid:5bb8acae-0c7d-11ec-82a8-0242ac130003"
},
{
"name": "subject",
"valueReference": {
"reference": "Patient/12782842"
}
},
{
"name": "context",
"valueReference": {
"reference": "Encounter/98019577"
}
}
]
}
```
--------------------------------
### Example JSON Response for x-target-date
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-goal-get.html
This is an example of a Bundle resource returned when querying for Goal resources with a specific target date. It includes details of the Goal, its status, and associated metadata.
```json
{
"resourceType": "Bundle",
"id": "b399773c-51f2-43f1-a539-ec85e5d6609c",
"type": "searchset",
"link": [
{
"relation": "self",
"url": "https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Goal?patient=12724069&target-date=gt2021-01-12"
}
],
"entry": [
{
"fullUrl": "https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Goal/187042107",
"resource": {
"resourceType": "Goal",
"id": "187042107",
"meta": {
"versionId": "1607035687000",
"lastUpdated": "2020-12-03T22:48:07.000Z"
},
"text": {
"status": "generated",
"div": "Goal
Subject: SMART, TIMMY
Description: Maintain a healthy weight
Expressed By: SMART, TIMMY
Status: Active
Start Date: Dec 3, 2020
Target Date: Dec 31, 2020
"
},
"lifecycleStatus": "active",
"achievementStatus": {
"coding": [
{
"system": "http://hl7.org/fhir/goal-achievement",
"code": "achieved",
"display": "Achieved"
}
],
"text": "Achieved"
},
"category": [
{
"coding": [
{
"system": "https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/4003016",
"code": "25481501",
"display": "Physiologic",
"userSelected": true
},
{
"system": "http://terminology.hl7.org/CodeSystem/goal-category",
"code": "physiotherapy",
"display": "Physiotherapy",
"userSelected": false
}
],
"text": "Physiologic"
}
],
"description": {
"coding":[
{
"system":"https://fhir.cerner.com/eb2384f8-839e-4c6e-8b29-18e71db1a0b1/codeSet/72",
"code":"747214249",
"display":"O-Food security (finding)",
"userSelected":true
},
{
"system":"http://snomed.info/sct",
"code":"1078229009",
"display":"Food security (finding)",
"userSelected":false
}
],
"text":"O-Food security (finding)"
},
"subject": {
"reference": "Patient/12724069",
"display": "SMART, TIMMY"
},
"startDate": "2020-12-03",
"target": [
{
"dueDate": "2020-12-31"
}
],
"statusDate": "2020-12-03",
"expressedBy": {
"reference": "Patient/12724069",
"display": "SMART, TIMMY"
},
"note": [
{
"authorReference": {
"reference": "Practitioner/995932",
"display": "Smart, John"
},
"time": "2020-11-12T16:14:20.000Z",
"text": "Daily exercise"
}
]
}
}
]
}
```
--------------------------------
### GET Request for DocumentReference
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-documentreference-id-get.html
Example of a GET request to retrieve a DocumentReference. Ensure the base URL and resource ID are correct for your environment.
```http
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/DocumentReference/206098371
```
--------------------------------
### GET /Coverage
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-coverage-get.html
Example search for encounter-level private coverage.
```APIDOC
## GET /Coverage
### Description
Retrieves encounter-level private coverage information based on the provided encounter ID.
### Method
GET
### Endpoint
https://fhir-ehr-code.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Coverage
### Query Parameters
- **-encounter** (string) - Required - The ID of the encounter to filter coverage by.
### Request Example
```
GET https://fhir-ehr-code.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Coverage?-encounter=97954095
```
### Headers
- **X-Request-Id** (string) - Optional - Unique Oracle-assigned identifier for the request.
- **opc-request-id** (string) - Optional - Unique Oracle-assigned identifier for the request.
### Response
#### Success Response (200)
- **resourceType** (string) - Indicates the resource type, which is 'Bundle' for search results.
- **id** (string) - Unique identifier for the bundle.
- **type** (string) - The type of the bundle, typically 'searchset'.
- **total** (integer) - The total number of resources in the bundle.
- **link** (array) - Contains links related to the bundle, including a self-referential URL.
- **entry** (array) - An array of entries, where each entry contains a resource.
- **fullUrl** (string) - The absolute URL of the resource.
- **resource** (object) - The actual resource data, in this case, a 'Coverage' resource.
- **resourceType** (string) - The type of resource, 'Coverage'.
- **id** (string) - The unique identifier for the coverage resource.
- **meta** (object) - Metadata about the resource, including versionId and lastUpdated.
- **text** (object) - Human-readable summary of the resource.
- **extension** (array) - Extensions to the resource, such as the encounter reference.
- **status** (string) - The status of the coverage (e.g., 'active').
- **type** (object) - The type of coverage.
- **subscriber** (object) - Reference to the subscriber.
- **subscriberId** (string) - The subscriber's identifier.
- **beneficiary** (object) - Reference to the beneficiary.
- **dependent** (string) - The dependent number.
- **relationship** (object) - The relationship of the beneficiary to the subscriber.
- **period** (object) - The period for which the coverage is effective.
- **payor** (array) - References to the payor(s) of the coverage.
- **class** (array) - Information about the coverage class, such as plan details.
#### Response Example
```json
{
"resourceType": "Bundle",
"id": "d42baa44-1566-458c-8457-10fbfacfc3e5",
"type": "searchset",
"total": 1,
"link": [
{
"relation": "self",
"url": "https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Coverage?-encounter=97954095"
}
],
"entry": [
{
"fullUrl": "https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Coverage/97954095-98320174",
"resource": {
"resourceType": "Coverage",
"id": "97954095-98320174",
"meta": {
"versionId": "0",
"lastUpdated": "2020-07-27T21:01:55.000Z"
},
"text": {
"status": "extensions",
"div": "Coverage
Status: Active
Subscriber: SMART, NANCY
Subscriber Id: 12345
Encounter: 97954095
Beneficiary: SMART, NANCY
Dependent Number: 12345
Coverage Start Date: Feb 2, 2020 6:00 A.M. UTC
Coverage End Date: Feb 3, 2021 5:59 A.M. UTC
Payor: Aetna
Class: plan: Value: 2830233 Name: Aetna
"
},
"extension": [
{
"url": "https://fhir-ehr.cerner.com/r4/StructureDefinition/coverage-encounter",
"valueReference": {
"reference": "Encounter/97954095"
}
}
],
"status": "active",
"type": {
"coding": [
{
"system": "urn:oid:2.16.840.1.113883.3.221.5",
"code": "5",
"display": "PRIVATE HEALTH INSURANCE",
"userSelected": false
}
],
"text": "Private Health Insurance"
},
"subscriber": {
"reference": "Patient/12724066",
"display": "SMART, NANCY"
},
"subscriberId": "12345",
"beneficiary": {
"reference": "Patient/12724066",
"display": "SMART, NANCY"
},
"dependent": "12345",
"relationship": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/subscriber-relationship",
"code": "self",
"display": "Self",
"userSelected": false
}
],
"text": "Self"
},
"period": {
"start": "2020-02-02T06:00:00.000Z",
"end": "2021-02-03T05:59:59.000Z"
},
"payor": [
{
"reference": "Organization/3064032",
"display": "Aetna"
}
],
"class": [
{
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/coverage-class",
"code": "plan"
}
]
},
"value": "2830233",
"name": "Aetna"
}
]
}
}
]
}
```
```
--------------------------------
### GET ChargeItem Request Example
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-chargeitem-get.html
Use this GET request to retrieve ChargeItem resources. Ensure the authorization type is correctly set to Provider or System.
```http
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/ChargeItem?context=97953601&-status=billable
```
--------------------------------
### Provenance Resource Example
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op--post.html
Example of a Provenance resource used within a batch entry.
```json
{
"resourceType": "Provenance",
"target": [
{
"reference": "DocumentReference/881049"
}
],
"recorded": "2019-10-25T14:57:43Z",
"agent": [
{
"type": {
"coding": [
{
"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-provenance-participant-type",
"code": "transmitter"
}
]
},
"role": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/contractsignertypecodes",
"code": "SOURCE"
}
]
}
],
"who": {
"reference": "Organization/619848"
}
}
],
"entity": [
{
"role": "source",
"what": {
"reference": "DocumentReference/S-201"
}
}
]
}
```
--------------------------------
### Full Observation Resource Example
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-observation-id-put.html
A complete JSON representation of an Observation resource.
```json
{
"resourceType": "Observation",
"id": "VS-197356031",
"identifier": [
{
"system": "https://fhir.cerner.com/ceuuid",
"value": "CE87caf4b7-9397-4667-9897-702218017c9e-197356031-2021061619245900"
}
],
"status": "corrected",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/observation-category",
"code": "vital-signs",
"display": "Vital Signs"
}
],
"text": "Vital Signs"
}
],
"code": {
"coding": [
{
"system": "https://fhir.cerner.com/d242a518-4074-4bd4-a3a6-adfe0c5c1c51/codeSet/72",
"code": "703558",
"display": "Temperature Oral",
"userSelected": true
}
],
"text": "Temperature Oral"
},
"subject": {
"reference": "Patient/12457979"
},
"encounter": {
"reference": "Encounter/97787491"
},
"effectiveDateTime": "2020-07-04T07:15:00.000Z",
"issued": "2021-05-06T20:07:14.000Z",
"performer": [
{
"extension": [
{
"valueCodeableConcept": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code": "LA",
"display": "legal authenticator"
}
],
"text": "legal authenticator"
},
"url": "http://hl7.org/fhir/StructureDefinition/event-performerFunction"
}
],
"reference": "Practitioner/1"
}
],
"valueQuantity": {
"value": 123,
"unit": "mmHg",
"system": "http://unitsofmeasure.org",
"code": "mm[Hg]"
}
}
```
--------------------------------
### x-revinclude Request
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-encounter-get.html
Example HTTP GET request for the x-revinclude operation.
```http
GET https://fhir-ehr.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Encounter?_id=1361920&_revinclude=Provenance:target
```
--------------------------------
### ChargeItem Search Response Example
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-chargeitem-get.html
This is an example of a successful response when searching for ChargeItem resources. It returns a Bundle containing ChargeItem resources that match the query.
```json
{
"resourceType": "Bundle",
"id": "0f2ae629-4e99-4843-a200-406dffce7091",
"type": "searchset",
"total": 1,
"link": [
{
"relation": "self",
"url": "https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/ChargeItem?context=97953601&-status=billable"
}
],
"entry": [
{
"fullUrl": "https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/ChargeItem/292870306",
"resource": {
"resourceType": "ChargeItem",
"id": "292870306",
"meta": {
"versionId": "1",
"lastUpdated": "2020-03-09T17:23:00Z"
},
"text": {
"status": "generated",
"div": "Charge Item
Status: Billable
Patient: 12742419
Encounter: 97953601
Code: 64897
Occurrence: Mar 6, 2020 6:22 P.M. UTC
"
},
"extension": [
{
"valueMoney": {
"value": 100,
"currency": "USD"
},
"url": "https://fhir-ehr.cerner.com/r4/StructureDefinition/unit-price"
},
{
"valueMoney": {
"value": 800,
"currency": "USD"
},
"url": "https://fhir-ehr.cerner.com/r4/StructureDefinition/net-price"
},
{
"extension": [
{
"valueCodeableConcept": {
"coding": [
{
"system": "http://hl7.org/fhir/sid/ndc",
"code": "1111-1111-111"
}
]
},
"url": "national-drug-product-code"
},
{
"valueQuantity": {
"value": 2.0,
"unit": "milligram (mass)",
"system": "http://unitsofmeasure.org",
"code": "mg"
},
"url": "national-drug-product-quantity"
},
{
"valueDecimal": 2,
"url": "https://fhir-ehr.cerner.com/r4/StructureDefinition/quantity-conversion-factor"
}
],
"url": "https://fhir-ehr.cerner.com/r4/StructureDefinition/national-drug-product"
},
{
"valueString": "Acetaminophen Level",
"url": "https://fhir-ehr.cerner.com/r4/StructureDefinition/description"
},
{
"extension": [
{
"valueCodeableConcept": {
"coding": [
{
"extension": [
{
"valueCoding": {
"system": "https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/14002",
"code": "615214"
},
"url": "https://fhir-ehr.cerner.com/r4/StructureDefinition/bill-code-schedule"
}
],
"system": "https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/CodeSystem/BillCodes-CPT",
"code": "10081"
}
]
},
"url": "code"
},
{
"valueUnsignedInt": 1,
"url": "https://fhir-ehr.cerner.com/r4/StructureDefinition/priority"
}
],
"url": "https://fhir-ehr.cerner.com/r4/StructureDefinition/procedure-code"
},
{
"extension": [
{
"valueCodeableConcept": {
"coding": [
{
"extension": [
{
"valueCoding": {
"system": "https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/14002",
"code": "615215"
},
"url": "https://fhir-ehr.cerner.com/r4/StructureDefinition/bill-code-schedule"
}
],
"system": "https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/CodeSystem/BillCodes-HCPCS",
"code": "A0130"
}
]
},
"url": "code"
},
{
"valueUnsignedInt": 1,
"url": "https://fhir-ehr.cerner.com/r4/StructureDefinition/priority"
}
],
"url": "https://fhir-ehr.cerner.com/r4/StructureDefinition/procedure-code"
}
]
}
}
]
}
```
--------------------------------
### Example Response Headers for Coverage Creation
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-coverage-post.html
The response includes headers like `ETag` for versioning, `Location` for the created resource's URI, and `X-Request-Id` or `opc-request-id` for request tracing.
```HTTP
Cache-Control: no-cache
Content-Length: 0
Content-Type: application/fhir+json
Date: Tue, 22 Oct 2019 15:59:33 GMT
Etag: W/"0"
Last-Modified: Tue, 22 Oct 2019 15:59:30 GMT
Location: https://fhir-ehr-code.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Coverage/31363178-11500257
Vary: Origin
X-Request-Id: 11111111-1111-1111-1111-111111111111
opc-request-id: /11111111111111111111111111111111/11111111111111111111111111111111
```
--------------------------------
### Get Schedule by ID Response Example
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-schedule-id-get.html
Example JSON response for a successful retrieval of a schedule by its ID. This format is used when the Accept header is set to application/fhir+json.
```json
{
"resourceType":"Schedule",
"id":"24477854-21304876-62852027-0",
"meta":{
"versionId":"34229204v992283",
"lastUpdated":"2020-07-06T18:46:08.000Z"
},
"text":{
"status":"generated",
"div":"Schedule
Status: Active
Service Type: Established Patient
Practitioner: Cerner Test, Physician - Primary Care Cerner
"
},
"active":true,
"serviceType":[
{
"coding":[
{
"system":"https://fhir.cerner.com/ec2458f2-1e24-41c8-b71b-0e701af7583d/codeSet/14249",
"code":"24477854",
"display":"Established Patient",
"userSelected":true
}
],
"text":"Established Patient"
}
],
"actor":[
{
"reference":"Practitioner/593923",
"display":"Cerner Test, Physician - Primary Care Cerner"
}
]
}
```
--------------------------------
### x-revinclude Request Example
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-condition-get.html
Example GET request to retrieve a Condition resource and its associated Provenance using the _revinclude parameter. Ensure proper authorization is configured.
```http
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Condition?_id=00a5d6eb-c567-42f7-be07-53804cece075&_revinclude=Provenance:target
```
--------------------------------
### Request $get-cg-for-mrcu
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-organization-get-cg-mrcu-get.html
Example HTTP GET request to retrieve organization details.
```http
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Organization/$get-cg-for-mrcu?_id=3304067
```
--------------------------------
### GET Condition with Missing 'clinicalStatus'
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-condition-id-get.html
This example demonstrates a GET request for a Condition resource where the 'clinicalStatus' is missing. The response is an OperationOutcome indicating a 'not-found' error for the missing element.
```http
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Condition/p72985705
```
```json
{
"resourceType": "OperationOutcome",
"issue": [
{
"severity": "error",
"code": "not-found",
"details": {
"text": "Condition.clinicalStatus is missing."
}
}
]
}
```
--------------------------------
### Coding System and Code Example
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-allergyintolerance-post.html
An example demonstrating the structure for providing a coding system and its corresponding code within a data element.
```json
{
"system":"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification",
"code":"confirmed"
}
```
--------------------------------
### GET Condition with 'entered-in-error' Status
Source: https://docs.oracle.com/en/industries/health/millennium-platform-apis/mfrap/op-condition-id-get.html
This example shows a GET request to retrieve a Condition resource that has a verification status of 'entered-in-error'. The response includes the full Condition resource.
```http
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Condition/p73703587
```
```json
{
"resource": {
"resourceType": "Condition",
"id": "p73703587",
"meta": {
"versionId": "73875225",
"lastUpdated": "2023-05-20T19:17:15.000Z",
"security": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
"code": "PHY",
"display": "physician requested information sensitivity",
"userSelected": false
},
{
"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
"code": "PRS",
"display": "patient requested information sensitivity",
"userSelected": false
}
]
},
"text": {
"status": "generated",
"div": "Condition
Patient: Smart II, Nancy
Problem: Therapeutic drug monitoring, Patient encounter status (finding)
Category Classification: Medical
Verification Status: Entered in Error
Onset: Aug 19, 2003
"
},
"verificationStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
"code": "entered-in-error",
"display": "Entered in Error"
}
],
"text": "Entered in Error"
},
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/condition-category",
"code": "problem-list-item",
"display": "Problem List Item"
}
],
"text": "Problem List Item"
},
{
"coding": [
{
"system": "http://snomed.info/sct",
"code": "74188005",
"display": "Medical (qualifier value)",
"userSelected": false
}
],
"text": "Medical"
}
],
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "305058001",
"display": "Patient encounter status (finding)",
"userSelected": false
},
{
"system": "http://e-imo.com/products/problem-it",
"code": "818990",
"display": "Therapeutic drug monitoring",
"userSelected": false
}
],
"text": "Therapeutic drug monitoring"
},
"subject": {
"reference": "Patient/12724066",
"display": "Smart II, Nancy"
},
"onsetDateTime": "2003-08-19",
"recordedDate": "2022-08-24T20:22:15.000Z",
"recorder": {
"reference": "Practitioner/12742069",
"display": "Portal, Portal"
}
},
"search": {
"mode": "match"
}
}
```