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

Commit

Permalink
[R4] Coverage Retrieve by id
Browse files Browse the repository at this point in the history
  • Loading branch information
Someshnsn committed Apr 4, 2024
1 parent fc93318 commit abcf2eb
Show file tree
Hide file tree
Showing 2 changed files with 323 additions and 243 deletions.
72 changes: 72 additions & 0 deletions content/millennium/r4/financial/support/coverage.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ _Implementation Notes_

* Public Healthcare represents an insurance policy funded by a public health system such as a provincial or national health plan. If there are any public coverages, they will return with an id prefixed with 'PH' or 'PHP' and will be returned in the payload with the rest of the coverages (private coverages).

* Search with `_id` is not supported.

### Authorization Types

<%= authorization_types(provider: true, patient: false, system: true) %>
Expand Down Expand Up @@ -125,6 +127,76 @@ _Implementation Notes_

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

## Retrieve by id

List an individual Coverage by its id:

GET /Coverage/:id

### Authorization Types

<%= authorization_types(provider: true, patient: false, system: true) %>

### Headers

<%= headers fhir_json: true %>

### Example - Patient-level Private Coverage

#### Request

GET https://fhir-ehr-code.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Coverage/12724066-490016987-490016987

#### Response

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

<%= disclaimer %>

### Example - Patient-level Public Coverage

#### Request

GET https://fhir-ehr-code.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Coverage/PHP-490218084-12724066

#### Response

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

<%= disclaimer %>

### Example - Encounter-level Private Coverage

#### Request

GET https://fhir-ehr-code.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Coverage/97954095-98320174

#### Response

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

<%= disclaimer %>

### Example - Encounter-level Public Coverage

#### Request

GET https://fhir-ehr-code.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Coverage/PH-98371617-97701467

#### Response

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

<%= disclaimer %>

### Errors

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

## Create

Create new Patient-level or Encounter-level Coverages.
Expand Down
Loading

0 comments on commit abcf2eb

Please sign in to comment.