@snokam/mcp-api 2.60.1 → 2.61.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.
@@ -658,7 +658,7 @@
658
658
  "content": {
659
659
  "application/json": {
660
660
  "schema": {
661
- "$ref": "#/components/schemas/patchEmployee"
661
+ "$ref": "#/components/schemas/sanityPatchEmployee"
662
662
  }
663
663
  }
664
664
  },
@@ -715,7 +715,7 @@
715
715
  "content": {
716
716
  "application/json": {
717
717
  "schema": {
718
- "$ref": "#/components/schemas/patchEmployee"
718
+ "$ref": "#/components/schemas/sanityPatchEmployee"
719
719
  }
720
720
  }
721
721
  },
@@ -809,7 +809,7 @@
809
809
  "content": {
810
810
  "application/json": {
811
811
  "schema": {
812
- "$ref": "#/components/schemas/gadgetBudget"
812
+ "$ref": "#/components/schemas/sanityGadgetBudget"
813
813
  }
814
814
  }
815
815
  },
@@ -931,13 +931,11 @@
931
931
  "addCvToProposalRequest": {
932
932
  "type": "object",
933
933
  "properties": {
934
- "user_id": {
935
- "type": "string",
936
- "nullable": true
934
+ "userId": {
935
+ "type": "string"
937
936
  },
938
- "cv_id": {
939
- "type": "string",
940
- "nullable": true
937
+ "cvId": {
938
+ "type": "string"
941
939
  }
942
940
  }
943
941
  },
@@ -964,71 +962,18 @@
964
962
  }
965
963
  }
966
964
  },
967
- "componentBlocksInnerOneOfChildrenInner": {
968
- "type": "object",
969
- "properties": {
970
- "sanityType": {
971
- "enum": [
972
- 1
973
- ],
974
- "type": "integer",
975
- "format": "int32",
976
- "default": 1
977
- },
978
- "sanityKey": {
979
- "type": "string"
980
- },
981
- "marksOption": {
982
- "$ref": "#/components/schemas/option_list`1"
983
- },
984
- "marks": {
985
- "type": "array",
986
- "items": {
987
- "type": "string"
988
- }
989
- },
990
- "textOption": {
991
- "$ref": "#/components/schemas/option_string"
992
- },
993
- "text": {
994
- "type": "string"
995
- }
996
- }
997
- },
998
- "componentBlocksInnerOneOfMarkDefsInner": {
999
- "type": "object",
1000
- "properties": {
1001
- "sanityType": {
1002
- "enum": [
1003
- 1
1004
- ],
1005
- "type": "integer",
1006
- "format": "int32",
1007
- "default": 1
1008
- },
1009
- "sanityKey": {
1010
- "type": "string"
1011
- },
1012
- "hrefOption": {
1013
- "$ref": "#/components/schemas/option_string"
1014
- },
1015
- "href": {
1016
- "type": "string"
1017
- }
1018
- }
1019
- },
1020
965
  "componentGalleryMediaInner": {
1021
966
  "type": "object",
1022
967
  "properties": {
1023
- "componentGalleryMediaInnerOneOf": {
1024
- "$ref": "#/components/schemas/componentGalleryMediaInnerOneOf"
968
+ "componentGalleryMediaInnerImage": {
969
+ "$ref": "#/components/schemas/componentGalleryMediaInnerImage"
1025
970
  },
1026
971
  "componentGalleryMediaInnerOneOf1": {
1027
972
  "$ref": "#/components/schemas/componentGalleryMediaInnerOneOf1"
1028
973
  }
1029
974
  }
1030
975
  },
1031
- "componentGalleryMediaInnerOneOf": {
976
+ "componentGalleryMediaInnerImage": {
1032
977
  "type": "object",
1033
978
  "properties": {
1034
979
  "sanityType": {
@@ -1094,34 +1039,28 @@
1094
1039
  "type": "object",
1095
1040
  "properties": {
1096
1041
  "userId": {
1097
- "type": "string",
1098
- "nullable": true
1042
+ "type": "string"
1099
1043
  },
1100
1044
  "email": {
1101
- "type": "string",
1102
- "nullable": true
1045
+ "type": "string"
1103
1046
  },
1104
1047
  "name": {
1105
- "type": "string",
1106
- "nullable": true
1048
+ "type": "string"
1107
1049
  },
1108
1050
  "defaultCvId": {
1109
- "type": "string",
1110
- "nullable": true
1051
+ "type": "string"
1111
1052
  },
1112
1053
  "technologies": {
1113
1054
  "type": "array",
1114
1055
  "items": {
1115
1056
  "type": "string"
1116
- },
1117
- "nullable": true
1057
+ }
1118
1058
  },
1119
1059
  "roles": {
1120
1060
  "type": "array",
1121
1061
  "items": {
1122
1062
  "type": "string"
1123
- },
1124
- "nullable": true
1063
+ }
1125
1064
  },
1126
1065
  "yearsExperience": {
1127
1066
  "type": "integer",
@@ -1129,47 +1068,40 @@
1129
1068
  "nullable": true
1130
1069
  },
1131
1070
  "about": {
1132
- "type": "string",
1133
- "nullable": true
1071
+ "type": "string"
1134
1072
  },
1135
1073
  "cvText": {
1136
- "type": "string",
1137
- "nullable": true
1074
+ "type": "string"
1138
1075
  },
1139
1076
  "projectExperiences": {
1140
1077
  "type": "array",
1141
1078
  "items": {
1142
1079
  "$ref": "#/components/schemas/consultantProjectExperience"
1143
- },
1144
- "nullable": true
1080
+ }
1145
1081
  },
1146
1082
  "workExperiences": {
1147
1083
  "type": "array",
1148
1084
  "items": {
1149
1085
  "$ref": "#/components/schemas/consultantWorkExperience"
1150
- },
1151
- "nullable": true
1086
+ }
1152
1087
  },
1153
1088
  "educations": {
1154
1089
  "type": "array",
1155
1090
  "items": {
1156
1091
  "$ref": "#/components/schemas/consultantEducation"
1157
- },
1158
- "nullable": true
1092
+ }
1159
1093
  },
1160
1094
  "cvRoles": {
1161
1095
  "type": "array",
1162
1096
  "items": {
1163
1097
  "$ref": "#/components/schemas/consultantCvRole"
1164
- },
1165
- "nullable": true
1098
+ }
1166
1099
  },
1167
1100
  "keyQualifications": {
1168
1101
  "type": "array",
1169
1102
  "items": {
1170
1103
  "$ref": "#/components/schemas/consultantKeyQualification"
1171
- },
1172
- "nullable": true
1104
+ }
1173
1105
  }
1174
1106
  }
1175
1107
  },
@@ -1177,19 +1109,16 @@
1177
1109
  "type": "object",
1178
1110
  "properties": {
1179
1111
  "name": {
1180
- "type": "string",
1181
- "nullable": true
1112
+ "type": "string"
1182
1113
  },
1183
1114
  "longDescription": {
1184
- "type": "string",
1185
- "nullable": true
1115
+ "type": "string"
1186
1116
  },
1187
1117
  "tags": {
1188
1118
  "type": "array",
1189
1119
  "items": {
1190
1120
  "type": "string"
1191
- },
1192
- "nullable": true
1121
+ }
1193
1122
  }
1194
1123
  }
1195
1124
  },
@@ -1197,16 +1126,13 @@
1197
1126
  "type": "object",
