@ogcio/building-blocks-sdk 0.2.8 → 0.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +14 -0
- package/dist/client/base-client.d.ts +1 -0
- package/dist/client/base-client.d.ts.map +1 -1
- package/dist/client/base-client.js +3 -0
- package/dist/client/base-client.js.map +1 -1
- package/dist/client/clients/profile/index.d.ts +67 -16
- package/dist/client/clients/profile/index.d.ts.map +1 -1
- package/dist/client/clients/profile/index.js +24 -5
- package/dist/client/clients/profile/index.js.map +1 -1
- package/dist/client/clients/profile/schema.d.ts +107 -63
- package/dist/client/clients/profile/schema.d.ts.map +1 -1
- package/dist/clients-configurations/clients-configuration.json +2 -12
- package/package.json +1 -1
- package/src/client/base-client.ts +4 -0
- package/src/client/clients/profile/index.ts +44 -13
- package/src/client/clients/profile/open-api-definition.json +343 -145
- package/src/client/clients/profile/schema.ts +107 -63
- package/src/clients-configurations/clients-configuration.json +2 -12
|
@@ -16,6 +16,203 @@
|
|
|
16
16
|
"schemas": {}
|
|
17
17
|
},
|
|
18
18
|
"paths": {
|
|
19
|
+
"/api/v1/jobs/import-profiles/{profileImportId}": {
|
|
20
|
+
"post": {
|
|
21
|
+
"tags": [
|
|
22
|
+
"Jobs"
|
|
23
|
+
],
|
|
24
|
+
"description": "Executes the requested job",
|
|
25
|
+
"requestBody": {
|
|
26
|
+
"content": {
|
|
27
|
+
"application/json": {
|
|
28
|
+
"schema": {
|
|
29
|
+
"type": "object",
|
|
30
|
+
"properties": {
|
|
31
|
+
"token": {
|
|
32
|
+
"description": "The security token used to ensure you are allowed to execute this job",
|
|
33
|
+
"type": "string"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"required": [
|
|
37
|
+
"token"
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"required": true
|
|
43
|
+
},
|
|
44
|
+
"parameters": [
|
|
45
|
+
{
|
|
46
|
+
"schema": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"enum": [
|
|
49
|
+
"true",
|
|
50
|
+
"false",
|
|
51
|
+
"0",
|
|
52
|
+
"1"
|
|
53
|
+
],
|
|
54
|
+
"default": "false"
|
|
55
|
+
},
|
|
56
|
+
"in": "query",
|
|
57
|
+
"name": "insertPrivateDetails",
|
|
58
|
+
"required": false
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"schema": {
|
|
62
|
+
"format": "uuid",
|
|
63
|
+
"type": "string"
|
|
64
|
+
},
|
|
65
|
+
"in": "path",
|
|
66
|
+
"name": "profileImportId",
|
|
67
|
+
"required": true
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"responses": {
|
|
71
|
+
"202": {
|
|
72
|
+
"description": "Default Response",
|
|
73
|
+
"content": {
|
|
74
|
+
"application/json": {
|
|
75
|
+
"schema": {
|
|
76
|
+
"type": "object",
|
|
77
|
+
"properties": {
|
|
78
|
+
"status": {
|
|
79
|
+
"type": "string"
|
|
80
|
+
},
|
|
81
|
+
"profileImportId": {
|
|
82
|
+
"type": "string"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"required": [
|
|
86
|
+
"status",
|
|
87
|
+
"profileImportId"
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"5XX": {
|
|
94
|
+
"description": "Default Response",
|
|
95
|
+
"content": {
|
|
96
|
+
"application/json": {
|
|
97
|
+
"schema": {
|
|
98
|
+
"type": "object",
|
|
99
|
+
"properties": {
|
|
100
|
+
"code": {
|
|
101
|
+
"description": "Code used to categorize the error",
|
|
102
|
+
"type": "string"
|
|
103
|
+
},
|
|
104
|
+
"detail": {
|
|
105
|
+
"description": "Description of the error",
|
|
106
|
+
"type": "string"
|
|
107
|
+
},
|
|
108
|
+
"requestId": {
|
|
109
|
+
"description": "Unique request id. This one will be used to troubleshoot the problems",
|
|
110
|
+
"type": "string"
|
|
111
|
+
},
|
|
112
|
+
"name": {
|
|
113
|
+
"description": "Name of the error type",
|
|
114
|
+
"type": "string"
|
|
115
|
+
},
|
|
116
|
+
"validation": {
|
|
117
|
+
"description": "List of the validation errors",
|
|
118
|
+
"type": "array",
|
|
119
|
+
"items": {
|
|
120
|
+
"type": "object",
|
|
121
|
+
"properties": {
|
|
122
|
+
"fieldName": {
|
|
123
|
+
"type": "string"
|
|
124
|
+
},
|
|
125
|
+
"message": {
|
|
126
|
+
"type": "string"
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
"required": [
|
|
130
|
+
"fieldName",
|
|
131
|
+
"message"
|
|
132
|
+
]
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"validationContext": {
|
|
136
|
+
"type": "string"
|
|
137
|
+
},
|
|
138
|
+
"statusCode": {
|
|
139
|
+
"type": "number"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"required": [
|
|
143
|
+
"code",
|
|
144
|
+
"detail",
|
|
145
|
+
"requestId",
|
|
146
|
+
"name",
|
|
147
|
+
"statusCode"
|
|
148
|
+
]
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"4XX": {
|
|
154
|
+
"description": "Default Response",
|
|
155
|
+
"content": {
|
|
156
|
+
"application/json": {
|
|
157
|
+
"schema": {
|
|
158
|
+
"type": "object",
|
|
159
|
+
"properties": {
|
|
160
|
+
"code": {
|
|
161
|
+
"description": "Code used to categorize the error",
|
|
162
|
+
"type": "string"
|
|
163
|
+
},
|
|
164
|
+
"detail": {
|
|
165
|
+
"description": "Description of the error",
|
|
166
|
+
"type": "string"
|
|
167
|
+
},
|
|
168
|
+
"requestId": {
|
|
169
|
+
"description": "Unique request id. This one will be used to troubleshoot the problems",
|
|
170
|
+
"type": "string"
|
|
171
|
+
},
|
|
172
|
+
"name": {
|
|
173
|
+
"description": "Name of the error type",
|
|
174
|
+
"type": "string"
|
|
175
|
+
},
|
|
176
|
+
"validation": {
|
|
177
|
+
"description": "List of the validation errors",
|
|
178
|
+
"type": "array",
|
|
179
|
+
"items": {
|
|
180
|
+
"type": "object",
|
|
181
|
+
"properties": {
|
|
182
|
+
"fieldName": {
|
|
183
|
+
"type": "string"
|
|
184
|
+
},
|
|
185
|
+
"message": {
|
|
186
|
+
"type": "string"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"required": [
|
|
190
|
+
"fieldName",
|
|
191
|
+
"message"
|
|
192
|
+
]
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"validationContext": {
|
|
196
|
+
"type": "string"
|
|
197
|
+
},
|
|
198
|
+
"statusCode": {
|
|
199
|
+
"type": "number"
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
"required": [
|
|
203
|
+
"code",
|
|
204
|
+
"detail",
|
|
205
|
+
"requestId",
|
|
206
|
+
"name",
|
|
207
|
+
"statusCode"
|
|
208
|
+
]
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
},
|
|
19
216
|
"/api/v1/profiles/": {
|
|
20
217
|
"get": {
|
|
21
218
|
"operationId": "indexProfiles",
|
|
@@ -337,13 +534,23 @@
|
|
|
337
534
|
"type": "object",
|
|
338
535
|
"properties": {
|
|
339
536
|
"email": {
|
|
340
|
-
"
|
|
341
|
-
|
|
537
|
+
"allOf": [
|
|
538
|
+
{
|
|
539
|
+
"minLength": 1,
|
|
540
|
+
"type": "string"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"format": "email",
|
|
544
|
+
"type": "string"
|
|
545
|
+
}
|
|
546
|
+
]
|
|
342
547
|
},
|
|
343
548
|
"firstName": {
|
|
549
|
+
"minLength": 1,
|
|
344
550
|
"type": "string"
|
|
345
551
|
},
|
|
346
552
|
"lastName": {
|
|
553
|
+
"minLength": 1,
|
|
347
554
|
"type": "string"
|
|
348
555
|
},
|
|
349
556
|
"city": {
|
|
@@ -393,13 +600,23 @@
|
|
|
393
600
|
"type": "object",
|
|
394
601
|
"properties": {
|
|
395
602
|
"email": {
|
|
396
|
-
"
|
|
397
|
-
|
|
603
|
+
"allOf": [
|
|
604
|
+
{
|
|
605
|
+
"minLength": 1,
|
|
606
|
+
"type": "string"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"format": "email",
|
|
610
|
+
"type": "string"
|
|
611
|
+
}
|
|
612
|
+
]
|
|
398
613
|
},
|
|
399
614
|
"firstName": {
|
|
615
|
+
"minLength": 1,
|
|
400
616
|
"type": "string"
|
|
401
617
|
},
|
|
402
618
|
"lastName": {
|
|
619
|
+
"minLength": 1,
|
|
403
620
|
"type": "string"
|
|
404
621
|
},
|
|
405
622
|
"city": {
|
|
@@ -449,13 +666,23 @@
|
|
|
449
666
|
"type": "object",
|
|
450
667
|
"properties": {
|
|
451
668
|
"email": {
|
|
452
|
-
"
|
|
453
|
-
|
|
669
|
+
"allOf": [
|
|
670
|
+
{
|
|
671
|
+
"minLength": 1,
|
|
672
|
+
"type": "string"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"format": "email",
|
|
676
|
+
"type": "string"
|
|
677
|
+
}
|
|
678
|
+
]
|
|
454
679
|
},
|
|
455
680
|
"firstName": {
|
|
681
|
+
"minLength": 1,
|
|
456
682
|
"type": "string"
|
|
457
683
|
},
|
|
458
684
|
"lastName": {
|
|
685
|
+
"minLength": 1,
|
|
459
686
|
"type": "string"
|
|
460
687
|
},
|
|
461
688
|
"city": {
|
|
@@ -496,6 +723,23 @@
|
|
|
496
723
|
}
|
|
497
724
|
}
|
|
498
725
|
},
|
|
726
|
+
"parameters": [
|
|
727
|
+
{
|
|
728
|
+
"schema": {
|
|
729
|
+
"type": "string",
|
|
730
|
+
"enum": [
|
|
731
|
+
"true",
|
|
732
|
+
"false",
|
|
733
|
+
"0",
|
|
734
|
+
"1"
|
|
735
|
+
],
|
|
736
|
+
"default": "false"
|
|
737
|
+
},
|
|
738
|
+
"in": "query",
|
|
739
|
+
"name": "privateDetails",
|
|
740
|
+
"required": false
|
|
741
|
+
}
|
|
742
|
+
],
|
|
499
743
|
"responses": {
|
|
500
744
|
"200": {
|
|
501
745
|
"description": "Default Response",
|
|
@@ -507,13 +751,13 @@
|
|
|
507
751
|
"status": {
|
|
508
752
|
"type": "string"
|
|
509
753
|
},
|
|
510
|
-
"
|
|
754
|
+
"profileImportId": {
|
|
511
755
|
"type": "string"
|
|
512
756
|
}
|
|
513
757
|
},
|
|
514
758
|
"required": [
|
|
515
759
|
"status",
|
|
516
|
-
"
|
|
760
|
+
"profileImportId"
|
|
517
761
|
]
|
|
518
762
|
}
|
|
519
763
|
}
|
|
@@ -709,13 +953,23 @@
|
|
|
709
953
|
"type": "object",
|
|
710
954
|
"properties": {
|
|
711
955
|
"email": {
|
|
712
|
-
"
|
|
713
|
-
|
|
956
|
+
"allOf": [
|
|
957
|
+
{
|
|
958
|
+
"minLength": 1,
|
|
959
|
+
"type": "string"
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"format": "email",
|
|
963
|
+
"type": "string"
|
|
964
|
+
}
|
|
965
|
+
]
|
|
714
966
|
},
|
|
715
967
|
"firstName": {
|
|
968
|
+
"minLength": 1,
|
|
716
969
|
"type": "string"
|
|
717
970
|
},
|
|
718
971
|
"lastName": {
|
|
972
|
+
"minLength": 1,
|
|
719
973
|
"type": "string"
|
|
720
974
|
},
|
|
721
975
|
"city": {
|
|
@@ -1059,13 +1313,23 @@
|
|
|
1059
1313
|
"type": "object",
|
|
1060
1314
|
"properties": {
|
|
1061
1315
|
"email": {
|
|
1062
|
-
"
|
|
1063
|
-
|
|
1316
|
+
"allOf": [
|
|
1317
|
+
{
|
|
1318
|
+
"minLength": 1,
|
|
1319
|
+
"type": "string"
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"format": "email",
|
|
1323
|
+
"type": "string"
|
|
1324
|
+
}
|
|
1325
|
+
]
|
|
1064
1326
|
},
|
|
1065
1327
|
"firstName": {
|
|
1328
|
+
"minLength": 1,
|
|
1066
1329
|
"type": "string"
|
|
1067
1330
|
},
|
|
1068
1331
|
"lastName": {
|
|
1332
|
+
"minLength": 1,
|
|
1069
1333
|
"type": "string"
|
|
1070
1334
|
},
|
|
1071
1335
|
"city": {
|
|
@@ -1392,9 +1656,6 @@
|
|
|
1392
1656
|
"format": "uuid",
|
|
1393
1657
|
"type": "string"
|
|
1394
1658
|
},
|
|
1395
|
-
"jobId": {
|
|
1396
|
-
"type": "string"
|
|
1397
|
-
},
|
|
1398
1659
|
"organisationId": {
|
|
1399
1660
|
"type": "string"
|
|
1400
1661
|
},
|
|
@@ -1443,7 +1704,6 @@
|
|
|
1443
1704
|
},
|
|
1444
1705
|
"required": [
|
|
1445
1706
|
"id",
|
|
1446
|
-
"jobId",
|
|
1447
1707
|
"status",
|
|
1448
1708
|
"source",
|
|
1449
1709
|
"createdAt",
|
|
@@ -1691,13 +1951,23 @@
|
|
|
1691
1951
|
"type": "object",
|
|
1692
1952
|
"properties": {
|
|
1693
1953
|
"email": {
|
|
1694
|
-
"
|
|
1695
|
-
|
|
1954
|
+
"allOf": [
|
|
1955
|
+
{
|
|
1956
|
+
"minLength": 1,
|
|
1957
|
+
"type": "string"
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
"format": "email",
|
|
1961
|
+
"type": "string"
|
|
1962
|
+
}
|
|
1963
|
+
]
|
|
1696
1964
|
},
|
|
1697
1965
|
"firstName": {
|
|
1966
|
+
"minLength": 1,
|
|
1698
1967
|
"type": "string"
|
|
1699
1968
|
},
|
|
1700
1969
|
"lastName": {
|
|
1970
|
+
"minLength": 1,
|
|
1701
1971
|
"type": "string"
|
|
1702
1972
|
},
|
|
1703
1973
|
"city": {
|
|
@@ -1948,6 +2218,21 @@
|
|
|
1948
2218
|
"Profiles"
|
|
1949
2219
|
],
|
|
1950
2220
|
"parameters": [
|
|
2221
|
+
{
|
|
2222
|
+
"schema": {
|
|
2223
|
+
"type": "string",
|
|
2224
|
+
"enum": [
|
|
2225
|
+
"true",
|
|
2226
|
+
"false",
|
|
2227
|
+
"0",
|
|
2228
|
+
"1"
|
|
2229
|
+
],
|
|
2230
|
+
"default": "false"
|
|
2231
|
+
},
|
|
2232
|
+
"in": "query",
|
|
2233
|
+
"name": "privateDetails",
|
|
2234
|
+
"required": false
|
|
2235
|
+
},
|
|
1951
2236
|
{
|
|
1952
2237
|
"schema": {
|
|
1953
2238
|
"type": "string"
|
|
@@ -2013,13 +2298,23 @@
|
|
|
2013
2298
|
"type": "object",
|
|
2014
2299
|
"properties": {
|
|
2015
2300
|
"email": {
|
|
2016
|
-
"
|
|
2017
|
-
|
|
2301
|
+
"allOf": [
|
|
2302
|
+
{
|
|
2303
|
+
"minLength": 1,
|
|
2304
|
+
"type": "string"
|
|
2305
|
+
},
|
|
2306
|
+
{
|
|
2307
|
+
"format": "email",
|
|
2308
|
+
"type": "string"
|
|
2309
|
+
}
|
|
2310
|
+
]
|
|
2018
2311
|
},
|
|
2019
2312
|
"firstName": {
|
|
2313
|
+
"minLength": 1,
|
|
2020
2314
|
"type": "string"
|
|
2021
2315
|
},
|
|
2022
2316
|
"lastName": {
|
|
2317
|
+
"minLength": 1,
|
|
2023
2318
|
"type": "string"
|
|
2024
2319
|
},
|
|
2025
2320
|
"city": {
|
|
@@ -2387,13 +2682,23 @@
|
|
|
2387
2682
|
"type": "object",
|
|
2388
2683
|
"properties": {
|
|
2389
2684
|
"email": {
|
|
2390
|
-
"
|
|
2391
|
-
|
|
2685
|
+
"allOf": [
|
|
2686
|
+
{
|
|
2687
|
+
"minLength": 1,
|
|
2688
|
+
"type": "string"
|
|
2689
|
+
},
|
|
2690
|
+
{
|
|
2691
|
+
"format": "email",
|
|
2692
|
+
"type": "string"
|
|
2693
|
+
}
|
|
2694
|
+
]
|
|
2392
2695
|
},
|
|
2393
2696
|
"firstName": {
|
|
2697
|
+
"minLength": 1,
|
|
2394
2698
|
"type": "string"
|
|
2395
2699
|
},
|
|
2396
2700
|
"lastName": {
|
|
2701
|
+
"minLength": 1,
|
|
2397
2702
|
"type": "string"
|
|
2398
2703
|
},
|
|
2399
2704
|
"city": {
|
|
@@ -2761,13 +3066,23 @@
|
|
|
2761
3066
|
"type": "object",
|
|
2762
3067
|
"properties": {
|
|
2763
3068
|
"email": {
|
|
2764
|
-
"
|
|
2765
|
-
|
|
3069
|
+
"allOf": [
|
|
3070
|
+
{
|
|
3071
|
+
"minLength": 1,
|
|
3072
|
+
"type": "string"
|
|
3073
|
+
},
|
|
3074
|
+
{
|
|
3075
|
+
"format": "email",
|
|
3076
|
+
"type": "string"
|
|
3077
|
+
}
|
|
3078
|
+
]
|
|
2766
3079
|
},
|
|
2767
3080
|
"firstName": {
|
|
3081
|
+
"minLength": 1,
|
|
2768
3082
|
"type": "string"
|
|
2769
3083
|
},
|
|
2770
3084
|
"lastName": {
|
|
3085
|
+
"minLength": 1,
|
|
2771
3086
|
"type": "string"
|
|
2772
3087
|
},
|
|
2773
3088
|
"city": {
|
|
@@ -3052,126 +3367,6 @@
|
|
|
3052
3367
|
}
|
|
3053
3368
|
}
|
|
3054
3369
|
}
|
|
3055
|
-
},
|
|
3056
|
-
"4XX": {
|
|
3057
|
-
"description": "Default Response",
|
|
3058
|
-
"content": {
|
|
3059
|
-
"text/csv": {
|
|
3060
|
-
"schema": {
|
|
3061
|
-
"type": "object",
|
|
3062
|
-
"properties": {
|
|
3063
|
-
"code": {
|
|
3064
|
-
"description": "Code used to categorize the error",
|
|
3065
|
-
"type": "string"
|
|
3066
|
-
},
|
|
3067
|
-
"detail": {
|
|
3068
|
-
"description": "Description of the error",
|
|
3069
|
-
"type": "string"
|
|
3070
|
-
},
|
|
3071
|
-
"requestId": {
|
|
3072
|
-
"description": "Unique request id. This one will be used to troubleshoot the problems",
|
|
3073
|
-
"type": "string"
|
|
3074
|
-
},
|
|
3075
|
-
"name": {
|
|
3076
|
-
"description": "Name of the error type",
|
|
3077
|
-
"type": "string"
|
|
3078
|
-
},
|
|
3079
|
-
"validation": {
|
|
3080
|
-
"description": "List of the validation errors",
|
|
3081
|
-
"type": "array",
|
|
3082
|
-
"items": {
|
|
3083
|
-
"type": "object",
|
|
3084
|
-
"properties": {
|
|
3085
|
-
"fieldName": {
|
|
3086
|
-
"type": "string"
|
|
3087
|
-
},
|
|
3088
|
-
"message": {
|
|
3089
|
-
"type": "string"
|
|
3090
|
-
}
|
|
3091
|
-
},
|
|
3092
|
-
"required": [
|
|
3093
|
-
"fieldName",
|
|
3094
|
-
"message"
|
|
3095
|
-
]
|
|
3096
|
-
}
|
|
3097
|
-
},
|
|
3098
|
-
"validationContext": {
|
|
3099
|
-
"type": "string"
|
|
3100
|
-
},
|
|
3101
|
-
"statusCode": {
|
|
3102
|
-
"type": "number"
|
|
3103
|
-
}
|
|
3104
|
-
},
|
|
3105
|
-
"required": [
|
|
3106
|
-
"code",
|
|
3107
|
-
"detail",
|
|
3108
|
-
"requestId",
|
|
3109
|
-
"name",
|
|
3110
|
-
"statusCode"
|
|
3111
|
-
]
|
|
3112
|
-
}
|
|
3113
|
-
}
|
|
3114
|
-
}
|
|
3115
|
-
},
|
|
3116
|
-
"5XX": {
|
|
3117
|
-
"description": "Default Response",
|
|
3118
|
-
"content": {
|
|
3119
|
-
"text/csv": {
|
|
3120
|
-
"schema": {
|
|
3121
|
-
"type": "object",
|
|
3122
|
-
"properties": {
|
|
3123
|
-
"code": {
|
|
3124
|
-
"description": "Code used to categorize the error",
|
|
3125
|
-
"type": "string"
|
|
3126
|
-
},
|
|
3127
|
-
"detail": {
|
|
3128
|
-
"description": "Description of the error",
|
|
3129
|
-
"type": "string"
|
|
3130
|
-
},
|
|
3131
|
-
"requestId": {
|
|
3132
|
-
"description": "Unique request id. This one will be used to troubleshoot the problems",
|
|
3133
|
-
"type": "string"
|
|
3134
|
-
},
|
|
3135
|
-
"name": {
|
|
3136
|
-
"description": "Name of the error type",
|
|
3137
|
-
"type": "string"
|
|
3138
|
-
},
|
|
3139
|
-
"validation": {
|
|
3140
|
-
"description": "List of the validation errors",
|
|
3141
|
-
"type": "array",
|
|
3142
|
-
"items": {
|
|
3143
|
-
"type": "object",
|
|
3144
|
-
"properties": {
|
|
3145
|
-
"fieldName": {
|
|
3146
|
-
"type": "string"
|
|
3147
|
-
},
|
|
3148
|
-
"message": {
|
|
3149
|
-
"type": "string"
|
|
3150
|
-
}
|
|
3151
|
-
},
|
|
3152
|
-
"required": [
|
|
3153
|
-
"fieldName",
|
|
3154
|
-
"message"
|
|
3155
|
-
]
|
|
3156
|
-
}
|
|
3157
|
-
},
|
|
3158
|
-
"validationContext": {
|
|
3159
|
-
"type": "string"
|
|
3160
|
-
},
|
|
3161
|
-
"statusCode": {
|
|
3162
|
-
"type": "number"
|
|
3163
|
-
}
|
|
3164
|
-
},
|
|
3165
|
-
"required": [
|
|
3166
|
-
"code",
|
|
3167
|
-
"detail",
|
|
3168
|
-
"requestId",
|
|
3169
|
-
"name",
|
|
3170
|
-
"statusCode"
|
|
3171
|
-
]
|
|
3172
|
-
}
|
|
3173
|
-
}
|
|
3174
|
-
}
|
|
3175
3370
|
}
|
|
3176
3371
|
}
|
|
3177
3372
|
}
|
|
@@ -3318,7 +3513,7 @@
|
|
|
3318
3513
|
"customData": {
|
|
3319
3514
|
"type": "object",
|
|
3320
3515
|
"properties": {
|
|
3321
|
-
"
|
|
3516
|
+
"profileImportId": {
|
|
3322
3517
|
"anyOf": [
|
|
3323
3518
|
{
|
|
3324
3519
|
"type": "string"
|
|
@@ -3337,6 +3532,9 @@
|
|
|
3337
3532
|
"type": "null"
|
|
3338
3533
|
}
|
|
3339
3534
|
]
|
|
3535
|
+
},
|
|
3536
|
+
"insertPrivateDetails": {
|
|
3537
|
+
"type": "boolean"
|
|
3340
3538
|
}
|
|
3341
3539
|
}
|
|
3342
3540
|
},
|