-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…11) ## Summary 🎫 [AEA-3808](https://nhsd-jira.digital.nhs.uk/browse/AEA-3808) Add Prescription Status message schema to API Specification - Routine Change ### Details The changes to the Prescription Status Update API specification
- Loading branch information
1 parent
7b40495
commit 2cac2c8
Showing
8 changed files
with
76 additions
and
23 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
48 changes: 48 additions & 0 deletions
48
packages/specification/examples/request-ready-to-deliver.json
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,48 @@ | ||
{ | ||
"resourceType": "Bundle", | ||
"type": "transaction", | ||
"entry": [ | ||
{ | ||
"fullUrl": "http://example.org/fhir/Task/4d70678c-81e4-4ff4-8c67-17596fd0aa46", | ||
"resourceType": "Task", | ||
"basedOn": [ | ||
{ | ||
"identifier": { | ||
"system": "https://fhir.nhs.uk/Id/prescription-order-number", | ||
"value": "24F5DA-A83008-7EFE6Z" | ||
} | ||
} | ||
], | ||
"status": "in-progress", | ||
"businessStatus": { | ||
"coding": [ | ||
{ | ||
"system": "https://fhir.nhs.uk/CodeSystem/task-businessStatus-nppt", | ||
"code": "2", | ||
"display": "Ready to deliver" | ||
} | ||
] | ||
}, | ||
"intent": "order", | ||
"focus": { | ||
"identifier": { | ||
"system": "https://fhir.nhs.uk/Id/prescription-order-item-number", | ||
"value": "6989b7bd-8db6-428c-a593-4022e3044c00" | ||
} | ||
}, | ||
"for": { | ||
"identifier": { | ||
"system": "https://fhir.nhs.uk/Id/nhs-number", | ||
"value": "9449304130" | ||
} | ||
}, | ||
"lastModified": "2024-01-30T12:01:24Z", | ||
"owner": { | ||
"identifier": { | ||
"system": "https://fhir.nhs.uk/Id/ods-organization-code", | ||
"value": "C9Z1O" | ||
} | ||
} | ||
} | ||
] | ||
} |
File renamed without changes.