1198
1127
  "properties": {
1199
1128
  "school": {
1200
- "type": "string",
1201
- "nullable": true
1129
+ "type": "string"
1202
1130
  },
1203
1131
  "degree": {
1204
- "type": "string",
1205
- "nullable": true
1132
+ "type": "string"
1206
1133
  },
1207
1134
  "description": {
1208
- "type": "string",
1209
- "nullable": true
1135
+ "type": "string"
1210
1136
  },
1211
1137
  "yearFrom": {
1212
1138
  "type": "integer",
@@ -1224,19 +1150,16 @@
1224
1150
  "type": "object",
1225
1151
  "properties": {
1226
1152
  "label": {
1227
- "type": "string",
1228
- "nullable": true
1153
+ "type": "string"
1229
1154
  },
1230
1155
  "description": {
1231
- "type": "string",
1232
- "nullable": true
1156
+ "type": "string"
1233
1157
  },
1234
1158
  "tags": {
1235
1159
  "type": "array",
1236
1160
  "items": {
1237
1161
  "type": "string"
1238
- },
1239
- "nullable": true
1162
+ }
1240
1163
  }
1241
1164
  }
1242
1165
  },
@@ -1244,20 +1167,16 @@
1244
1167
  "type": "object",
1245
1168
  "properties": {
1246
1169
  "customer": {
1247
- "type": "string",
1248
- "nullable": true
1170
+ "type": "string"
1249
1171
  },
1250
1172
  "description": {
1251
- "type": "string",
1252
- "nullable": true
1173
+ "type": "string"
1253
1174
  },
1254
1175
  "longDescription": {
1255
- "type": "string",
1256
- "nullable": true
1176
+ "type": "string"
1257
1177
  },
1258
1178
  "industry": {
1259
- "type": "string",
1260
- "nullable": true
1179
+ "type": "string"
1261
1180
  },
1262
1181
  "yearFrom": {
1263
1182
  "type": "integer",
@@ -1280,19 +1199,16 @@
1280
1199
  "nullable": true
1281
1200
  },
1282
1201
  "roleTitle": {
1283
- "type": "string",
1284
- "nullable": true
1202
+ "type": "string"
1285
1203
  },
1286
1204
  "roleDescription": {
1287
- "type": "string",
1288
- "nullable": true
1205
+ "type": "string"
1289
1206
  },
1290
1207
  "technologies": {
1291
1208
  "type": "array",
1292
1209
  "items": {
1293
1210
  "type": "string"
1294
- },
1295
- "nullable": true
1211
+ }
1296
1212
  }
1297
1213
  }
1298
1214
  },
@@ -1300,16 +1216,13 @@
1300
1216
  "type": "object",
