Skip to content

Commit 90e35d3

Browse files
committed
Merge branch 'main' into CROSSLINK-190-ncip-client-requester-side
2 parents e0a755a + 9557e3a commit 90e35d3

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

illmock/directory/directory_api.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,8 @@ components:
211211
type: string
212212
hrid:
213213
type: string
214+
timeZone:
215+
type: string
214216
symbols:
215217
type: array
216218
items:
@@ -219,6 +221,10 @@ components:
219221
type: array
220222
items:
221223
$ref: '#/components/schemas/Address'
224+
closures:
225+
type: array
226+
items:
227+
$ref: '#/components/schemas/Closure'
222228
endpoints:
223229
type: array
224230
items:
@@ -379,3 +385,25 @@ components:
379385
- Other
380386
value:
381387
type: string
388+
Closure:
389+
type: object
390+
required:
391+
- id
392+
- entry
393+
properties:
394+
id:
395+
readOnly: true
396+
type: string
397+
format: uuid
398+
description: Unique identifier
399+
entry:
400+
type: string
401+
format: uuid
402+
startDate:
403+
type: string
404+
description: ISO8601 date
405+
endDate:
406+
type: string
407+
description: ISO8601 date
408+
reason:
409+
type: string

illmock/directory/examples/directory.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,24 @@
107107
}
108108
]
109109
}
110-
]
110+
],
111+
"closures": [
112+
{
113+
"id": "00251ffa-d517-5e1a-9a9a-a98033dda361",
114+
"entry": "d4cd7068-a9f4-5f3b-8eea-1a169eb71eb2",
115+
"startDate": "2025-12-25",
116+
"endDate": "2025-12-25",
117+
"reason": "Christmas Day"
118+
},
119+
{
120+
"id": "df9bc014-ac1e-527d-8ec1-971830b6511e",
121+
"entry": "d4cd7068-a9f4-5f3b-8eea-1a169eb71eb2",
122+
"startDate": "2026-01-02",
123+
"endDate": "2026-03-01",
124+
"reason": "Renovation"
125+
}
126+
],
127+
"timeZone": "Australia/ACT"
111128
},
112129
{
113130
"id": "69794360-8304-5d8b-9f00-525ab77fc4c0",

0 commit comments

Comments
 (0)