-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprisoner-contact-registry-api.d.ts
More file actions
1217 lines (1216 loc) · 32.5 KB
/
Copy pathprisoner-contact-registry-api.d.ts
File metadata and controls
1217 lines (1216 loc) · 32.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* This file was auto-generated by openapi-typescript.
* Do not make direct changes to the file.
*/
export interface paths {
'/v2/prisoners/{prisonerId}/contacts/social/approved/restrictions/visit-request/date-ranges': {
parameters: {
query?: never
header?: never
path?: never
cookie?: never
}
get?: never
put?: never
/**
* Get all date ranges of visitor restrictions which would cause a visit to be a request visit
* @description Returns a List<DateRangeDto> containing all start/end date pairs of visitor restrictions which cause a visit to be a request visit
*/
post: operations['getDateRangesForVisitorRestrictionsWhichEffectRequestVisits']
delete?: never
options?: never
head?: never
patch?: never
trace?: never
}
'/v2/prisoners/{prisonerId}/contacts/{contactId}/relationships/{relationshipId}': {
parameters: {
query?: never
header?: never
path?: never
cookie?: never
}
/**
* Get a single contact details via their prisoner / contact relationship
* @description Get a single contact details via their prisoner / contact relationship
*/
get: operations['getPrisonerContactDetailsViaRelationship']
put?: never
post?: never
delete?: never
options?: never
head?: never
patch?: never
trace?: never
}
'/v2/prisoners/{prisonerId}/contacts/social': {
parameters: {
query?: never
header?: never
path?: never
cookie?: never
}
/**
* Get Prisoners Social Contacts
* @description Returns details of a prisoner's social contacts
*/
get: operations['getPrisonerSocialContacts']
put?: never
post?: never
delete?: never
options?: never
head?: never
patch?: never
trace?: never
}
'/v2/prisoners/{prisonerId}/contacts/social/approved': {
parameters: {
query?: never
header?: never
path?: never
cookie?: never
}
/**
* Get Prisoners Social Contacts that are approved
* @description Returns details of a prisoner's social contacts that have been approved.
*/
get: operations['getPrisonersSocialContactsApproved']
put?: never
post?: never
delete?: never
options?: never
head?: never
patch?: never
trace?: never
}
'/v2/prisoners/{prisonerId}/contacts/social/approved/restrictions/closed': {
parameters: {
query?: never
header?: never
path?: never
cookie?: never
}
/**
* Get status on any visitors having closed restrictions
* @description Returns a boolean true/false for a given list of visitors if any closed restrictions are found
*/
get: operations['getClosedRestrictionStatusForPrisonerVisitors']
put?: never
post?: never
delete?: never
options?: never
head?: never
patch?: never
trace?: never
}
'/v2/prisoners/{prisonerId}/contacts/social/approved/restrictions/banned/dateRange': {
parameters: {
query?: never
header?: never
path?: never
cookie?: never
}
/**
* Get an updated date range for visitors if a visitor with ban restriction is found, else returns original date
* @description Returns an updated date range for visitors if one is found with an active ban restriction. If not, it returns the original date range
*/
get: operations['getUpdatedDateRangeForPrisonerVisitorsIfFoundWithBanRestrictions']
put?: never
post?: never
delete?: never
options?: never
head?: never
patch?: never
trace?: never
}
'/v2/contacts/{contactId}': {
parameters: {
query?: never
header?: never
path?: never
cookie?: never
}
/**
* Get a contact via Contact ID
* @description Returns a contact's basic details
*/
get: operations['getContact']
put?: never
post?: never
delete?: never
options?: never
head?: never
patch?: never
trace?: never
}
'/v2/contacts/{contactId}/restrictions/global': {
parameters: {
query?: never
header?: never
path?: never
cookie?: never
}
/**
* Get a contact's global restrictions
* @description Returns a contact's global restrictions
*/
get: operations['getContactGlobalRestrictions']
put?: never
post?: never
delete?: never
options?: never
head?: never
patch?: never
trace?: never
}
'/v2/contacts/{contactId}/linked-social-prisoners': {
parameters: {
query?: never
header?: never
path?: never
cookie?: never
}
/**
* Get a contact's linked prisoners via Contact ID
* @description Returns a contact's linked prisoners (prisonerIds) as a list
*/
get: operations['getContactLinkedPrisoners']
put?: never
post?: never
delete?: never
options?: never
head?: never
patch?: never
trace?: never
}
'/v2/contacts/search': {
parameters: {
query?: never
header?: never
path?: never
cookie?: never
}
/**
* Search for contacts with a potential relationship to a prisoner
* @description Returns contact details (including relationship details of prisoner if prisonerId provided).
*/
get: operations['searchContacts']
put?: never
post?: never
delete?: never
options?: never
head?: never
patch?: never
trace?: never
}
}
export type webhooks = Record<string, never>
export interface components {
schemas: {
ErrorResponse: {
/** Format: int32 */
status: number
/** Format: int32 */
errorCode?: number | null
userMessage?: string | null
developerMessage?: string | null
}
/** @description A date range */
DateRangeDto: {
/**
* Format: date
* @description The start of the date range
*/
fromDate: string
/**
* Format: date
* @description The end of the date range
*/
toDate: string
}
/** @description Request body for finding visitor restriction date ranges which would effect request visits */
RequestVisitVisitorRestrictionsBodyDto: {
/** @description Prisoner Id of prisoner who the visit is for */
prisonerId: string
/** @description List of all visitors attending the visit */
visitorIds: string[]
/** @description A list of restriction codes to search for when finding visitor restrictions */
supportedVisitorRestrictionsCodesForRequestVisits: string[]
/** @description The current visit booking window date range (used to limit restriction search) */
currentDateRange: components['schemas']['DateRangeDto']
}
/** @description An address */
AddressDto: {
/**
* @description Flat
* @example 3B
*/
flat?: string | null
/**
* @description Premise
* @example Liverpool Prison
*/
premise?: string | null
/**
* @description Street
* @example Slinn Street
*/
street?: string | null
/**
* @description Locality
* @example Brincliffe
*/
locality?: string | null
/**
* @description Town/City
* @example Liverpool
*/
town?: string | null
/**
* @description Postal Code
* @example LI1 5TH
*/
postalCode?: string | null
/**
* @description County
* @example HEREFORD
*/
county?: string | null
/**
* @description Country
* @example ENG
*/
country?: string | null
/**
* @description Additional Information
* @example This is a comment text
*/
comment?: string | null
/**
* @description Primary Address
* @example false
*/
primary: boolean
/**
* @description No Fixed Address
* @example false
*/
noFixedAddress: boolean
}
/** @description A contact for a prisoner */
PrisonerContactDto: {
/**
* Format: int64
* @description Identifier for this contact (Person in NOMIS)
* @example 5871791
*/
personId?: number | null
/**
* @description First name
* @example John
*/
firstName: string
/**
* @description Middle name
* @example Mark
*/
middleName?: string | null
/**
* @description Last name
* @example Smith
*/
lastName: string
/**
* Format: date
* @description Date of birth
* @example 1980-01-28
*/
dateOfBirth?: string | null
/**
* @description Code for relationship to Prisoner
* @example RO
*/
relationshipCode: string
/**
* @description Description of relationship to Prisoner
* @example Responsible Officer
*/
relationshipDescription?: string | null
/**
* @description Type of Contact
* @example O
*/
contactType: string
/**
* @description Description of Contact Type
* @example Official
*/
contactTypeDescription?: string | null
/** @description Approved Visitor Flag */
approvedVisitor: boolean
/** @description Emergency Contact Flag */
emergencyContact: boolean
/** @description Next of Kin Flag */
nextOfKin: boolean
/** @description List of restrictions associated with the contact */
restrictions: components['schemas']['RestrictionDto'][]
address?: components['schemas']['AddressDto'] | null
/**
* @description Additional Information
* @example This is a comment text
*/
commentText?: string | null
}
/** @description A contact for a prisoner */
RestrictionDto: {
/**
* Format: int32
* @description Restriction ID
* @example 123
*/
restrictionId: number
/**
* @description Restriction Type Code
* @example 123
*/
restrictionType: string
/**
* @description Description of Restriction Type
* @example 123
*/
restrictionTypeDescription: string
/**
* Format: date
* @description Date from which the restriction applies
* @example 2000-10-31
*/
startDate: string
/**
* Format: date
* @description Restriction Expiry
* @example 2000-10-31
*/
expiryDate?: string | null
/** @description True if applied globally to the contact or False if applied in the context of a visit */
globalRestriction: boolean
/**
* @description Additional Information
* @example This is a comment text
*/
comment?: string | null
}
/** @description Boolean flag signifying if any visitors have closed restrictions */
HasClosedRestrictionDto: {
/** @description Has closed restriction */
value: boolean
}
/** @description A contact (no prisoner relationship) */
ContactDto: {
/**
* Format: int64
* @description Identifier for this contact
* @example 5871791
*/
contactId?: number | null
/**
* @description First name
* @example John
*/
firstName: string
/**
* @description Middle name
* @example Mark
*/
middleName?: string | null
/**
* @description Last name
* @example Smith
*/
lastName: string
/**
* Format: date
* @description Date of birth
* @example 1980-01-28
*/
dateOfBirth?: string | null
}
/** @description A linked prisoner of contact */
ContactLinkedPrisonerDto: {
/**
* @description Prisoner number (NOMS ID)
* @example A1234BC
*/
prisonerNumber: string
/**
* @description Coded value indicating either a social or official contact (mandatory).
* This is a coded value from the group code CONTACT_TYPE in reference data.
* Known values are (S) Social or (O) official.
* @example S
*/
relationshipTypeCode: string
}
/** @description A contact with an optional prisoner relationship */
ContactWithOptionalPrisonerRelationshipDto: {
/**
* Format: int64
* @description Identifier for this contact (Person in NOMIS)
* @example 5871791
*/
contactId: number
/**
* Format: int64
* @description The unique identifier for the prisoner-contact relationship
* @example 123456
*/
prisonerContactId?: number | null
/**
* @description First name
* @example John
*/
firstName: string
/**
* @description Middle name
* @example Mark
*/
middleName?: string | null
/**
* @description Last name
* @example Smith
*/
lastName: string
/**
* Format: date
* @description Date of birth
* @example 1980-01-28
*/
dateOfBirth?: string | null
/**
* @description Code for relationship to Prisoner
* @example RO
*/
relationshipCode?: string | null
/**
* @description Description of relationship to Prisoner
* @example Responsible Officer
*/
relationshipDescription?: string | null
/**
* @description Type of Contact
* @example O
*/
contactType?: string | null
/**
* @description Description of Contact Type
* @example Official
*/
contactTypeDescription?: string | null
/** @description List of restrictions associated with the contact */
restrictions: components['schemas']['RestrictionDto'][]
address?: components['schemas']['AddressDto'] | null
/**
* @description Is this prisoner's contact relationship approved?
* @example true
*/
approvedVisitor?: boolean | null
/**
* @description Is this prisoner's contact relationship the emergency contact?
* @example true
*/
emergencyContact?: boolean | null
/**
* @description Is this prisoner's contact relationship the next of kin?
* @example true
*/
nextOfKin?: boolean | null
/** @description comments of the relationship */
comments?: string | null
}
}
responses: never
parameters: never
requestBodies: never
headers: never
pathItems: never
}
export type $defs = Record<string, never>
export interface operations {
getDateRangesForVisitorRestrictionsWhichEffectRequestVisits: {
parameters: {
query?: never
header?: never
path?: never
cookie?: never
}
requestBody: {
content: {
'application/json': components['schemas']['RequestVisitVisitorRestrictionsBodyDto']
}
}
responses: {
/** @description Date ranges returned (empty if none cause sessions to be request visits) */
200: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['DateRangeDto'][]
}
}
/** @description Incorrect request to Get date ranges for prisoner visitors */
400: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Unauthorized to access this endpoint */
401: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Incorrect permissions to Get date ranges for prisoner visitors */
403: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Prisoner or Visitor not found */
404: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
}
}
getPrisonerContactDetailsViaRelationship: {
parameters: {
query?: {
/**
* @description Defaults to false. Returns contact restrictions if set to true, skips grabbing restrictions if false
* @example false
*/
withRestrictions?: boolean
}
header?: never
path: {
/**
* @description Prisoner Identifier (NOMIS Offender No)
* @example A1234AA
*/
prisonerId: string
/**
* @description The ID of the contact which is associated with the prisoner
* @example 57392371
*/
contactId: string
/**
* @description The ID of the prisoner / contact relationship
* @example 23621947
*/
relationshipId: number
}
cookie?: never
}
requestBody?: never
responses: {
/** @description Prisoner Contact Information Returned */
200: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['PrisonerContactDto']
}
}
/** @description Incorrect request to retrieve prisoner's contact details */
400: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Unauthorized to access this endpoint */
401: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Incorrect permissions to retrieve prisoner's contact details */
403: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Prisoner or contact not found */
404: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
}
}
getPrisonerSocialContacts: {
parameters: {
query?: {
/**
* @description Defaults to false. By default when false, returns all contacts with or without a DOB. If true, returns only contacts with a DOB.
* @example false
*/
hasDateOfBirth?: boolean
/**
* @description Defaults to false. Returns all contacts restrictions if set to true, skips grabbing restrictions if false
* @example false
*/
withRestrictions?: boolean
}
header?: never
path: {
/**
* @description Prisoner Identifier (NOMIS Offender No)
* @example A1234AA
*/
prisonerId: string
}
cookie?: never
}
requestBody?: never
responses: {
/** @description Prisoner Social Contacts Information Returned */
200: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['PrisonerContactDto'][]
}
}
/** @description Incorrect request to retrieve prisoner's approved social contacts */
400: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Unauthorized to access this endpoint */
401: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Incorrect permissions to retrieve prisoner's approved social contacts */
403: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Prisoner not found */
404: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
}
}
getPrisonersSocialContactsApproved: {
parameters: {
query?: {
/**
* @description Defaults to false. By default when false, returns all contacts with or without a DOB. If true, returns only contacts with a DOB.
* @example false
*/
hasDateOfBirth?: boolean
/**
* @description Defaults to false. Returns all contacts restrictions if set to true, skips grabbing restrictions if false
* @example false
*/
withRestrictions?: boolean
}
header?: never
path: {
/**
* @description Prisoner Identifier (NOMIS Offender No)
* @example A1234AA
*/
prisonerId: string
}
cookie?: never
}
requestBody?: never
responses: {
/** @description Prisoner Approved Social Contacts Information Returned */
200: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['PrisonerContactDto'][]
}
}
/** @description Incorrect request to retrieve prisoner's approved social contacts */
400: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Unauthorized to access this endpoint */
401: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Incorrect permissions to retrieve prisoner's approved social contacts */
403: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Prisoner not found */
404: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
}
}
getClosedRestrictionStatusForPrisonerVisitors: {
parameters: {
query: {
/**
* @description Ids of prisoner visitors
* @example 9147510, 8431201
*/
visitors: number[]
}
header?: never
path: {
/**
* @description Prisoner Identifier (NOMIS Offender No)
* @example A1234AA
*/
prisonerId: string
}
cookie?: never
}
requestBody?: never
responses: {
/** @description Returned status on visitor closed restrictions successfully */
200: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['HasClosedRestrictionDto']
}
}
/** @description Incorrect request to Get status of visitors closed restrictions */
400: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Unauthorized to access this endpoint */
401: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Incorrect permissions to Get status of visitors closed restrictions */
403: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Prisoner or Visitor */
404: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
}
}
getUpdatedDateRangeForPrisonerVisitorsIfFoundWithBanRestrictions: {
parameters: {
query: {
/**
* @description Ids of prisoner visitors
* @example 9147510, 8431201
*/
visitors: number[]
/**
* @description Start date range
* @example 2024-03-15
*/
fromDate: string
/**
* @description To date range
* @example 2024-03-31
*/
toDate: string
}
header?: never
path: {
/**
* @description Prisoner Identifier (NOMIS Offender No)
* @example A1234AA
*/
prisonerId: string
}
cookie?: never
}
requestBody?: never
responses: {
/** @description Date range returned (original or adjusted) */
200: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['DateRangeDto']
}
}
/** @description Incorrect request to Get date range for prisoner visitors */
400: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Unauthorized to access this endpoint */
401: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Incorrect permissions to Get date range for prisoner visitors */
403: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
/** @description Prisoner, Visitor or Date range not found */
404: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}
}
}
getContact: {
parameters: {
query?: never
header?: never
path: {
/**
* @description The ID of the contact
* @example 57392371
*/
contactId: number
}
cookie?: never
}
requestBody?: never
responses: {
/** @description Contact's basic details returned */
200: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ContactDto']
}
}
/** @description Incorrect request to retrieve a contact's details */
400: {
headers: {
[name: string]: unknown
}
content: {
'application/json': components['schemas']['ErrorResponse']
}
}