1301
1217
  "properties": {
1302
1218
  "employer": {
1303
- "type": "string",
1304
- "nullable": true
1219
+ "type": "string"
1305
1220
  },
1306
1221
  "title": {
1307
- "type": "string",
1308
- "nullable": true
1222
+ "type": "string"
1309
1223
  },
1310
1224
  "description": {
1311
- "type": "string",
1312
- "nullable": true
1225
+ "type": "string"
1313
1226
  },
1314
1227
  "yearFrom": {
1315
1228
  "type": "integer",
@@ -1337,16 +1250,13 @@
1337
1250
  "type": "object",
1338
1251
  "properties": {
1339
1252
  "name": {
1340
- "type": "string",
1341
- "nullable": true
1253
+ "type": "string"
1342
1254
  },
1343
- "owner_id": {
1344
- "type": "string",
1345
- "nullable": true
1255
+ "ownerId": {
1256
+ "type": "string"
1346
1257
  },
1347
1258
  "status": {
1348
- "type": "string",
1349
- "nullable": true
1259
+ "type": "string"
1350
1260
  }
1351
1261
  }
1352
1262
  },
@@ -1385,43 +1295,36 @@
1385
1295
  "type": "object",
1386
1296
  "properties": {
1387
1297
  "id": {
1388
- "type": "string",
1389
- "nullable": true
1298
+ "type": "string"
1390
1299
  },
1391
1300
  "name": {
1392
- "type": "string",
1393
- "nullable": true
1301
+ "type": "string"
1394
1302
  },
1395
- "api_owner_id": {
1396
- "type": "string",
1397
- "nullable": true
1303
+ "apiOwnerId": {
1304
+ "type": "string"
1398
1305
  },
1399
- "api_owner_name": {
1400
- "type": "string",
1401
- "nullable": true
1306
+ "apiOwnerName": {
1307
+ "type": "string"
1402
1308
  },
1403
- "owner_id": {
1404
- "type": "string",
1405
- "nullable": true
1309
+ "ownerId": {
1310
+ "type": "string"
1406
1311
  },
1407
- "owner_name": {
1408
- "type": "string",
1409
- "nullable": true
1312
+ "ownerName": {
1313
+ "type": "string"
1410
1314
  },
1411
1315
  "status": {
1412
- "type": "string",
1413
- "nullable": true
1316
+ "type": "string"
1414
1317
  },
1415
1318
  "archived": {
1416
1319
  "type": "boolean",
1417
1320
  "nullable": true
1418
1321
  },
1419
- "created_at": {
1322
+ "createdAt": {
1420
1323
  "type": "string",
1421
1324
  "format": "date-time",
1422
1325
  "nullable": true
1423
1326
  },
1424
- "updated_at": {
1327
+ "updatedAt": {
1425
1328
  "type": "string",
1426
1329
  "format": "date-time",
1427
1330
  "nullable": true
@@ -1432,79 +1335,38 @@
1432
1335
  "type": "object",
1433
1336
  "properties": {
1434
1337
  "id": {
1435
- "type": "string",
1436
- "nullable": true
1338
+ "type": "string"
1437
1339
  },
1438
- "user_id": {
1439
- "type": "string",
1440
- "nullable": true
1340
+ "userId": {
1341
+ "type": "string"
1441
1342
  },
1442
- "proposal_id": {
1443
- "type": "string",
1444
- "nullable": true
1343
+ "proposalId": {
1344
+ "type": "string"
1445
1345
  },
1446
1346
  "name": {
1447
- "type": "string",
1448
- "nullable": true
1347
+ "type": "string"
1449
1348
  },
1450
1349
  "email": {
1451
- "type": "string",
1452
- "nullable": true
1350
+ "type": "string"
1453
1351
  },
1454
1352
  "title": {
1455
- "type": "string",
1456
- "nullable": true
1353
+ "type": "string"
1457
1354
  },
1458
1355
  "status": {
1459
- "type": "string",
1460
- "nullable": true
1356
+ "type": "string"
1461
1357
  },
1462
- "created_at": {
1358
+ "createdAt": {
1463
1359
  "type": "string",
1464
1360
  "format": "date-time",
1465
1361
  "nullable": true
1466
1362
  },
1467
- "updated_at": {
1363
+ "updatedAt": {
1468
1364
  "type": "string",
1469
1365
  "format": "date-time",
1470
1366
  "nullable": true
1471
1367
  }
1472
1368
  }
1473
1369
  },
1474
- "gadgetBudget": {
1475
- "type": "object",
1476
- "properties": {
1477
- "sanityType": {
1478
- "enum": [
1479
- 1
1480
- ],
1481
- "type": "integer",
1482
- "format": "int32",
1483
- "default": 1
1484
- },
1485
- "employee": {
1486
- "$ref": "#/components/schemas/sanityOrderEmployee"
1487
- },
1488
- "sanityCreatedAt": {
1489
- "type": "string"
1490
- },
1491
- "sanityId": {
1492
- "type": "string"
1493
- },
1494
- "sanityRev": {
1495
- "type": "string"
1496
- },
1497
- "sanityUpdatedAt": {
1498
- "type": "string"
1499
- },
1500
- "yearlyBudgets": {
1501
- "type": "array",
1502
- "items": {
1503
- "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInner"
1504
- }
1505
- }
1506
- }
1507
- },
1508
1370
  "geopoint": {
1509
1371
  "type": "object",
1510
1372
  "properties": {
@@ -1788,11 +1650,12 @@
1788
1650
  }
1789
1651
  }
1790
1652
  },
1791
- "patchEmployee": {
1653
+ "protectedEmployee": {
1792
1654
  "type": "object",
1793
1655
  "properties": {
1794
- "genderOption": {
1795
- "$ref": "#/components/schemas/option_nullable`1"
1656
+ "started": {
1657
+ "type": "boolean",
1658
+ "nullable": true
1796
1659
  },
1797
1660
  "gender": {
1798
1661
  "enum": [
@@ -1802,8 +1665,15 @@
1802
1665
  ],
1803
1666
  "type": "integer",
1804
1667
  "format": "int32",
1805
- "default": 1,
1806
- "nullable": true
1668
+ "default": 1
1669
+ },
1670
+ "sanityType": {
1671
+ "enum": [
1672
+ 1
1673
+ ],
1674
+ "type": "integer",
1675
+ "format": "int32",
1676
+ "default": 1
1807
1677
  },
1808
1678
  "maritalStatusOption": {
1809
1679
  "$ref": "#/components/schemas/option_nullable`1"
@@ -1819,17 +1689,47 @@
1819
1689
  "default": 1,
1820
1690
  "nullable": true
1821
1691
  },
1822
- "sanityTypeOption": {
1823
- "$ref": "#/components/schemas/option_nullable`1"
1692
+ "active": {
1693
+ "type": "boolean"
1824
1694
  },
1825
- "sanityType": {
1826
- "enum": [
1827
- 1
1828
- ],
1829
- "type": "integer",
1830
- "format": "int32",
1831
- "default": 1,
1832
- "nullable": true
1695
+ "birthDate": {
1696
+ "type": "string"
1697
+ },
1698
+ "blurredImage": {
1699
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1700
+ },
1701
+ "boardMember": {
1702
+ "type": "boolean"
1703
+ },
1704
+ "email": {
1705
+ "type": "string"
1706
+ },
1707
+ "image": {
1708
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1709
+ },
1710
+ "name": {
1711
+ "type": "string"
1712
+ },
1713
+ "sanityCreatedAt": {
1714
+ "type": "string"
1715
+ },
1716
+ "sanityId": {
1717
+ "type": "string"
1718
+ },
1719
+ "sanityRev": {
1720
+ "type": "string"
1721
+ },
1722
+ "sanityUpdatedAt": {
1723
+ "type": "string"
1724
+ },
1725
+ "slug": {
1726
+ "$ref": "#/components/schemas/slug"
1727
+ },
1728
+ "startDate": {
1729
+ "type": "string"
1730
+ },
1731
+ "telephone": {
1732
+ "type": "string"
1833
1733
  },
1834
1734
  "aboutOption": {
1835
1735
  "$ref": "#/components/schemas/option_string"
@@ -1837,13 +1737,6 @@
1837
1737
  "about": {
1838
1738
  "type": "string"
1839
1739
  },
1840
- "activeOption": {
1841
- "$ref": "#/components/schemas/option_nullable`1"
1842
- },
1843
- "active": {
1844
- "type": "boolean",
1845
- "nullable": true
1846
- },
1847
1740
  "addressOption": {
1848
1741
  "$ref": "#/components/schemas/option_string"
1849
1742
  },
@@ -1859,32 +1752,10 @@
1859
1752
  "type": "string"
1860
1753
  }
1861
1754
  },
1862
- "birthDateOption": {
1863
- "$ref": "#/components/schemas/option_string"
1864
- },
1865
- "birthDate": {
1866
- "type": "string"
1867
- },
1868
- "blurredImageOption": {
1869
- "$ref": "#/components/schemas/option_sanityPatchPageMetaImage"
1870
- },
1871
- "blurredImage": {
1872
- "$ref": "#/components/schemas/sanityPatchPageMetaImage"
1873
- },
1874
- "boardMemberOption": {
1875
- "$ref": "#/components/schemas/option_nullable`1"
1876
- },
1877
- "boardMember": {
1878
- "type": "boolean",
1879
- "nullable": true
1880
- },
1881
- "cliftonStrengthsOption": {
1882
- "$ref": "#/components/schemas/option_list`1"
1883
- },
1884
1755
  "cliftonStrengths": {
1885
1756
  "type": "array",
1886
1757
  "items": {
1887
- "$ref": "#/components/schemas/sanityCreateEmployeeCliftonStrengthsInner"
1758
+ "$ref": "#/components/schemas/sanityEmployeeCliftonStrengthsInner"
1888
1759
  }
1889
1760
  },
1890
1761
  "coinbaseAccountEmailOption": {
@@ -1893,11 +1764,8 @@
1893
1764
  "coinbaseAccountEmail": {
1894
1765
  "type": "string"
1895
1766
  },
1896
- "commissionTierOption": {
1897
- "$ref": "#/components/schemas/option_commissionTierReference"
1898
- },
1899
1767
  "commissionTier": {
1900
- "$ref": "#/components/schemas/commissionTierReference"
1768
+ "$ref": "#/components/schemas/sanityEmployeeCommissionTier"
1901
1769
  },
1902
1770
  "educationOption": {
1903
1771
  "$ref": "#/components/schemas/option_string"
@@ -1905,19 +1773,10 @@
1905
1773
  "education": {
1906
1774
  "type": "string"
1907
1775
  },
1908
- "emailOption": {
1909
- "$ref": "#/components/schemas/option_string"
1910
- },
1911
- "email": {
1912
- "type": "string"
1913
- },
1914
- "equipmentOption": {
1915
- "$ref": "#/components/schemas/option_list`1"
1916
- },
1917
1776
  "equipment": {
1918
1777
  "type": "array",
1919
1778
  "items": {
1920
- "$ref": "#/components/schemas/pageEquipmentInner"
1779
+ "$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
1921
1780
  }
1922
1781
  },
1923
1782
  "graduationYearOption": {
@@ -1928,21 +1787,12 @@
1928
1787
  "format": "double",
1929
1788
  "nullable": true
1930
1789
  },
1931
- "groupsOption": {
1932
- "$ref": "#/components/schemas/option_list`1"
1933
- },
1934
1790
  "groups": {
1935
1791
  "type": "array",
1936
1792
  "items": {
1937
- "$ref": "#/components/schemas/sanityCreateEmployeeGroupsInner"
1793
+ "$ref": "#/components/schemas/sanityEmployeeGroupsInner"
1938
1794
  }
1939
1795
  },
1940
- "imageOption": {
1941
- "$ref": "#/components/schemas/option_sanityPatchPageMetaImage"
1942
- },
1943
- "image": {
1944
- "$ref": "#/components/schemas/sanityPatchPageMetaImage"
1945
- },
1946
1796
  "innovativeSalaryOption": {
1947
1797
  "$ref": "#/components/schemas/option_nullable`1"
1948
1798
  },
@@ -1972,30 +1822,15 @@
1972
1822
  "type": "boolean",
1973
1823
  "nullable": true
1974
1824
  },
1975
- "managerOption": {
1976
- "$ref": "#/components/schemas/option_employeeReference"
1977
- },
1978
1825
  "manager": {
1979
- "$ref": "#/components/schemas/employeeReference"
1980
- },
1981
- "mediaOption": {
1982
- "$ref": "#/components/schemas/option_list`1"
1826
+ "$ref": "#/components/schemas/sanityEmployeeManager"
1983
1827
  },
1984
1828
  "media": {
1985
1829
  "type": "array",
1986
1830
  "items": {
1987
- "$ref": "#/components/schemas/componentGalleryMediaInner"
1831
+ "$ref": "#/components/schemas/sanityEmployeeMediaInner"
1988
1832
  }
1989
1833
  },
1990
- "nameOption": {
1991
- "$ref": "#/components/schemas/option_string"
1992
- },
1993
- "name": {
1994
- "type": "string"
1995
- },
1996
- "nextOfKinOption": {
1997
- "$ref": "#/components/schemas/option_list`1"
1998
- },
1999
1834
  "nextOfKin": {
2000
1835
  "type": "array",
2001
1836
  "items": {
@@ -2022,338 +1857,87 @@
2022
1857
  "position": {
2023
1858
  "type": "string"
2024
1859
  },
2025
- "slugOption": {
2026
- "$ref": "#/components/schemas/option_slug"
2027
- },
2028
- "slug": {
2029
- "$ref": "#/components/schemas/slug"
2030
- },
2031
- "startDateOption": {
2032
- "$ref": "#/components/schemas/option_string"
2033
- },
2034
- "startDate": {
2035
- "type": "string"
2036
- },
2037
- "tagsOption": {
2038
- "$ref": "#/components/schemas/option_list`1"
2039
- },
2040
1860
  "tags": {
2041
1861
  "type": "array",
2042
1862
  "items": {
2043
- "$ref": "#/components/schemas/sanityCreateEmployeeTagsInner"
1863
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
2044
1864
  }
2045
1865
  },
2046
- "technologiesOption": {
2047
- "$ref": "#/components/schemas/option_list`1"
2048
- },
2049
1866
  "technologies": {
2050
1867
  "type": "array",
2051
1868
  "items": {
2052
- "$ref": "#/components/schemas/sanityCreateEmployeeTechnologiesInner"
2053
- }
2054
- },
2055
- "telephoneOption": {
2056
- "$ref": "#/components/schemas/option_string"
2057
- },
2058
- "telephone": {
2059
- "type": "string"
2060
- },
2061
- "additionalProperties": {
2062
- "type": "object",
2063
- "additionalProperties": {
2064
- "$ref": "#/components/schemas/jsonElement"
1869
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInner"
2065
1870
  }
2066
1871
  }
2067
1872
  }
2068
1873
  },
2069
- "protectedEmployee": {
1874
+ "publicEmployee": {
2070
1875
  "type": "object",
2071
1876
  "properties": {
2072
- "started": {
2073
- "type": "boolean",
2074
- "nullable": true
2075
- },
2076
- "gender": {
2077
- "enum": [
2078
- 1,
2079
- 2,
2080
- 3
2081
- ],
2082
- "type": "integer",
2083
- "format": "int32",
2084
- "default": 1
1877
+ "sanityId": {
1878
+ "type": "string"
2085
1879
  },
2086
1880
  "sanityType": {
2087
- "enum": [
2088
- 1
2089
- ],
2090
- "type": "integer",
2091
- "format": "int32",
2092
- "default": 1
2093
- },
2094
- "maritalStatusOption": {
2095
- "$ref": "#/components/schemas/option_nullable`1"
1881
+ "type": "string"
2096
1882
  },
2097
- "maritalStatus": {
2098
- "enum": [
2099
- 1,
2100
- 2,
2101
- 3
2102
- ],
2103
- "type": "integer",
2104
- "format": "int32",
2105
- "default": 1,
1883
+ "active": {
1884
+ "type": "boolean",
2106
1885
  "nullable": true
2107
1886
  },
2108
- "active": {
2109
- "type": "boolean"
1887
+ "image": {
1888
+ "$ref": "#/components/schemas/sanityImage"
2110
1889
  },
2111
- "birthDate": {
2112
- "type": "string"
1890
+ "tags": {
1891
+ "type": "array",
1892
+ "items": {
1893
+ "$ref": "#/components/schemas/tag"
1894
+ }
2113
1895
  },
2114
- "blurredImage": {
2115
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1896
+ "technologies": {
1897
+ "type": "array",
1898
+ "items": {
1899
+ "$ref": "#/components/schemas/technology"
1900
+ }
2116
1901
  },
2117
- "boardMember": {
1902
+ "started": {
2118
1903
  "type": "boolean"
2119
1904
  },
2120
- "email": {
2121
- "type": "string"
2122
- },
2123
- "image": {
2124
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1905
+ "media": {
1906
+ "type": "array",
1907
+ "items": {
1908
+ "$ref": "#/components/schemas/sanityEmployeeMediaInner"
1909
+ }
2125
1910
  },
2126
1911
  "name": {
2127
1912
  "type": "string"
2128
1913
  },
2129
- "sanityCreatedAt": {
2130
- "type": "string"
1914
+ "slug": {
1915
+ "$ref": "#/components/schemas/slug"
2131
1916
  },
2132
- "sanityId": {
1917
+ "gender": {
2133
1918
  "type": "string"
2134
1919
  },
2135
- "sanityRev": {
1920
+ "email": {
2136
1921
  "type": "string"
2137
1922
  },
2138
- "sanityUpdatedAt": {
1923
+ "telephone": {
2139
1924
  "type": "string"
2140
1925
  },
2141
- "slug": {
2142
- "$ref": "#/components/schemas/slug"
2143
- },
2144
- "startDate": {
1926
+ "position": {
2145
1927
  "type": "string"
2146
1928
  },
2147
- "telephone": {
1929
+ "education": {
2148
1930
  "type": "string"
2149
1931
  },
2150
- "aboutOption": {
2151
- "$ref": "#/components/schemas/option_string"
2152
- },
2153
1932
  "about": {
2154
1933
  "type": "string"
2155
1934
  },
2156
- "addressOption": {
2157
- "$ref": "#/components/schemas/option_string"
1935
+ "birthDate": {
1936
+ "type": "string",
1937
+ "format": "date-time",
1938
+ "nullable": true
2158
1939
  },
2159
- "address": {
2160
- "type": "string"
2161
- },
2162
- "allergiesOption": {
2163
- "$ref": "#/components/schemas/option_list`1"
2164
- },
2165
- "allergies": {
2166
- "type": "array",
2167
- "items": {
2168
- "type": "string"
2169
- }
2170
- },
2171
- "cliftonStrengths": {
2172
- "type": "array",
2173
- "items": {
2174
- "$ref": "#/components/schemas/sanityEmployeeCliftonStrengthsInner"
2175
- }
2176
- },
2177
- "coinbaseAccountEmailOption": {
2178
- "$ref": "#/components/schemas/option_string"
2179
- },
2180
- "coinbaseAccountEmail": {
2181
- "type": "string"
2182
- },
2183
- "commissionTier": {
2184
- "$ref": "#/components/schemas/sanityEmployeeCommissionTier"
2185
- },
2186
- "educationOption": {
2187
- "$ref": "#/components/schemas/option_string"
2188
- },
2189
- "education": {
2190
- "type": "string"
2191
- },
2192
- "equipment": {
2193
- "type": "array",
2194
- "items": {
2195
- "$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
2196
- }
2197
- },
2198
- "graduationYearOption": {
2199
- "$ref": "#/components/schemas/option_nullable`1"
2200
- },
2201
- "graduationYear": {
2202
- "type": "number",
2203
- "format": "double",
2204
- "nullable": true
2205
- },
2206
- "groups": {
2207
- "type": "array",
2208
- "items": {
2209
- "$ref": "#/components/schemas/sanityEmployeeGroupsInner"
2210
- }
2211
- },
2212
- "innovativeSalaryOption": {
2213
- "$ref": "#/components/schemas/option_nullable`1"
2214
- },
2215
- "innovativeSalary": {
2216
- "type": "boolean",
2217
- "nullable": true
2218
- },
2219
- "innovativeSalaryPercentageOption": {
2220
- "$ref": "#/components/schemas/option_nullable`1"
2221
- },
2222
- "innovativeSalaryPercentage": {
2223
- "type": "number",
2224
- "format": "double",
2225
- "nullable": true
2226
- },
2227
- "isBotOption": {
2228
- "$ref": "#/components/schemas/option_nullable`1"
2229
- },
2230
- "isBot": {
2231
- "type": "boolean",
2232
- "nullable": true
2233
- },
2234
- "isSeekingProjectOption": {
2235
- "$ref": "#/components/schemas/option_nullable`1"
2236
- },
2237
- "isSeekingProject": {
2238
- "type": "boolean",
2239
- "nullable": true
2240
- },
2241
- "manager": {
2242
- "$ref": "#/components/schemas/sanityEmployeeManager"
2243
- },
2244
- "media": {
2245
- "type": "array",
2246
- "items": {
2247
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInner"
2248
- }
2249
- },
2250
- "nextOfKin": {
2251
- "type": "array",
2252
- "items": {
2253
- "$ref": "#/components/schemas/sanityEmployeeNextOfKinInner"
2254
- }
2255
- },
2256
- "nrOfChildrenOption": {
2257
- "$ref": "#/components/schemas/option_nullable`1"
2258
- },
2259
- "nrOfChildren": {
2260
- "type": "number",
2261
- "format": "double",
2262
- "nullable": true
2263
- },
2264
- "personalProjectRequirementsOption": {
2265
- "$ref": "#/components/schemas/option_string"
2266
- },
2267
- "personalProjectRequirements": {
2268
- "type": "string"
2269
- },
2270
- "positionOption": {
2271
- "$ref": "#/components/schemas/option_string"
2272
- },
2273
- "position": {
2274
- "type": "string"
2275
- },
2276
- "tags": {
2277
- "type": "array",
2278
- "items": {
2279
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
2280
- }
2281
- },
2282
- "technologies": {
2283
- "type": "array",
2284
- "items": {
2285
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInner"
2286
- }
2287
- }
2288
- }
2289
- },
2290
- "publicEmployee": {
2291
- "type": "object",
2292
- "properties": {
2293
- "sanityId": {
2294
- "type": "string"
2295
- },
2296
- "sanityType": {
2297
- "type": "string"
2298
- },
2299
- "active": {
2300
- "type": "boolean",
2301
- "nullable": true
2302
- },
2303
- "image": {
2304
- "$ref": "#/components/schemas/sanityImage"
2305
- },
2306
- "tags": {
2307
- "type": "array",
2308
- "items": {
2309
- "$ref": "#/components/schemas/tag"
2310
- }
2311
- },
2312
- "technologies": {
2313
- "type": "array",
2314
- "items": {
2315
- "$ref": "#/components/schemas/technology"
2316
- }
2317
- },
2318
- "started": {
2319
- "type": "boolean"
2320
- },
2321
- "media": {
2322
- "type": "array",
2323
- "items": {
2324
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInner"
2325
- }
2326
- },
2327
- "name": {
2328
- "type": "string"
2329
- },
2330
- "slug": {
2331
- "$ref": "#/components/schemas/slug"
2332
- },
2333
- "gender": {
2334
- "type": "string"
2335
- },
2336
- "email": {
2337
- "type": "string"
2338
- },
2339
- "telephone": {
2340
- "type": "string"
2341
- },
2342
- "position": {
2343
- "type": "string"
2344
- },
2345
- "education": {
2346
- "type": "string"
2347
- },
2348
- "about": {
2349
- "type": "string"
2350
- },
2351
- "birthDate": {
2352
- "type": "string",
2353
- "format": "date-time",
2354
- "nullable": true
2355
- },
2356
- "startDate": {
1940
+ "startDate": {
2357
1941
  "type": "string"
2358
1942
  }
2359
1943
  }
@@ -2692,6 +2276,17 @@
2692
2276
  }
2693
2277
  }
2694
2278
  },
2279
+ "sanityEmployeeMediaInner": {
2280
+ "type": "object",
2281
+ "properties": {
2282
+ "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerGalleryMediaInnerImage": {
2283
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerGalleryMediaInnerImage"
2284
+ },
2285
+ "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerGalleryMediaInnerVideo": {
2286
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerGalleryMediaInnerVideo"
2287
+ }
2288
+ }
2289
+ },
2695
2290
  "sanityEmployeeNextOfKinInner": {
2696
2291
  "type": "object",
2697
2292
  "properties": {
@@ -2720,6 +2315,40 @@
2720
2315
  }
2721
2316
  }
2722
2317
  },
2318
+ "sanityGadgetBudget": {
2319
+ "type": "object",
2320
+ "properties": {
2321
+ "sanityType": {
2322
+ "enum": [
2323
+ 1
2324
+ ],
2325
+ "type": "integer",
2326
+ "format": "int32",
2327
+ "default": 1
2328
+ },
2329
+ "employee": {
2330
+ "$ref": "#/components/schemas/sanityOrderEmployee"
2331
+ },
2332
+ "sanityCreatedAt": {
2333
+ "type": "string"
2334
+ },
2335
+ "sanityId": {
2336
+ "type": "string"
2337
+ },
2338
+ "sanityRev": {
2339
+ "type": "string"
2340
+ },
2341
+ "sanityUpdatedAt": {
2342
+ "type": "string"
2343
+ },
2344
+ "yearlyBudgets": {
2345
+ "type": "array",
2346
+ "items": {
2347
+ "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInner"
2348
+ }
2349
+ }
2350
+ }
2351
+ },
2723
2352
  "sanityGadgetBudgetYearlyBudgetsInner": {
2724
2353
  "type": "object",
2725
2354
  "properties": {
@@ -2761,18 +2390,18 @@
2761
2390
  "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInner": {
2762
2391
  "type": "object",
2763
2392
  "properties": {
2764
- "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOneOf": {
2765
- "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOneOf"
2393
+ "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerEquipment": {
2394
+ "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerEquipment"
2766
2395
  },
2767
- "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOneOf1": {
2768
- "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOneOf1"
2396
+ "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOther": {
2397
+ "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOther"
2769
2398
  },
2770
- "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOneOf2": {
2771
- "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOneOf2"
2399
+ "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerPoweroffice": {
2400
+ "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerPoweroffice"
2772
2401
  }
2773
2402
  }
2774
2403
  },
2775
- "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOneOf": {
2404
+ "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerEquipment": {
2776
2405
  "type": "object",
2777
2406
  "properties": {
2778
2407
  "sanityType": {
@@ -2795,11 +2424,11 @@
2795
2424
  "nullable": true
2796
2425
  },
2797
2426
  "equipment": {
2798
- "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOneOfEquipment"
2427
+ "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerEquipmentEquipment"
2799
2428
  }
2800
2429
  }
2801
2430
  },
2802
- "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOneOf1": {
2431
+ "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerEquipmentEquipment": {
2803
2432
  "type": "object",
2804
2433
  "properties": {
2805
2434
  "sanityType": {
@@ -2810,26 +2439,30 @@
2810
2439
  "format": "int32",
2811
2440
  "default": 1
2812
2441
  },
2813
- "sanityKey": {
2442
+ "sanityId": {
2814
2443
  "type": "string"
2815
2444
  },
2816
- "budgetCostOption": {
2817
- "$ref": "#/components/schemas/option_nullable`1"
2445
+ "title": {
2446
+ "type": "string"
2818
2447
  },
2819
- "budgetCost": {
2820
- "type": "number",
2821
- "format": "double",
2822
- "nullable": true
2448
+ "description": {
2449
+ "type": "array",
2450
+ "items": {
2451
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
2452
+ }
2823
2453
  },
2824
- "descriptionOption": {
2825
- "$ref": "#/components/schemas/option_string"
2454
+ "image": {
2455
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
2826
2456
  },
2827
- "description": {
2828
- "type": "string"
2829
- }
2830
- }
2457
+ "images": {
2458
+ "type": "array",
2459
+ "items": {
2460
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
2461
+ }
2462
+ }
2463
+ }
2831
2464
  },
2832
- "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOneOf2": {
2465
+ "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOther": {
2833
2466
  "type": "object",
2834
2467
  "properties": {
2835
2468
  "sanityType": {
@@ -2856,16 +2489,10 @@
2856
2489
  },
2857
2490
  "description": {
2858
2491
  "type": "string"
2859
- },
2860
- "referenceOption": {
2861
- "$ref": "#/components/schemas/option_string"
2862
- },
2863
- "reference": {
2864
- "type": "string"
2865
2492
  }
2866
2493
  }
2867
2494
  },
2868
- "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerOneOfEquipment": {
2495
+ "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInnerPoweroffice": {
2869
2496
  "type": "object",
2870
2497
  "properties": {
2871
2498
  "sanityType": {
@@ -2876,26 +2503,28 @@
2876
2503
  "format": "int32",
2877
2504
  "default": 1
2878
2505
  },
2879
- "sanityId": {
2506
+ "sanityKey": {
2880
2507
  "type": "string"
2881
2508
  },
2882
- "title": {
2883
- "type": "string"
2509
+ "budgetCostOption": {
2510
+ "$ref": "#/components/schemas/option_nullable`1"
2511
+ },
2512
+ "budgetCost": {
2513
+ "type": "number",
2514
+ "format": "double",
2515
+ "nullable": true
2516
+ },
2517
+ "descriptionOption": {
2518
+ "$ref": "#/components/schemas/option_string"
2884
2519
  },
2885
2520
  "description": {
2886
- "type": "array",
2887
- "items": {
2888
- "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
2889
- }
2521
+ "type": "string"
2890
2522
  },
2891
- "image": {
2892
- "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
2523
+ "referenceOption": {
2524
+ "$ref": "#/components/schemas/option_string"
2893
2525
  },
2894
- "images": {
2895
- "type": "array",
2896
- "items": {
2897
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
2898
- }
2526
+ "reference": {
2527
+ "type": "string"
2899
2528
  }
2900
2529
  }
2901
2530
  },
@@ -3242,122 +2871,400 @@
3242
2871
  "format": "int32",
3243
2872
  "default": 1
3244
2873
  },
3245
- "darkMutedOption": {
3246
- "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
2874
+ "darkMutedOption": {
2875
+ "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
2876
+ },
2877
+ "darkMuted": {
2878
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2879
+ },
2880
+ "darkVibrantOption": {
2881
+ "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
2882
+ },
2883
+ "darkVibrant": {
2884
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2885
+ },
2886
+ "dominantOption": {
2887
+ "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
2888
+ },
2889
+ "dominant": {
2890
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2891
+ },
2892
+ "lightMutedOption": {
2893
+ "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
2894
+ },
2895
+ "lightMuted": {
2896
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2897
+ },
2898
+ "lightVibrantOption": {
2899
+ "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
2900
+ },
2901
+ "lightVibrant": {
2902
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2903
+ },
2904
+ "mutedOption": {
2905
+ "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
2906
+ },
2907
+ "muted": {
2908
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2909
+ },
2910
+ "vibrantOption": {
2911
+ "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
2912
+ },
2913
+ "vibrant": {
2914
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2915
+ }
2916
+ }
2917
+ },
2918
+ "sanityImagePaletteSwatch": {
2919
+ "type": "object",
2920
+ "properties": {
2921
+ "sanityType": {
2922
+ "enum": [
2923
+ 1
2924
+ ],
2925
+ "type": "integer",
2926
+ "format": "int32",
2927
+ "default": 1
2928
+ },
2929
+ "backgroundOption": {
2930
+ "$ref": "#/components/schemas/option_string"
2931
+ },
2932
+ "background": {
2933
+ "type": "string"
2934
+ },
2935
+ "foregroundOption": {
2936
+ "$ref": "#/components/schemas/option_string"
2937
+ },
2938
+ "foreground": {
2939
+ "type": "string"
2940
+ },
2941
+ "populationOption": {
2942
+ "$ref": "#/components/schemas/option_nullable`1"
2943
+ },
2944
+ "population": {
2945
+ "type": "number",
2946
+ "format": "double",
2947
+ "nullable": true
2948
+ },
2949
+ "titleOption": {
2950
+ "$ref": "#/components/schemas/option_string"
2951
+ },
2952
+ "title": {
2953
+ "type": "string"
2954
+ }
2955
+ }
2956
+ },
2957
+ "sanityOrderEmployee": {
2958
+ "type": "object",
2959
+ "properties": {
2960
+ "sanityType": {
2961
+ "enum": [
2962
+ 1
2963
+ ],
2964
+ "type": "integer",
2965
+ "format": "int32",
2966
+ "default": 1
2967
+ },
2968
+ "email": {
2969
+ "type": "string"
2970
+ },
2971
+ "image": {
2972
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
2973
+ },
2974
+ "name": {
2975
+ "type": "string"
2976
+ },
2977
+ "sanityId": {
2978
+ "type": "string"
2979
+ },
2980
+ "slug": {
2981
+ "$ref": "#/components/schemas/slug"
2982
+ },
2983
+ "telephone": {
2984
+ "type": "string"
2985
+ },
2986
+ "tags": {
2987
+ "type": "array",
2988
+ "items": {
2989
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
2990
+ }
2991
+ }
2992
+ }
2993
+ },
2994
+ "sanityPatchEmployee": {
2995
+ "type": "object",
2996
+ "properties": {
2997
+ "genderOption": {
2998
+ "$ref": "#/components/schemas/option_nullable`1"
2999
+ },
3000
+ "gender": {
3001
+ "enum": [
3002
+ 1,
3003
+ 2,
3004
+ 3
3005
+ ],
3006
+ "type": "integer",
3007
+ "format": "int32",
3008
+ "default": 1,
3009
+ "nullable": true
3010
+ },
3011
+ "maritalStatusOption": {
3012
+ "$ref": "#/components/schemas/option_nullable`1"
3013
+ },
3014
+ "maritalStatus": {
3015
+ "enum": [
3016
+ 1,
3017
+ 2,
3018
+ 3
3019
+ ],
3020
+ "type": "integer",
3021
+ "format": "int32",
3022
+ "default": 1,
3023
+ "nullable": true
3024
+ },
3025
+ "sanityTypeOption": {
3026
+ "$ref": "#/components/schemas/option_nullable`1"
3027
+ },
3028
+ "sanityType": {
3029
+ "enum": [
3030
+ 1
3031
+ ],
3032
+ "type": "integer",
3033
+ "format": "int32",
3034
+ "default": 1,
3035
+ "nullable": true
3036
+ },
3037
+ "aboutOption": {
3038
+ "$ref": "#/components/schemas/option_string"
3039
+ },
3040
+ "about": {
3041
+ "type": "string"
3042
+ },
3043
+ "activeOption": {
3044
+ "$ref": "#/components/schemas/option_nullable`1"
3045
+ },
3046
+ "active": {
3047
+ "type": "boolean",
3048
+ "nullable": true
3049
+ },
3050
+ "addressOption": {
3051
+ "$ref": "#/components/schemas/option_string"
3052
+ },
3053
+ "address": {
3054
+ "type": "string"
3055
+ },
3056
+ "allergiesOption": {
3057
+ "$ref": "#/components/schemas/option_list`1"
3058
+ },
3059
+ "allergies": {
3060
+ "type": "array",
3061
+ "items": {
3062
+ "type": "string"
3063
+ }
3064
+ },
3065
+ "birthDateOption": {
3066
+ "$ref": "#/components/schemas/option_string"
3067
+ },
3068
+ "birthDate": {
3069
+ "type": "string"
3070
+ },
3071
+ "blurredImageOption": {
3072
+ "$ref": "#/components/schemas/option_sanityPatchPageMetaImage"
3073
+ },
3074
+ "blurredImage": {
3075
+ "$ref": "#/components/schemas/sanityPatchPageMetaImage"
3076
+ },
3077
+ "boardMemberOption": {
3078
+ "$ref": "#/components/schemas/option_nullable`1"
3079
+ },
3080
+ "boardMember": {
3081
+ "type": "boolean",
3082
+ "nullable": true
3083
+ },
3084
+ "cliftonStrengthsOption": {
3085
+ "$ref": "#/components/schemas/option_list`1"
3086
+ },
3087
+ "cliftonStrengths": {
3088
+ "type": "array",
3089
+ "items": {
3090
+ "$ref": "#/components/schemas/sanityCreateEmployeeCliftonStrengthsInner"
3091
+ }
3092
+ },
3093
+ "coinbaseAccountEmailOption": {
3094
+ "$ref": "#/components/schemas/option_string"
3095
+ },
3096
+ "coinbaseAccountEmail": {
3097
+ "type": "string"
3098
+ },
3099
+ "commissionTierOption": {
3100
+ "$ref": "#/components/schemas/option_commissionTierReference"
3101
+ },
3102
+ "commissionTier": {
3103
+ "$ref": "#/components/schemas/commissionTierReference"
3104
+ },
3105
+ "educationOption": {
3106
+ "$ref": "#/components/schemas/option_string"
3107
+ },
3108
+ "education": {
3109
+ "type": "string"
3110
+ },
3111
+ "emailOption": {
3112
+ "$ref": "#/components/schemas/option_string"
3113
+ },
3114
+ "email": {
3115
+ "type": "string"
3116
+ },
3117
+ "equipmentOption": {
3118
+ "$ref": "#/components/schemas/option_list`1"
3119
+ },
3120
+ "equipment": {
3121
+ "type": "array",
3122
+ "items": {
3123
+ "$ref": "#/components/schemas/pageEquipmentInner"
3124
+ }
3125
+ },
3126
+ "graduationYearOption": {
3127
+ "$ref": "#/components/schemas/option_nullable`1"
3128
+ },
3129
+ "graduationYear": {
3130
+ "type": "number",
3131
+ "format": "double",
3132
+ "nullable": true
3133
+ },
3134
+ "groupsOption": {
3135
+ "$ref": "#/components/schemas/option_list`1"
3136
+ },
3137
+ "groups": {
3138
+ "type": "array",
3139
+ "items": {
3140
+ "$ref": "#/components/schemas/sanityCreateEmployeeGroupsInner"
3141
+ }
3142
+ },
3143
+ "imageOption": {
3144
+ "$ref": "#/components/schemas/option_sanityPatchPageMetaImage"
3247
3145
  },
3248
- "darkMuted": {
3249
- "$ref": "#/components/schemas/sanityImagePaletteSwatch"
3146
+ "image": {
3147
+ "$ref": "#/components/schemas/sanityPatchPageMetaImage"
3250
3148
  },
3251
- "darkVibrantOption": {
3252
- "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
3149
+ "innovativeSalaryOption": {
3150
+ "$ref": "#/components/schemas/option_nullable`1"
3253
3151
  },
3254
- "darkVibrant": {
3255
- "$ref": "#/components/schemas/sanityImagePaletteSwatch"
3152
+ "innovativeSalary": {
3153
+ "type": "boolean",
3154
+ "nullable": true
3256
3155
  },
3257
- "dominantOption": {
3258
- "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
3156
+ "innovativeSalaryPercentageOption": {
3157
+ "$ref": "#/components/schemas/option_nullable`1"
3259
3158
  },
3260
- "dominant": {
3261
- "$ref": "#/components/schemas/sanityImagePaletteSwatch"
3159
+ "innovativeSalaryPercentage": {
3160
+ "type": "number",
3161
+ "format": "double",
3162
+ "nullable": true
3262
3163
  },
3263
- "lightMutedOption": {
3264
- "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
3164
+ "isBotOption": {
3165
+ "$ref": "#/components/schemas/option_nullable`1"
3265
3166
  },
3266
- "lightMuted": {
3267
- "$ref": "#/components/schemas/sanityImagePaletteSwatch"
3167
+ "isBot": {
3168
+ "type": "boolean",
3169
+ "nullable": true
3268
3170
  },
3269
- "lightVibrantOption": {
3270
- "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
3171
+ "isSeekingProjectOption": {
3172
+ "$ref": "#/components/schemas/option_nullable`1"
3271
3173
  },
3272
- "lightVibrant": {
3273
- "$ref": "#/components/schemas/sanityImagePaletteSwatch"
3174
+ "isSeekingProject": {
3175
+ "type": "boolean",
3176
+ "nullable": true
3274
3177
  },
3275
- "mutedOption": {
3276
- "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
3178
+ "managerOption": {
3179
+ "$ref": "#/components/schemas/option_employeeReference"
3277
3180
  },
3278
- "muted": {
3279
- "$ref": "#/components/schemas/sanityImagePaletteSwatch"
3181
+ "manager": {
3182
+ "$ref": "#/components/schemas/employeeReference"
3280
3183
  },
3281
- "vibrantOption": {
3282
- "$ref": "#/components/schemas/option_sanityImagePaletteSwatch"
3184
+ "mediaOption": {
3185
+ "$ref": "#/components/schemas/option_list`1"
3283
3186
  },
3284
- "vibrant": {
3285
- "$ref": "#/components/schemas/sanityImagePaletteSwatch"
3286
- }
3287
- }
3288
- },
3289
- "sanityImagePaletteSwatch": {
3290
- "type": "object",
3291
- "properties": {
3292
- "sanityType": {
3293
- "enum": [
3294
- 1
3295
- ],
3296
- "type": "integer",
3297
- "format": "int32",
3298
- "default": 1
3187
+ "media": {
3188
+ "type": "array",
3189
+ "items": {
3190
+ "$ref": "#/components/schemas/componentGalleryMediaInner"
3191
+ }
3299
3192
  },
3300
- "backgroundOption": {
3193
+ "nameOption": {
3301
3194
  "$ref": "#/components/schemas/option_string"
3302
3195
  },
3303
- "background": {
3196
+ "name": {
3304
3197
  "type": "string"
3305
3198
  },
3306
- "foregroundOption": {
3307
- "$ref": "#/components/schemas/option_string"
3199
+ "nextOfKinOption": {
3200
+ "$ref": "#/components/schemas/option_list`1"
3308
3201
  },
3309
- "foreground": {
3310
- "type": "string"
3202
+ "nextOfKin": {
3203
+ "type": "array",
3204
+ "items": {
3205
+ "$ref": "#/components/schemas/sanityEmployeeNextOfKinInner"
3206
+ }
3311
3207
  },
3312
- "populationOption": {
3208
+ "nrOfChildrenOption": {
3313
3209
  "$ref": "#/components/schemas/option_nullable`1"
3314
3210
  },
3315
- "population": {
3211
+ "nrOfChildren": {
3316
3212
  "type": "number",
3317
3213
  "format": "double",
3318
3214
  "nullable": true
3319
3215
  },
3320
- "titleOption": {
3216
+ "personalProjectRequirementsOption": {
3321
3217
  "$ref": "#/components/schemas/option_string"
3322
3218
  },
3323
- "title": {
3324
- "type": "string"
3325
- }
3326
- }
3327
- },
3328
- "sanityOrderEmployee": {
3329
- "type": "object",
3330
- "properties": {
3331
- "sanityType": {
3332
- "enum": [
3333
- 1
3334
- ],
3335
- "type": "integer",
3336
- "format": "int32",
3337
- "default": 1
3338
- },
3339
- "email": {
3219
+ "personalProjectRequirements": {
3340
3220
  "type": "string"
3341
3221
  },
3342
- "image": {
3343
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
3222
+ "positionOption": {
3223
+ "$ref": "#/components/schemas/option_string"
3344
3224
  },
3345
- "name": {
3225
+ "position": {
3346
3226
  "type": "string"
3347
3227
  },
3348
- "sanityId": {
3349
- "type": "string"
3228
+ "slugOption": {
3229
+ "$ref": "#/components/schemas/option_slug"
3350
3230
  },
3351
3231
  "slug": {
3352
3232
  "$ref": "#/components/schemas/slug"
3353
3233
  },
3354
- "telephone": {
3234
+ "startDateOption": {
3235
+ "$ref": "#/components/schemas/option_string"
3236
+ },
3237
+ "startDate": {
3355
3238
  "type": "string"
3356
3239
  },
3240
+ "tagsOption": {
3241
+ "$ref": "#/components/schemas/option_list`1"
3242
+ },
3357
3243
  "tags": {
3358
3244
  "type": "array",
3359
3245
  "items": {
3360
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
3246
+ "$ref": "#/components/schemas/sanityCreateEmployeeTagsInner"
3247
+ }
3248
+ },
3249
+ "technologiesOption": {
3250
+ "$ref": "#/components/schemas/option_list`1"
3251
+ },
3252
+ "technologies": {
3253
+ "type": "array",
3254
+ "items": {
3255
+ "$ref": "#/components/schemas/sanityCreateEmployeeTechnologiesInner"
3256
+ }
3257
+ },
3258
+ "telephoneOption": {
3259
+ "$ref": "#/components/schemas/option_string"
3260
+ },
3261
+ "telephone": {
3262
+ "type": "string"
3263
+ },
3264
+ "additionalProperties": {
3265
+ "type": "object",
3266
+ "additionalProperties": {
3267
+ "$ref": "#/components/schemas/jsonElement"
3361
3268
  }
3362
3269
  }
3363
3270
  }
@@ -3451,7 +3358,7 @@
3451
3358
  "children": {
3452
3359
  "type": "array",
3453
3360
  "items": {
3454
- "$ref": "#/components/schemas/componentBlocksInnerOneOfChildrenInner"
3361
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInnerChildrenInner"
3455
3362
  }
3456
3363
  },
3457
3364
  "levelOption": {
@@ -3468,12 +3375,12 @@
3468
3375
  "markDefs": {
3469
3376
  "type": "array",
3470
3377
  "items": {
3471
- "$ref": "#/components/schemas/componentBlocksInnerOneOfMarkDefsInner"
3378
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInnerMarkDefsInner"
3472
3379
  }
3473
3380
  }
3474
3381
  }
3475
3382
  },
3476
- "sanityTechnologyWithRelationsProjectsInnerTechnologiesInner": {
3383
+ "sanitySystemsInnerDescriptionInnerChildrenInner": {
3477
3384
  "type": "object",
3478
3385
  "properties": {
3479
3386
  "sanityType": {
@@ -3484,21 +3391,27 @@
3484
3391
  "format": "int32",
3485
3392
  "default": 1
3486
3393
  },
3487
- "parent": {
3488
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
3489
- },
3490
- "sanityId": {
3394
+ "sanityKey": {
3491
3395
  "type": "string"
3492
3396
  },
3493
- "slug": {
3494
- "$ref": "#/components/schemas/slug"
3397
+ "marksOption": {
3398
+ "$ref": "#/components/schemas/option_list`1"
3495
3399
  },
3496
- "title": {
3400
+ "marks": {
3401
+ "type": "array",
3402
+ "items": {
3403
+ "type": "string"
3404
+ }
3405
+ },
3406
+ "textOption": {
3407
+ "$ref": "#/components/schemas/option_string"
3408
+ },
3409
+ "text": {
3497
3410
  "type": "string"
3498
3411
  }
3499
3412
  }
3500
3413
  },
3501
- "sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent": {
3414
+ "sanitySystemsInnerDescriptionInnerMarkDefsInner": {
3502
3415
  "type": "object",
3503
3416
  "properties": {
3504
3417
  "sanityType": {
@@ -3509,29 +3422,43 @@
3509
3422
  "format": "int32",
3510
3423
  "default": 1
3511
3424
  },
3512
- "name": {
3425
+ "sanityKey": {
3513
3426
  "type": "string"
3514
3427
  },
3515
- "sanityId": {
3516
- "type": "string"
3428
+ "hrefOption": {
3429
+ "$ref": "#/components/schemas/option_string"
3517
3430
  },
3518
- "slug": {
3519
- "$ref": "#/components/schemas/slug"
3431
+ "href": {
3432
+ "type": "string"
3520
3433
  }
3521
3434
  }
3522
3435
  },
3523
- "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInner": {
3436
+ "sanityTechnologyWithRelationsProjectsInnerTechnologiesInner": {
3524
3437
  "type": "object",
3525
3438
  "properties": {
3526
- "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf": {
3527
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf"
3439
+ "sanityType": {
3440
+ "enum": [
3441
+ 1
3442
+ ],
3443
+ "type": "integer",
3444
+ "format": "int32",
3445
+ "default": 1
3446
+ },
3447
+ "parent": {
3448
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
3449
+ },
3450
+ "sanityId": {
3451
+ "type": "string"
3452
+ },
3453
+ "slug": {
3454
+ "$ref": "#/components/schemas/slug"
3528
3455
  },
3529
- "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf1": {
3530
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf1"
3456
+ "title": {
3457
+ "type": "string"
3531
3458
  }
3532
3459
  }
3533
3460
  },
3534
- "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf": {
3461
+ "sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent": {
3535
3462
  "type": "object",
3536
3463
  "properties": {
3537
3464
  "sanityType": {
@@ -3542,15 +3469,18 @@
3542
3469
  "format": "int32",
3543
3470
  "default": 1
3544
3471
  },
3545
- "sanityKey": {
3472
+ "name": {
3546
3473
  "type": "string"
3547
3474
  },
3548
- "asset": {
3549
- "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
3475
+ "sanityId": {
3476
+ "type": "string"
3477
+ },
3478
+ "slug": {
3479
+ "$ref": "#/components/schemas/slug"
3550
3480
  }
3551
3481
  }
3552
3482
  },
3553
- "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf1": {
3483
+ "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerGalleryMediaInnerImage": {
3554
3484
  "type": "object",
3555
3485
  "properties": {
3556
3486
  "sanityType": {
@@ -3565,11 +3495,11 @@
3565
3495
  "type": "string"
3566
3496
  },
3567
3497
  "asset": {
3568
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf1Asset"
3498
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
3569
3499
  }
3570
3500
  }
3571
3501
  },
3572
- "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf1Asset": {
3502
+ "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerGalleryMediaInnerVideo": {
3573
3503
  "type": "object",
3574
3504
  "properties": {
3575
3505
  "sanityType": {
@@ -3580,14 +3510,11 @@
3580
3510
  "format": "int32",
3581
3511
  "default": 1
3582
3512
  },
3583
- "sanityId": {
3584
- "type": "string"
3585
- },
3586
- "filename": {
3513
+ "sanityKey": {
3587
3514
  "type": "string"
3588
3515
  },
3589
- "playbackId": {
3590
- "type": "string"
3516
+ "asset": {
3517
+ "$ref": "#/components/schemas/sanityVideoMemoryAsset"
3591
3518
  }
3592
3519
  }
3593
3520
  },
@@ -3648,6 +3575,28 @@
3648
3575
  }
3649
3576
  }
3650
3577
  },
3578
+ "sanityVideoMemoryAsset": {
3579
+ "type": "object",
3580
+ "properties": {
3581
+ "sanityType": {
3582
+ "enum": [
3583
+ 1
3584
+ ],
3585
+ "type": "integer",
3586
+ "format": "int32",
3587
+ "default": 1
3588
+ },
3589
+ "sanityId": {
3590
+ "type": "string"
3591
+ },
3592
+ "filename": {
3593
+ "type": "string"
3594
+ },
3595
+ "playbackId": {
3596
+ "type": "string"
3597
+ }
3598
+ }
3599
+ },
3651
3600
  "slug": {
3652
3601
  "type": "object",
3653
3602
  "properties": {
@@ -3711,16 +3660,14 @@
3711
3660
  "type": "object",
3712
3661
  "properties": {
3713
3662
  "name": {
3714
- "type": "string",
3715
- "nullable": true
3663
+ "type": "string"
3716
3664
  },
3717
3665
  "archived": {
3718
3666
  "type": "boolean",
3719
3667
  "nullable": true
3720
3668
  },
3721
3669
  "status": {
3722
- "type": "string",
3723
- "nullable": true
3670
+ "type": "string"
3724
3671
  }
3725
3672
  }
3726
3673
  }