@snokam/mcp-api 2.45.0 → 2.46.0
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/package.json +1 -1
- package/specs/production/recruitment.json +271 -1
- package/specs/production/sanity.json +154 -1
- package/specs/test/recruitment.json +271 -1
- package/specs/test/sanity.json +154 -1
package/package.json
CHANGED
|
@@ -249,6 +249,75 @@
|
|
|
249
249
|
]
|
|
250
250
|
}
|
|
251
251
|
},
|
|
252
|
+
"/v1.0/protected/candidates/{id}/onboard/{system}": {
|
|
253
|
+
"post": {
|
|
254
|
+
"tags": [
|
|
255
|
+
"Candidates"
|
|
256
|
+
],
|
|
257
|
+
"summary": "Trigger automated onboarding for a given system",
|
|
258
|
+
"description": "Dispatches to the right onboarding handler based on the system slug. Microsoft 365 is the primary target; other systems report 'not implemented' until their handler lands.",
|
|
259
|
+
"operationId": "OnboardCandidateSystem",
|
|
260
|
+
"parameters": [
|
|
261
|
+
{
|
|
262
|
+
"name": "id",
|
|
263
|
+
"in": "path",
|
|
264
|
+
"required": true,
|
|
265
|
+
"schema": {
|
|
266
|
+
"type": "string"
|
|
267
|
+
},
|
|
268
|
+
"x-ms-summary": "Candidate Sanity id"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"name": "system",
|
|
272
|
+
"in": "path",
|
|
273
|
+
"required": true,
|
|
274
|
+
"schema": {
|
|
275
|
+
"type": "string"
|
|
276
|
+
},
|
|
277
|
+
"x-ms-summary": "System slug (e.g. 'microsoft-365')"
|
|
278
|
+
}
|
|
279
|
+
],
|
|
280
|
+
"responses": {
|
|
281
|
+
"200": {
|
|
282
|
+
"description": "Uniform onboarding result with status + message",
|
|
283
|
+
"content": {
|
|
284
|
+
"application/json": {
|
|
285
|
+
"schema": {
|
|
286
|
+
"$ref": "#/components/schemas/onboardingResult"
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"x-ms-summary": "Success"
|
|
291
|
+
},
|
|
292
|
+
"400": {
|
|
293
|
+
"description": "Payload of Object",
|
|
294
|
+
"content": {
|
|
295
|
+
"application/json": {
|
|
296
|
+
"schema": {
|
|
297
|
+
"type": "object"
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"x-ms-summary": "Bad Request"
|
|
302
|
+
},
|
|
303
|
+
"401": {
|
|
304
|
+
"description": "No description",
|
|
305
|
+
"x-ms-summary": "Unauthorized"
|
|
306
|
+
},
|
|
307
|
+
"404": {
|
|
308
|
+
"description": "No description",
|
|
309
|
+
"x-ms-summary": "Not Found"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"security": [
|
|
313
|
+
{
|
|
314
|
+
"Implicit": [
|
|
315
|
+
"api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
|
|
316
|
+
]
|
|
317
|
+
}
|
|
318
|
+
]
|
|
319
|
+
}
|
|
320
|
+
},
|
|
252
321
|
"/v1.0/protected/candidates/{id}/reject": {
|
|
253
322
|
"post": {
|
|
254
323
|
"tags": [
|
|
@@ -919,6 +988,23 @@
|
|
|
919
988
|
}
|
|
920
989
|
}
|
|
921
990
|
},
|
|
991
|
+
"onboardingResult": {
|
|
992
|
+
"type": "object",
|
|
993
|
+
"properties": {
|
|
994
|
+
"status": {
|
|
995
|
+
"type": "string"
|
|
996
|
+
},
|
|
997
|
+
"message": {
|
|
998
|
+
"type": "string"
|
|
999
|
+
},
|
|
1000
|
+
"preferredEmail": {
|
|
1001
|
+
"type": "string"
|
|
1002
|
+
},
|
|
1003
|
+
"createdAccountId": {
|
|
1004
|
+
"type": "string"
|
|
1005
|
+
}
|
|
1006
|
+
}
|
|
1007
|
+
},
|
|
922
1008
|
"sanityAssetSourceData": {
|
|
923
1009
|
"type": "object",
|
|
924
1010
|
"properties": {
|
|
@@ -994,11 +1080,25 @@
|
|
|
994
1080
|
"OFFER",
|
|
995
1081
|
"ONBOARDING",
|
|
996
1082
|
"REJECTED",
|
|
997
|
-
"SIGNED"
|
|
1083
|
+
"SIGNED",
|
|
1084
|
+
"USER_CREATION_REVIEW"
|
|
998
1085
|
],
|
|
999
1086
|
"type": "string",
|
|
1000
1087
|
"default": "CREATED"
|
|
1001
1088
|
},
|
|
1089
|
+
"tShirtSize": {
|
|
1090
|
+
"enum": [
|
|
1091
|
+
"L",
|
|
1092
|
+
"M",
|
|
1093
|
+
"S",
|
|
1094
|
+
"XL",
|
|
1095
|
+
"XS",
|
|
1096
|
+
"XXL"
|
|
1097
|
+
],
|
|
1098
|
+
"type": "string",
|
|
1099
|
+
"default": "L",
|
|
1100
|
+
"nullable": true
|
|
1101
|
+
},
|
|
1002
1102
|
"track": {
|
|
1003
1103
|
"enum": [
|
|
1004
1104
|
"data_engineer",
|
|
@@ -1008,12 +1108,18 @@
|
|
|
1008
1108
|
"default": "data_engineer",
|
|
1009
1109
|
"nullable": true
|
|
1010
1110
|
},
|
|
1111
|
+
"address": {
|
|
1112
|
+
"$ref": "#/components/schemas/sanityCandidateAddress"
|
|
1113
|
+
},
|
|
1011
1114
|
"applicationLetter": {
|
|
1012
1115
|
"$ref": "#/components/schemas/sanityCandidateGrades"
|
|
1013
1116
|
},
|
|
1014
1117
|
"applicationOther": {
|
|
1015
1118
|
"type": "string"
|
|
1016
1119
|
},
|
|
1120
|
+
"bankAccount": {
|
|
1121
|
+
"type": "string"
|
|
1122
|
+
},
|
|
1017
1123
|
"buddy": {
|
|
1018
1124
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
1019
1125
|
},
|
|
@@ -1048,6 +1154,15 @@
|
|
|
1048
1154
|
"type": "number",
|
|
1049
1155
|
"format": "double"
|
|
1050
1156
|
},
|
|
1157
|
+
"preferredDisplayName": {
|
|
1158
|
+
"type": "string"
|
|
1159
|
+
},
|
|
1160
|
+
"preferredEmail": {
|
|
1161
|
+
"type": "string"
|
|
1162
|
+
},
|
|
1163
|
+
"profileImage": {
|
|
1164
|
+
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
|
|
1165
|
+
},
|
|
1051
1166
|
"recruiter": {
|
|
1052
1167
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
1053
1168
|
},
|
|
@@ -1086,6 +1201,20 @@
|
|
|
1086
1201
|
}
|
|
1087
1202
|
}
|
|
1088
1203
|
},
|
|
1204
|
+
"sanityCandidateAddress": {
|
|
1205
|
+
"type": "object",
|
|
1206
|
+
"properties": {
|
|
1207
|
+
"city": {
|
|
1208
|
+
"type": "string"
|
|
1209
|
+
},
|
|
1210
|
+
"postalCode": {
|
|
1211
|
+
"type": "string"
|
|
1212
|
+
},
|
|
1213
|
+
"street": {
|
|
1214
|
+
"type": "string"
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1089
1218
|
"sanityCandidateGrades": {
|
|
1090
1219
|
"type": "object",
|
|
1091
1220
|
"properties": {
|
|
@@ -1335,6 +1464,80 @@
|
|
|
1335
1464
|
}
|
|
1336
1465
|
}
|
|
1337
1466
|
},
|
|
1467
|
+
"sanityImageAssetReference": {
|
|
1468
|
+
"type": "object",
|
|
1469
|
+
"properties": {
|
|
1470
|
+
"sanityType": {
|
|
1471
|
+
"enum": [
|
|
1472
|
+
"reference"
|
|
1473
|
+
],
|
|
1474
|
+
"type": "string",
|
|
1475
|
+
"default": "reference"
|
|
1476
|
+
},
|
|
1477
|
+
"sanityRef": {
|
|
1478
|
+
"type": "string"
|
|
1479
|
+
},
|
|
1480
|
+
"sanityWeak": {
|
|
1481
|
+
"type": "boolean"
|
|
1482
|
+
}
|
|
1483
|
+
}
|
|
1484
|
+
},
|
|
1485
|
+
"sanityImageCrop": {
|
|
1486
|
+
"type": "object",
|
|
1487
|
+
"properties": {
|
|
1488
|
+
"sanityType": {
|
|
1489
|
+
"enum": [
|
|
1490
|
+
"sanity.imageCrop"
|
|
1491
|
+
],
|
|
1492
|
+
"type": "string",
|
|
1493
|
+
"default": "sanity.imageCrop"
|
|
1494
|
+
},
|
|
1495
|
+
"bottom": {
|
|
1496
|
+
"type": "number",
|
|
1497
|
+
"format": "double"
|
|
1498
|
+
},
|
|
1499
|
+
"left": {
|
|
1500
|
+
"type": "number",
|
|
1501
|
+
"format": "double"
|
|
1502
|
+
},
|
|
1503
|
+
"right": {
|
|
1504
|
+
"type": "number",
|
|
1505
|
+
"format": "double"
|
|
1506
|
+
},
|
|
1507
|
+
"top": {
|
|
1508
|
+
"type": "number",
|
|
1509
|
+
"format": "double"
|
|
1510
|
+
}
|
|
1511
|
+
}
|
|
1512
|
+
},
|
|
1513
|
+
"sanityImageHotspot": {
|
|
1514
|
+
"type": "object",
|
|
1515
|
+
"properties": {
|
|
1516
|
+
"sanityType": {
|
|
1517
|
+
"enum": [
|
|
1518
|
+
"sanity.imageHotspot"
|
|
1519
|
+
],
|
|
1520
|
+
"type": "string",
|
|
1521
|
+
"default": "sanity.imageHotspot"
|
|
1522
|
+
},
|
|
1523
|
+
"height": {
|
|
1524
|
+
"type": "number",
|
|
1525
|
+
"format": "double"
|
|
1526
|
+
},
|
|
1527
|
+
"width": {
|
|
1528
|
+
"type": "number",
|
|
1529
|
+
"format": "double"
|
|
1530
|
+
},
|
|
1531
|
+
"x": {
|
|
1532
|
+
"type": "number",
|
|
1533
|
+
"format": "double"
|
|
1534
|
+
},
|
|
1535
|
+
"y": {
|
|
1536
|
+
"type": "number",
|
|
1537
|
+
"format": "double"
|
|
1538
|
+
}
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1338
1541
|
"sanityJobPosition": {
|
|
1339
1542
|
"type": "object",
|
|
1340
1543
|
"properties": {
|
|
@@ -1444,6 +1647,7 @@
|
|
|
1444
1647
|
"OFFER",
|
|
1445
1648
|
"SIGNED",
|
|
1446
1649
|
"ONBOARDING",
|
|
1650
|
+
"USER_CREATION_REVIEW",
|
|
1447
1651
|
"OFFBOARDING",
|
|
1448
1652
|
"REJECTED"
|
|
1449
1653
|
],
|
|
@@ -1451,6 +1655,19 @@
|
|
|
1451
1655
|
"default": "CREATED",
|
|
1452
1656
|
"nullable": true
|
|
1453
1657
|
},
|
|
1658
|
+
"tShirtSize": {
|
|
1659
|
+
"enum": [
|
|
1660
|
+
"XS",
|
|
1661
|
+
"S",
|
|
1662
|
+
"M",
|
|
1663
|
+
"L",
|
|
1664
|
+
"XL",
|
|
1665
|
+
"XXL"
|
|
1666
|
+
],
|
|
1667
|
+
"type": "string",
|
|
1668
|
+
"default": "XS",
|
|
1669
|
+
"nullable": true
|
|
1670
|
+
},
|
|
1454
1671
|
"track": {
|
|
1455
1672
|
"enum": [
|
|
1456
1673
|
"developer",
|
|
@@ -1460,12 +1677,18 @@
|
|
|
1460
1677
|
"default": "developer",
|
|
1461
1678
|
"nullable": true
|
|
1462
1679
|
},
|
|
1680
|
+
"address": {
|
|
1681
|
+
"$ref": "#/components/schemas/sanityPatchCandidateAddress"
|
|
1682
|
+
},
|
|
1463
1683
|
"applicationLetter": {
|
|
1464
1684
|
"$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
|
|
1465
1685
|
},
|
|
1466
1686
|
"applicationOther": {
|
|
1467
1687
|
"type": "string"
|
|
1468
1688
|
},
|
|
1689
|
+
"bankAccount": {
|
|
1690
|
+
"type": "string"
|
|
1691
|
+
},
|
|
1469
1692
|
"buddy": {
|
|
1470
1693
|
"$ref": "#/components/schemas/employeeReference"
|
|
1471
1694
|
},
|
|
@@ -1502,6 +1725,15 @@
|
|
|
1502
1725
|
"format": "double",
|
|
1503
1726
|
"nullable": true
|
|
1504
1727
|
},
|
|
1728
|
+
"preferredDisplayName": {
|
|
1729
|
+
"type": "string"
|
|
1730
|
+
},
|
|
1731
|
+
"preferredEmail": {
|
|
1732
|
+
"type": "string"
|
|
1733
|
+
},
|
|
1734
|
+
"profileImage": {
|
|
1735
|
+
"$ref": "#/components/schemas/sanityPatchPageMetaImage"
|
|
1736
|
+
},
|
|
1505
1737
|
"recruiter": {
|
|
1506
1738
|
"$ref": "#/components/schemas/employeeReference"
|
|
1507
1739
|
},
|
|
@@ -1534,6 +1766,20 @@
|
|
|
1534
1766
|
}
|
|
1535
1767
|
}
|
|
1536
1768
|
},
|
|
1769
|
+
"sanityPatchCandidateAddress": {
|
|
1770
|
+
"type": "object",
|
|
1771
|
+
"properties": {
|
|
1772
|
+
"city": {
|
|
1773
|
+
"type": "string"
|
|
1774
|
+
},
|
|
1775
|
+
"postalCode": {
|
|
1776
|
+
"type": "string"
|
|
1777
|
+
},
|
|
1778
|
+
"street": {
|
|
1779
|
+
"type": "string"
|
|
1780
|
+
}
|
|
1781
|
+
}
|
|
1782
|
+
},
|
|
1537
1783
|
"sanityPatchCandidateApplicationLetter": {
|
|
1538
1784
|
"type": "object",
|
|
1539
1785
|
"properties": {
|
|
@@ -1573,6 +1819,30 @@
|
|
|
1573
1819
|
}
|
|
1574
1820
|
}
|
|
1575
1821
|
},
|
|
1822
|
+
"sanityPatchPageMetaImage": {
|
|
1823
|
+
"type": "object",
|
|
1824
|
+
"properties": {
|
|
1825
|
+
"sanityType": {
|
|
1826
|
+
"enum": [
|
|
1827
|
+
"image"
|
|
1828
|
+
],
|
|
1829
|
+
"type": "string",
|
|
1830
|
+
"default": "image"
|
|
1831
|
+
},
|
|
1832
|
+
"asset": {
|
|
1833
|
+
"$ref": "#/components/schemas/sanityImageAssetReference"
|
|
1834
|
+
},
|
|
1835
|
+
"crop": {
|
|
1836
|
+
"$ref": "#/components/schemas/sanityImageCrop"
|
|
1837
|
+
},
|
|
1838
|
+
"hotspot": {
|
|
1839
|
+
"$ref": "#/components/schemas/sanityImageHotspot"
|
|
1840
|
+
},
|
|
1841
|
+
"media": {
|
|
1842
|
+
"type": "object"
|
|
1843
|
+
}
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1576
1846
|
"sanityPatchSystem": {
|
|
1577
1847
|
"type": "object",
|
|
1578
1848
|
"properties": {
|
|
@@ -29794,6 +29794,90 @@
|
|
|
29794
29794
|
},
|
|
29795
29795
|
"SanityCandidate": {
|
|
29796
29796
|
"properties": {
|
|
29797
|
+
"bankAccount": {
|
|
29798
|
+
"type": "string"
|
|
29799
|
+
},
|
|
29800
|
+
"tShirtSize": {
|
|
29801
|
+
"type": "string",
|
|
29802
|
+
"enum": [
|
|
29803
|
+
"L",
|
|
29804
|
+
"M",
|
|
29805
|
+
"S",
|
|
29806
|
+
"XL",
|
|
29807
|
+
"XS",
|
|
29808
|
+
"XXL"
|
|
29809
|
+
]
|
|
29810
|
+
},
|
|
29811
|
+
"address": {
|
|
29812
|
+
"properties": {
|
|
29813
|
+
"city": {
|
|
29814
|
+
"type": "string"
|
|
29815
|
+
},
|
|
29816
|
+
"postalCode": {
|
|
29817
|
+
"type": "string"
|
|
29818
|
+
},
|
|
29819
|
+
"street": {
|
|
29820
|
+
"type": "string"
|
|
29821
|
+
}
|
|
29822
|
+
},
|
|
29823
|
+
"type": "object"
|
|
29824
|
+
},
|
|
29825
|
+
"preferredDisplayName": {
|
|
29826
|
+
"type": "string"
|
|
29827
|
+
},
|
|
29828
|
+
"preferredEmail": {
|
|
29829
|
+
"type": "string"
|
|
29830
|
+
},
|
|
29831
|
+
"profileImage": {
|
|
29832
|
+
"properties": {
|
|
29833
|
+
"asset": {
|
|
29834
|
+
"properties": {
|
|
29835
|
+
"mimeType": {
|
|
29836
|
+
"type": "string"
|
|
29837
|
+
},
|
|
29838
|
+
"originalFilename": {
|
|
29839
|
+
"type": "string",
|
|
29840
|
+
"nullable": true
|
|
29841
|
+
},
|
|
29842
|
+
"url": {
|
|
29843
|
+
"type": "string"
|
|
29844
|
+
},
|
|
29845
|
+
"sanityType": {
|
|
29846
|
+
"type": "string",
|
|
29847
|
+
"enum": [
|
|
29848
|
+
"sanity.imageAsset"
|
|
29849
|
+
],
|
|
29850
|
+
"nullable": false
|
|
29851
|
+
},
|
|
29852
|
+
"sanityId": {
|
|
29853
|
+
"type": "string"
|
|
29854
|
+
}
|
|
29855
|
+
},
|
|
29856
|
+
"required": [
|
|
29857
|
+
"mimeType",
|
|
29858
|
+
"originalFilename",
|
|
29859
|
+
"url",
|
|
29860
|
+
"sanityType",
|
|
29861
|
+
"sanityId"
|
|
29862
|
+
],
|
|
29863
|
+
"type": "object",
|
|
29864
|
+
"nullable": true
|
|
29865
|
+
},
|
|
29866
|
+
"sanityType": {
|
|
29867
|
+
"type": "string",
|
|
29868
|
+
"enum": [
|
|
29869
|
+
"image"
|
|
29870
|
+
],
|
|
29871
|
+
"nullable": false
|
|
29872
|
+
}
|
|
29873
|
+
},
|
|
29874
|
+
"required": [
|
|
29875
|
+
"asset",
|
|
29876
|
+
"sanityType"
|
|
29877
|
+
],
|
|
29878
|
+
"type": "object",
|
|
29879
|
+
"nullable": true
|
|
29880
|
+
},
|
|
29797
29881
|
"shortUrl": {
|
|
29798
29882
|
"type": "string"
|
|
29799
29883
|
},
|
|
@@ -30642,7 +30726,8 @@
|
|
|
30642
30726
|
"OFFER",
|
|
30643
30727
|
"ONBOARDING",
|
|
30644
30728
|
"REJECTED",
|
|
30645
|
-
"SIGNED"
|
|
30729
|
+
"SIGNED",
|
|
30730
|
+
"USER_CREATION_REVIEW"
|
|
30646
30731
|
]
|
|
30647
30732
|
},
|
|
30648
30733
|
"candidate": {
|
|
@@ -30669,6 +30754,7 @@
|
|
|
30669
30754
|
}
|
|
30670
30755
|
},
|
|
30671
30756
|
"required": [
|
|
30757
|
+
"profileImage",
|
|
30672
30758
|
"systemsActive",
|
|
30673
30759
|
"buddy",
|
|
30674
30760
|
"recruiter",
|
|
@@ -30756,12 +30842,28 @@
|
|
|
30756
30842
|
"OFFER",
|
|
30757
30843
|
"SIGNED",
|
|
30758
30844
|
"ONBOARDING",
|
|
30845
|
+
"USER_CREATION_REVIEW",
|
|
30759
30846
|
"OFFBOARDING",
|
|
30760
30847
|
"REJECTED",
|
|
30761
30848
|
null
|
|
30762
30849
|
],
|
|
30763
30850
|
"nullable": true
|
|
30764
30851
|
},
|
|
30852
|
+
"address": {
|
|
30853
|
+
"properties": {
|
|
30854
|
+
"city": {
|
|
30855
|
+
"type": "string"
|
|
30856
|
+
},
|
|
30857
|
+
"postalCode": {
|
|
30858
|
+
"type": "string"
|
|
30859
|
+
},
|
|
30860
|
+
"street": {
|
|
30861
|
+
"type": "string"
|
|
30862
|
+
}
|
|
30863
|
+
},
|
|
30864
|
+
"type": "object",
|
|
30865
|
+
"nullable": true
|
|
30866
|
+
},
|
|
30765
30867
|
"telephone": {
|
|
30766
30868
|
"type": "string",
|
|
30767
30869
|
"nullable": true
|
|
@@ -30972,6 +31074,57 @@
|
|
|
30972
31074
|
"shortUrl": {
|
|
30973
31075
|
"type": "string",
|
|
30974
31076
|
"nullable": true
|
|
31077
|
+
},
|
|
31078
|
+
"profileImage": {
|
|
31079
|
+
"properties": {
|
|
31080
|
+
"sanityType": {
|
|
31081
|
+
"type": "string",
|
|
31082
|
+
"enum": [
|
|
31083
|
+
"image"
|
|
31084
|
+
],
|
|
31085
|
+
"nullable": false
|
|
31086
|
+
},
|
|
31087
|
+
"crop": {
|
|
31088
|
+
"$ref": "#/components/schemas/SanityImageCrop"
|
|
31089
|
+
},
|
|
31090
|
+
"hotspot": {
|
|
31091
|
+
"$ref": "#/components/schemas/SanityImageHotspot"
|
|
31092
|
+
},
|
|
31093
|
+
"media": {},
|
|
31094
|
+
"asset": {
|
|
31095
|
+
"$ref": "#/components/schemas/SanityImageAssetReference"
|
|
31096
|
+
}
|
|
31097
|
+
},
|
|
31098
|
+
"required": [
|
|
31099
|
+
"sanityType"
|
|
31100
|
+
],
|
|
31101
|
+
"type": "object",
|
|
31102
|
+
"nullable": true
|
|
31103
|
+
},
|
|
31104
|
+
"preferredEmail": {
|
|
31105
|
+
"type": "string",
|
|
31106
|
+
"nullable": true
|
|
31107
|
+
},
|
|
31108
|
+
"preferredDisplayName": {
|
|
31109
|
+
"type": "string",
|
|
31110
|
+
"nullable": true
|
|
31111
|
+
},
|
|
31112
|
+
"tShirtSize": {
|
|
31113
|
+
"type": "string",
|
|
31114
|
+
"enum": [
|
|
31115
|
+
"XS",
|
|
31116
|
+
"S",
|
|
31117
|
+
"M",
|
|
31118
|
+
"L",
|
|
31119
|
+
"XL",
|
|
31120
|
+
"XXL",
|
|
31121
|
+
null
|
|
31122
|
+
],
|
|
31123
|
+
"nullable": true
|
|
31124
|
+
},
|
|
31125
|
+
"bankAccount": {
|
|
31126
|
+
"type": "string",
|
|
31127
|
+
"nullable": true
|
|
30975
31128
|
}
|
|
30976
31129
|
},
|
|
30977
31130
|
"type": "object",
|
|
@@ -249,6 +249,75 @@
|
|
|
249
249
|
]
|
|
250
250
|
}
|
|
251
251
|
},
|
|
252
|
+
"/v1.0/protected/candidates/{id}/onboard/{system}": {
|
|
253
|
+
"post": {
|
|
254
|
+
"tags": [
|
|
255
|
+
"Candidates"
|
|
256
|
+
],
|
|
257
|
+
"summary": "Trigger automated onboarding for a given system",
|
|
258
|
+
"description": "Dispatches to the right onboarding handler based on the system slug. Microsoft 365 is the primary target; other systems report 'not implemented' until their handler lands.",
|
|
259
|
+
"operationId": "OnboardCandidateSystem",
|
|
260
|
+
"parameters": [
|
|
261
|
+
{
|
|
262
|
+
"name": "id",
|
|
263
|
+
"in": "path",
|
|
264
|
+
"required": true,
|
|
265
|
+
"schema": {
|
|
266
|
+
"type": "string"
|
|
267
|
+
},
|
|
268
|
+
"x-ms-summary": "Candidate Sanity id"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"name": "system",
|
|
272
|
+
"in": "path",
|
|
273
|
+
"required": true,
|
|
274
|
+
"schema": {
|
|
275
|
+
"type": "string"
|
|
276
|
+
},
|
|
277
|
+
"x-ms-summary": "System slug (e.g. 'microsoft-365')"
|
|
278
|
+
}
|
|
279
|
+
],
|
|
280
|
+
"responses": {
|
|
281
|
+
"200": {
|
|
282
|
+
"description": "Uniform onboarding result with status + message",
|
|
283
|
+
"content": {
|
|
284
|
+
"application/json": {
|
|
285
|
+
"schema": {
|
|
286
|
+
"$ref": "#/components/schemas/onboardingResult"
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"x-ms-summary": "Success"
|
|
291
|
+
},
|
|
292
|
+
"400": {
|
|
293
|
+
"description": "Payload of Object",
|
|
294
|
+
"content": {
|
|
295
|
+
"application/json": {
|
|
296
|
+
"schema": {
|
|
297
|
+
"type": "object"
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"x-ms-summary": "Bad Request"
|
|
302
|
+
},
|
|
303
|
+
"401": {
|
|
304
|
+
"description": "No description",
|
|
305
|
+
"x-ms-summary": "Unauthorized"
|
|
306
|
+
},
|
|
307
|
+
"404": {
|
|
308
|
+
"description": "No description",
|
|
309
|
+
"x-ms-summary": "Not Found"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"security": [
|
|
313
|
+
{
|
|
314
|
+
"Implicit": [
|
|
315
|
+
"api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
|
|
316
|
+
]
|
|
317
|
+
}
|
|
318
|
+
]
|
|
319
|
+
}
|
|
320
|
+
},
|
|
252
321
|
"/v1.0/protected/candidates/{id}/reject": {
|
|
253
322
|
"post": {
|
|
254
323
|
"tags": [
|
|
@@ -919,6 +988,23 @@
|
|
|
919
988
|
}
|
|
920
989
|
}
|
|
921
990
|
},
|
|
991
|
+
"onboardingResult": {
|
|
992
|
+
"type": "object",
|
|
993
|
+
"properties": {
|
|
994
|
+
"status": {
|
|
995
|
+
"type": "string"
|
|
996
|
+
},
|
|
997
|
+
"message": {
|
|
998
|
+
"type": "string"
|
|
999
|
+
},
|
|
1000
|
+
"preferredEmail": {
|
|
1001
|
+
"type": "string"
|
|
1002
|
+
},
|
|
1003
|
+
"createdAccountId": {
|
|
1004
|
+
"type": "string"
|
|
1005
|
+
}
|
|
1006
|
+
}
|
|
1007
|
+
},
|
|
922
1008
|
"sanityAssetSourceData": {
|
|
923
1009
|
"type": "object",
|
|
924
1010
|
"properties": {
|
|
@@ -994,11 +1080,25 @@
|
|
|
994
1080
|
"OFFER",
|
|
995
1081
|
"ONBOARDING",
|
|
996
1082
|
"REJECTED",
|
|
997
|
-
"SIGNED"
|
|
1083
|
+
"SIGNED",
|
|
1084
|
+
"USER_CREATION_REVIEW"
|
|
998
1085
|
],
|
|
999
1086
|
"type": "string",
|
|
1000
1087
|
"default": "CREATED"
|
|
1001
1088
|
},
|
|
1089
|
+
"tShirtSize": {
|
|
1090
|
+
"enum": [
|
|
1091
|
+
"L",
|
|
1092
|
+
"M",
|
|
1093
|
+
"S",
|
|
1094
|
+
"XL",
|
|
1095
|
+
"XS",
|
|
1096
|
+
"XXL"
|
|
1097
|
+
],
|
|
1098
|
+
"type": "string",
|
|
1099
|
+
"default": "L",
|
|
1100
|
+
"nullable": true
|
|
1101
|
+
},
|
|
1002
1102
|
"track": {
|
|
1003
1103
|
"enum": [
|
|
1004
1104
|
"data_engineer",
|
|
@@ -1008,12 +1108,18 @@
|
|
|
1008
1108
|
"default": "data_engineer",
|
|
1009
1109
|
"nullable": true
|
|
1010
1110
|
},
|
|
1111
|
+
"address": {
|
|
1112
|
+
"$ref": "#/components/schemas/sanityCandidateAddress"
|
|
1113
|
+
},
|
|
1011
1114
|
"applicationLetter": {
|
|
1012
1115
|
"$ref": "#/components/schemas/sanityCandidateGrades"
|
|
1013
1116
|
},
|
|
1014
1117
|
"applicationOther": {
|
|
1015
1118
|
"type": "string"
|
|
1016
1119
|
},
|
|
1120
|
+
"bankAccount": {
|
|
1121
|
+
"type": "string"
|
|
1122
|
+
},
|
|
1017
1123
|
"buddy": {
|
|
1018
1124
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
1019
1125
|
},
|
|
@@ -1048,6 +1154,15 @@
|
|
|
1048
1154
|
"type": "number",
|
|
1049
1155
|
"format": "double"
|
|
1050
1156
|
},
|
|
1157
|
+
"preferredDisplayName": {
|
|
1158
|
+
"type": "string"
|
|
1159
|
+
},
|
|
1160
|
+
"preferredEmail": {
|
|
1161
|
+
"type": "string"
|
|
1162
|
+
},
|
|
1163
|
+
"profileImage": {
|
|
1164
|
+
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
|
|
1165
|
+
},
|
|
1051
1166
|
"recruiter": {
|
|
1052
1167
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
1053
1168
|
},
|
|
@@ -1086,6 +1201,20 @@
|
|
|
1086
1201
|
}
|
|
1087
1202
|
}
|
|
1088
1203
|
},
|
|
1204
|
+
"sanityCandidateAddress": {
|
|
1205
|
+
"type": "object",
|
|
1206
|
+
"properties": {
|
|
1207
|
+
"city": {
|
|
1208
|
+
"type": "string"
|
|
1209
|
+
},
|
|
1210
|
+
"postalCode": {
|
|
1211
|
+
"type": "string"
|
|
1212
|
+
},
|
|
1213
|
+
"street": {
|
|
1214
|
+
"type": "string"
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1089
1218
|
"sanityCandidateGrades": {
|
|
1090
1219
|
"type": "object",
|
|
1091
1220
|
"properties": {
|
|
@@ -1335,6 +1464,80 @@
|
|
|
1335
1464
|
}
|
|
1336
1465
|
}
|
|
1337
1466
|
},
|
|
1467
|
+
"sanityImageAssetReference": {
|
|
1468
|
+
"type": "object",
|
|
1469
|
+
"properties": {
|
|
1470
|
+
"sanityType": {
|
|
1471
|
+
"enum": [
|
|
1472
|
+
"reference"
|
|
1473
|
+
],
|
|
1474
|
+
"type": "string",
|
|
1475
|
+
"default": "reference"
|
|
1476
|
+
},
|
|
1477
|
+
"sanityRef": {
|
|
1478
|
+
"type": "string"
|
|
1479
|
+
},
|
|
1480
|
+
"sanityWeak": {
|
|
1481
|
+
"type": "boolean"
|
|
1482
|
+
}
|
|
1483
|
+
}
|
|
1484
|
+
},
|
|
1485
|
+
"sanityImageCrop": {
|
|
1486
|
+
"type": "object",
|
|
1487
|
+
"properties": {
|
|
1488
|
+
"sanityType": {
|
|
1489
|
+
"enum": [
|
|
1490
|
+
"sanity.imageCrop"
|
|
1491
|
+
],
|
|
1492
|
+
"type": "string",
|
|
1493
|
+
"default": "sanity.imageCrop"
|
|
1494
|
+
},
|
|
1495
|
+
"bottom": {
|
|
1496
|
+
"type": "number",
|
|
1497
|
+
"format": "double"
|
|
1498
|
+
},
|
|
1499
|
+
"left": {
|
|
1500
|
+
"type": "number",
|
|
1501
|
+
"format": "double"
|
|
1502
|
+
},
|
|
1503
|
+
"right": {
|
|
1504
|
+
"type": "number",
|
|
1505
|
+
"format": "double"
|
|
1506
|
+
},
|
|
1507
|
+
"top": {
|
|
1508
|
+
"type": "number",
|
|
1509
|
+
"format": "double"
|
|
1510
|
+
}
|
|
1511
|
+
}
|
|
1512
|
+
},
|
|
1513
|
+
"sanityImageHotspot": {
|
|
1514
|
+
"type": "object",
|
|
1515
|
+
"properties": {
|
|
1516
|
+
"sanityType": {
|
|
1517
|
+
"enum": [
|
|
1518
|
+
"sanity.imageHotspot"
|
|
1519
|
+
],
|
|
1520
|
+
"type": "string",
|
|
1521
|
+
"default": "sanity.imageHotspot"
|
|
1522
|
+
},
|
|
1523
|
+
"height": {
|
|
1524
|
+
"type": "number",
|
|
1525
|
+
"format": "double"
|
|
1526
|
+
},
|
|
1527
|
+
"width": {
|
|
1528
|
+
"type": "number",
|
|
1529
|
+
"format": "double"
|
|
1530
|
+
},
|
|
1531
|
+
"x": {
|
|
1532
|
+
"type": "number",
|
|
1533
|
+
"format": "double"
|
|
1534
|
+
},
|
|
1535
|
+
"y": {
|
|
1536
|
+
"type": "number",
|
|
1537
|
+
"format": "double"
|
|
1538
|
+
}
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1338
1541
|
"sanityJobPosition": {
|
|
1339
1542
|
"type": "object",
|
|
1340
1543
|
"properties": {
|
|
@@ -1444,6 +1647,7 @@
|
|
|
1444
1647
|
"OFFER",
|
|
1445
1648
|
"SIGNED",
|
|
1446
1649
|
"ONBOARDING",
|
|
1650
|
+
"USER_CREATION_REVIEW",
|
|
1447
1651
|
"OFFBOARDING",
|
|
1448
1652
|
"REJECTED"
|
|
1449
1653
|
],
|
|
@@ -1451,6 +1655,19 @@
|
|
|
1451
1655
|
"default": "CREATED",
|
|
1452
1656
|
"nullable": true
|
|
1453
1657
|
},
|
|
1658
|
+
"tShirtSize": {
|
|
1659
|
+
"enum": [
|
|
1660
|
+
"XS",
|
|
1661
|
+
"S",
|
|
1662
|
+
"M",
|
|
1663
|
+
"L",
|
|
1664
|
+
"XL",
|
|
1665
|
+
"XXL"
|
|
1666
|
+
],
|
|
1667
|
+
"type": "string",
|
|
1668
|
+
"default": "XS",
|
|
1669
|
+
"nullable": true
|
|
1670
|
+
},
|
|
1454
1671
|
"track": {
|
|
1455
1672
|
"enum": [
|
|
1456
1673
|
"developer",
|
|
@@ -1460,12 +1677,18 @@
|
|
|
1460
1677
|
"default": "developer",
|
|
1461
1678
|
"nullable": true
|
|
1462
1679
|
},
|
|
1680
|
+
"address": {
|
|
1681
|
+
"$ref": "#/components/schemas/sanityPatchCandidateAddress"
|
|
1682
|
+
},
|
|
1463
1683
|
"applicationLetter": {
|
|
1464
1684
|
"$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
|
|
1465
1685
|
},
|
|
1466
1686
|
"applicationOther": {
|
|
1467
1687
|
"type": "string"
|
|
1468
1688
|
},
|
|
1689
|
+
"bankAccount": {
|
|
1690
|
+
"type": "string"
|
|
1691
|
+
},
|
|
1469
1692
|
"buddy": {
|
|
1470
1693
|
"$ref": "#/components/schemas/employeeReference"
|
|
1471
1694
|
},
|
|
@@ -1502,6 +1725,15 @@
|
|
|
1502
1725
|
"format": "double",
|
|
1503
1726
|
"nullable": true
|
|
1504
1727
|
},
|
|
1728
|
+
"preferredDisplayName": {
|
|
1729
|
+
"type": "string"
|
|
1730
|
+
},
|
|
1731
|
+
"preferredEmail": {
|
|
1732
|
+
"type": "string"
|
|
1733
|
+
},
|
|
1734
|
+
"profileImage": {
|
|
1735
|
+
"$ref": "#/components/schemas/sanityPatchPageMetaImage"
|
|
1736
|
+
},
|
|
1505
1737
|
"recruiter": {
|
|
1506
1738
|
"$ref": "#/components/schemas/employeeReference"
|
|
1507
1739
|
},
|
|
@@ -1534,6 +1766,20 @@
|
|
|
1534
1766
|
}
|
|
1535
1767
|
}
|
|
1536
1768
|
},
|
|
1769
|
+
"sanityPatchCandidateAddress": {
|
|
1770
|
+
"type": "object",
|
|
1771
|
+
"properties": {
|
|
1772
|
+
"city": {
|
|
1773
|
+
"type": "string"
|
|
1774
|
+
},
|
|
1775
|
+
"postalCode": {
|
|
1776
|
+
"type": "string"
|
|
1777
|
+
},
|
|
1778
|
+
"street": {
|
|
1779
|
+
"type": "string"
|
|
1780
|
+
}
|
|
1781
|
+
}
|
|
1782
|
+
},
|
|
1537
1783
|
"sanityPatchCandidateApplicationLetter": {
|
|
1538
1784
|
"type": "object",
|
|
1539
1785
|
"properties": {
|
|
@@ -1573,6 +1819,30 @@
|
|
|
1573
1819
|
}
|
|
1574
1820
|
}
|
|
1575
1821
|
},
|
|
1822
|
+
"sanityPatchPageMetaImage": {
|
|
1823
|
+
"type": "object",
|
|
1824
|
+
"properties": {
|
|
1825
|
+
"sanityType": {
|
|
1826
|
+
"enum": [
|
|
1827
|
+
"image"
|
|
1828
|
+
],
|
|
1829
|
+
"type": "string",
|
|
1830
|
+
"default": "image"
|
|
1831
|
+
},
|
|
1832
|
+
"asset": {
|
|
1833
|
+
"$ref": "#/components/schemas/sanityImageAssetReference"
|
|
1834
|
+
},
|
|
1835
|
+
"crop": {
|
|
1836
|
+
"$ref": "#/components/schemas/sanityImageCrop"
|
|
1837
|
+
},
|
|
1838
|
+
"hotspot": {
|
|
1839
|
+
"$ref": "#/components/schemas/sanityImageHotspot"
|
|
1840
|
+
},
|
|
1841
|
+
"media": {
|
|
1842
|
+
"type": "object"
|
|
1843
|
+
}
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1576
1846
|
"sanityPatchSystem": {
|
|
1577
1847
|
"type": "object",
|
|
1578
1848
|
"properties": {
|
package/specs/test/sanity.json
CHANGED
|
@@ -29794,6 +29794,90 @@
|
|
|
29794
29794
|
},
|
|
29795
29795
|
"SanityCandidate": {
|
|
29796
29796
|
"properties": {
|
|
29797
|
+
"bankAccount": {
|
|
29798
|
+
"type": "string"
|
|
29799
|
+
},
|
|
29800
|
+
"tShirtSize": {
|
|
29801
|
+
"type": "string",
|
|
29802
|
+
"enum": [
|
|
29803
|
+
"L",
|
|
29804
|
+
"M",
|
|
29805
|
+
"S",
|
|
29806
|
+
"XL",
|
|
29807
|
+
"XS",
|
|
29808
|
+
"XXL"
|
|
29809
|
+
]
|
|
29810
|
+
},
|
|
29811
|
+
"address": {
|
|
29812
|
+
"properties": {
|
|
29813
|
+
"city": {
|
|
29814
|
+
"type": "string"
|
|
29815
|
+
},
|
|
29816
|
+
"postalCode": {
|
|
29817
|
+
"type": "string"
|
|
29818
|
+
},
|
|
29819
|
+
"street": {
|
|
29820
|
+
"type": "string"
|
|
29821
|
+
}
|
|
29822
|
+
},
|
|
29823
|
+
"type": "object"
|
|
29824
|
+
},
|
|
29825
|
+
"preferredDisplayName": {
|
|
29826
|
+
"type": "string"
|
|
29827
|
+
},
|
|
29828
|
+
"preferredEmail": {
|
|
29829
|
+
"type": "string"
|
|
29830
|
+
},
|
|
29831
|
+
"profileImage": {
|
|
29832
|
+
"properties": {
|
|
29833
|
+
"asset": {
|
|
29834
|
+
"properties": {
|
|
29835
|
+
"mimeType": {
|
|
29836
|
+
"type": "string"
|
|
29837
|
+
},
|
|
29838
|
+
"originalFilename": {
|
|
29839
|
+
"type": "string",
|
|
29840
|
+
"nullable": true
|
|
29841
|
+
},
|
|
29842
|
+
"url": {
|
|
29843
|
+
"type": "string"
|
|
29844
|
+
},
|
|
29845
|
+
"sanityType": {
|
|
29846
|
+
"type": "string",
|
|
29847
|
+
"enum": [
|
|
29848
|
+
"sanity.imageAsset"
|
|
29849
|
+
],
|
|
29850
|
+
"nullable": false
|
|
29851
|
+
},
|
|
29852
|
+
"sanityId": {
|
|
29853
|
+
"type": "string"
|
|
29854
|
+
}
|
|
29855
|
+
},
|
|
29856
|
+
"required": [
|
|
29857
|
+
"mimeType",
|
|
29858
|
+
"originalFilename",
|
|
29859
|
+
"url",
|
|
29860
|
+
"sanityType",
|
|
29861
|
+
"sanityId"
|
|
29862
|
+
],
|
|
29863
|
+
"type": "object",
|
|
29864
|
+
"nullable": true
|
|
29865
|
+
},
|
|
29866
|
+
"sanityType": {
|
|
29867
|
+
"type": "string",
|
|
29868
|
+
"enum": [
|
|
29869
|
+
"image"
|
|
29870
|
+
],
|
|
29871
|
+
"nullable": false
|
|
29872
|
+
}
|
|
29873
|
+
},
|
|
29874
|
+
"required": [
|
|
29875
|
+
"asset",
|
|
29876
|
+
"sanityType"
|
|
29877
|
+
],
|
|
29878
|
+
"type": "object",
|
|
29879
|
+
"nullable": true
|
|
29880
|
+
},
|
|
29797
29881
|
"shortUrl": {
|
|
29798
29882
|
"type": "string"
|
|
29799
29883
|
},
|
|
@@ -30642,7 +30726,8 @@
|
|
|
30642
30726
|
"OFFER",
|
|
30643
30727
|
"ONBOARDING",
|
|
30644
30728
|
"REJECTED",
|
|
30645
|
-
"SIGNED"
|
|
30729
|
+
"SIGNED",
|
|
30730
|
+
"USER_CREATION_REVIEW"
|
|
30646
30731
|
]
|
|
30647
30732
|
},
|
|
30648
30733
|
"candidate": {
|
|
@@ -30669,6 +30754,7 @@
|
|
|
30669
30754
|
}
|
|
30670
30755
|
},
|
|
30671
30756
|
"required": [
|
|
30757
|
+
"profileImage",
|
|
30672
30758
|
"systemsActive",
|
|
30673
30759
|
"buddy",
|
|
30674
30760
|
"recruiter",
|
|
@@ -30756,12 +30842,28 @@
|
|
|
30756
30842
|
"OFFER",
|
|
30757
30843
|
"SIGNED",
|
|
30758
30844
|
"ONBOARDING",
|
|
30845
|
+
"USER_CREATION_REVIEW",
|
|
30759
30846
|
"OFFBOARDING",
|
|
30760
30847
|
"REJECTED",
|
|
30761
30848
|
null
|
|
30762
30849
|
],
|
|
30763
30850
|
"nullable": true
|
|
30764
30851
|
},
|
|
30852
|
+
"address": {
|
|
30853
|
+
"properties": {
|
|
30854
|
+
"city": {
|
|
30855
|
+
"type": "string"
|
|
30856
|
+
},
|
|
30857
|
+
"postalCode": {
|
|
30858
|
+
"type": "string"
|
|
30859
|
+
},
|
|
30860
|
+
"street": {
|
|
30861
|
+
"type": "string"
|
|
30862
|
+
}
|
|
30863
|
+
},
|
|
30864
|
+
"type": "object",
|
|
30865
|
+
"nullable": true
|
|
30866
|
+
},
|
|
30765
30867
|
"telephone": {
|
|
30766
30868
|
"type": "string",
|
|
30767
30869
|
"nullable": true
|
|
@@ -30972,6 +31074,57 @@
|
|
|
30972
31074
|
"shortUrl": {
|
|
30973
31075
|
"type": "string",
|
|
30974
31076
|
"nullable": true
|
|
31077
|
+
},
|
|
31078
|
+
"profileImage": {
|
|
31079
|
+
"properties": {
|
|
31080
|
+
"sanityType": {
|
|
31081
|
+
"type": "string",
|
|
31082
|
+
"enum": [
|
|
31083
|
+
"image"
|
|
31084
|
+
],
|
|
31085
|
+
"nullable": false
|
|
31086
|
+
},
|
|
31087
|
+
"crop": {
|
|
31088
|
+
"$ref": "#/components/schemas/SanityImageCrop"
|
|
31089
|
+
},
|
|
31090
|
+
"hotspot": {
|
|
31091
|
+
"$ref": "#/components/schemas/SanityImageHotspot"
|
|
31092
|
+
},
|
|
31093
|
+
"media": {},
|
|
31094
|
+
"asset": {
|
|
31095
|
+
"$ref": "#/components/schemas/SanityImageAssetReference"
|
|
31096
|
+
}
|
|
31097
|
+
},
|
|
31098
|
+
"required": [
|
|
31099
|
+
"sanityType"
|
|
31100
|
+
],
|
|
31101
|
+
"type": "object",
|
|
31102
|
+
"nullable": true
|
|
31103
|
+
},
|
|
31104
|
+
"preferredEmail": {
|
|
31105
|
+
"type": "string",
|
|
31106
|
+
"nullable": true
|
|
31107
|
+
},
|
|
31108
|
+
"preferredDisplayName": {
|
|
31109
|
+
"type": "string",
|
|
31110
|
+
"nullable": true
|
|
31111
|
+
},
|
|
31112
|
+
"tShirtSize": {
|
|
31113
|
+
"type": "string",
|
|
31114
|
+
"enum": [
|
|
31115
|
+
"XS",
|
|
31116
|
+
"S",
|
|
31117
|
+
"M",
|
|
31118
|
+
"L",
|
|
31119
|
+
"XL",
|
|
31120
|
+
"XXL",
|
|
31121
|
+
null
|
|
31122
|
+
],
|
|
31123
|
+
"nullable": true
|
|
31124
|
+
},
|
|
31125
|
+
"bankAccount": {
|
|
31126
|
+
"type": "string",
|
|
31127
|
+
"nullable": true
|
|
30975
31128
|
}
|
|
30976
31129
|
},
|
|
30977
31130
|
"type": "object",
|