-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ERSSUP-65227]-[]-[Further OAS files]-[DMW]
- Loading branch information
1 parent
c754cbf
commit 3a54223
Showing
24 changed files
with
630 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
title: Attachment | ||
description: 'Attachment details' | ||
type: object | ||
required: | ||
- url | ||
properties: | ||
extension: | ||
type: array | ||
items: | ||
$ref: 'extensions/Extension-eRS-AttachedBy.yaml' | ||
contentType: | ||
type: string | ||
example: 'application/pdf' | ||
url: | ||
type: string | ||
example: 'Binary/959724e3-8719-4ff3-ae37-5198c450e0f6' | ||
size: | ||
type: integer | ||
example: 123 | ||
title: | ||
type: string | ||
example: 'upload.png' | ||
creation: | ||
type: string | ||
format: date | ||
example: '2021-04-22' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
title: Patient | ||
description: 'Patient that is the subject of the request' | ||
type: object | ||
required: | ||
- identifier | ||
properties: | ||
identifier: | ||
description: 'Reference to the patient' | ||
required: | ||
- system | ||
- value | ||
properties: | ||
system: | ||
type: string | ||
enum: | ||
- 'https://fhir.nhs.uk/Id/nhs-number' | ||
example: 'https://fhir.nhs.uk/Id/nhs-number' | ||
value: | ||
type: string | ||
example: '9912003888' |
133 changes: 133 additions & 0 deletions
133
specification/components/r4/schemas/eRS-Communication.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
title: eRS-Communication | ||
description: 'An A & G Communication' | ||
type: object | ||
required: | ||
- resourceType | ||
- status | ||
- basedOn | ||
- subject | ||
- category | ||
- recipient | ||
- payload | ||
properties: | ||
id: | ||
type: string | ||
example: 'cf8d99c4-b4b1-4ad3-b5b0-2381bee8c6e8' | ||
meta: | ||
type: object | ||
required: | ||
- versionId | ||
properties: | ||
versionId: | ||
type: integer | ||
example: 1 | ||
resourceType: | ||
type: string | ||
enum: | ||
- Communication | ||
example: Communication | ||
subject: | ||
$ref: 'Patient.yaml' | ||
status: | ||
type: string | ||
enum: | ||
- 'completed' | ||
example: 'completed' | ||
received: | ||
type: string | ||
format: date-time | ||
example: '2021-04-22T08:30:00.000Z' | ||
basedOn: | ||
type: array | ||
items: | ||
type: object | ||
required: | ||
- reference | ||
properties: | ||
reference: | ||
type: string | ||
example: 'ServiceRequest/a.832db7fa-ebdd-44b6-ab3b-8329c2d43149' | ||
category: | ||
type: array | ||
items: | ||
type: object | ||
required: | ||
- coding | ||
properties: | ||
coding: | ||
type: array | ||
items: | ||
type: object | ||
required: | ||
- system | ||
- code | ||
properties: | ||
system: | ||
type: string | ||
enum: | ||
- 'https://fhir.nhs.uk/CodeSystem/eRS-CommunicationSentBy' | ||
example : 'https://fhir.nhs.uk/CodeSystem/eRS-CommunicationSentBy' | ||
code: | ||
type: string | ||
enum: | ||
- REQUESTER | ||
- RESPONDER | ||
- REFERRER_CLINICAL_INFORMATION_UPDATED | ||
example: 'REQUESTER' | ||
recipient: | ||
type: array | ||
items: | ||
type: object | ||
required: | ||
- reference | ||
properties: | ||
reference: | ||
type: string | ||
example: 'HealthcareService/54b0506d-49af-4245-9d40-d7d64902055e' | ||
payload: | ||
type: array | ||
items: | ||
anyOf: | ||
- description: 'attached document reference' | ||
type: object | ||
required: | ||
- contentReference | ||
properties: | ||
contentReference: | ||
type: object | ||
required: | ||
- reference | ||
properties: | ||
reference: | ||
type: string | ||
example: 'DocumentReference/6f693b93-fc6f-4aa1-955e-d9548b5a6a9a' | ||
- description: 'Text of advice request' | ||
type: object | ||
required: | ||
- contentString | ||
properties: | ||
contentString: | ||
type: string | ||
example: 'Please advise me on this patient who ...(information about patient)' | ||
contained: | ||
type: array | ||
nullable: true | ||
description: | | ||
| Field | Cardinality | Notes | | ||
| --------------------------------------- | ----------- | ----------------------------------------------- | | ||
| `PractitionerRole` | `1..1` | The Practitioner Role Deatials of the requester | | ||
items: | ||
anyOf: | ||
- $ref: 'PractitionerRole.yaml' | ||
sender: | ||
type: object | ||
required: | ||
- reference | ||
properties: | ||
reference: | ||
type: string | ||
enum: | ||
- '#sender' | ||
example: '#sender' | ||
|
||
|
Oops, something went wrong.