-
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.
Docs: [AEA-3997] - update api spec with timestamp and ready to deliver (
#116) ## Summary **Remove items from this list if they are not relevant. Remove this line once this has been done** - Routine Change ### Details Updated the PSU API spec with a new option and added more validation and exmaples to the timestamp for last updated
- Loading branch information
1 parent
aae14cb
commit ee55c88
Showing
3 changed files
with
61 additions
and
1 deletion.
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
54 changes: 54 additions & 0 deletions
54
packages/specification/examples/request-ready-for-delivery.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,54 @@ | ||
{ | ||
"resourceType": "Bundle", | ||
"type": "transaction", | ||
"entry": [ | ||
{ | ||
"fullUrl": "http://example.org/fhir/Task/4d70678c-81e4-4ff4-8c67-17596fd0aa46", | ||
"resource": { | ||
"resourceType": "Task", | ||
"id": "4d70678c-81e4-4ff4-8c67-17596fd0aa46", | ||
"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": "Ready for delivery" | ||
} | ||
] | ||
}, | ||
"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" | ||
} | ||
} | ||
}, | ||
"request": { | ||
"method": "POST", | ||
"url": "Task" | ||
} | ||
} | ||
] | ||
} |
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