Skip to content

Commit 994a0bd

Browse files
committed
making EhrStatusRequestQuery fields optional
1 parent 11daef4 commit 994a0bd

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ GP2GP 2.2b producer, or those wishing to decommission their existing producer, m
2424
## How to query the EHR Status API and the Requests endpoint
2525

2626
An API is provided to query the status of any transfer to an incumbent.
27-
Any "in-progress" transfers are excluded from this list, but become available once they either succeed or fail.
2827

2928
The API has been documented using the OpenAPI Specification (version 3.0.1). The documentation includes detailed descriptions of endpoints,
3029
parameters, and data models, as well as examples of requests and responses to help developers integrate and use the API effectively

gp2gp_adaptor_response_docs.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ paths:
1111
tags:
1212
- Ehr Status requests controller
1313
operationId: getEhrRequestsEncodedForm
14+
description: 'Any "in-progress" transfers are excluded from this list, but become available once they either succeed or fail'
1415
parameters:
1516
- name: request
1617
in: query
@@ -232,17 +233,23 @@ components:
232233
fromDateTime:
233234
type: string
234235
format: date-time
236+
nullable: true
235237
toDateTime:
236238
type: string
237239
format: date-time
240+
nullable: true
238241
fromAsid:
239242
type: string
243+
nullable: true
240244
toAsid:
241245
type: string
246+
nullable: true
242247
fromOdsCode:
243248
type: string
249+
nullable: true
244250
toOdsCode:
245251
type: string
252+
nullable: true
246253
EhrStatusRequest:
247254
type: object
248255
properties:

0 commit comments

Comments
 (0)