@snokam/mcp-api 2.59.0 → 2.60.1

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.
@@ -1156,10 +1156,17 @@
1156
1156
  "properties": {
1157
1157
  "sanityType": {
1158
1158
  "enum": [
1159
- "span"
1159
+ 1
1160
1160
  ],
1161
- "type": "string",
1162
- "default": "span"
1161
+ "type": "integer",
1162
+ "format": "int32",
1163
+ "default": 1
1164
+ },
1165
+ "sanityKey": {
1166
+ "type": "string"
1167
+ },
1168
+ "marksOption": {
1169
+ "$ref": "#/components/schemas/option_list`1"
1163
1170
  },
1164
1171
  "marks": {
1165
1172
  "type": "array",
@@ -1167,8 +1174,8 @@
1167
1174
  "type": "string"
1168
1175
  }
1169
1176
  },
1170
- "sanityKey": {
1171
- "type": "string"
1177
+ "textOption": {
1178
+ "$ref": "#/components/schemas/option_string"
1172
1179
  },
1173
1180
  "text": {
1174
1181
  "type": "string"
@@ -1180,15 +1187,19 @@
1180
1187
  "properties": {
1181
1188
  "sanityType": {
1182
1189
  "enum": [
1183
- "link"
1190
+ 1
1184
1191
  ],
1185
- "type": "string",
1186
- "default": "link"
1192
+ "type": "integer",
1193
+ "format": "int32",
1194
+ "default": 1
1187
1195
  },
1188
- "href": {
1196
+ "sanityKey": {
1189
1197
  "type": "string"
1190
1198
  },
1191
- "sanityKey": {
1199
+ "hrefOption": {
1200
+ "$ref": "#/components/schemas/option_string"
1201
+ },
1202
+ "href": {
1192
1203
  "type": "string"
1193
1204
  }
1194
1205
  }
@@ -1198,25 +1209,27 @@
1198
1209
  "properties": {
1199
1210
  "status": {
1200
1211
  "enum": [
1201
- "CREATED",
1202
- "INTRODUCTION",
1203
- "OFFER",
1204
- "SIGNED",
1205
- "ONBOARDING",
1206
- "USER_CREATION_REVIEW",
1207
- "OFFBOARDING",
1208
- "REJECTED"
1212
+ 1,
1213
+ 2,
1214
+ 3,
1215
+ 4,
1216
+ 5,
1217
+ 6,
1218
+ 7,
1219
+ 8
1209
1220
  ],
1210
- "type": "string",
1211
- "default": "CREATED"
1221
+ "type": "integer",
1222
+ "format": "int32",
1223
+ "default": 1
1212
1224
  },
1213
1225
  "track": {
1214
1226
  "enum": [
1215
- "developer",
1216
- "data_engineer"
1227
+ 1,
1228
+ 2
1217
1229
  ],
1218
- "type": "string",
1219
- "default": "developer"
1230
+ "type": "integer",
1231
+ "format": "int32",
1232
+ "default": 1
1220
1233
  },
1221
1234
  "candidate": {
1222
1235
  "type": "string"
@@ -1224,7 +1237,7 @@
1224
1237
  "additionalProperties": {
1225
1238
  "type": "object",
1226
1239
  "additionalProperties": {
1227
- "type": "object"
1240
+ "$ref": "#/components/schemas/jsonElement"
1228
1241
  }
1229
1242
  }
1230
1243
  }
@@ -1234,16 +1247,44 @@
1234
1247
  "properties": {
1235
1248
  "sanityType": {
1236
1249
  "enum": [
1237
- "reference"
1250
+ 1
1238
1251
  ],
1239
- "type": "string",
1240
- "default": "reference"
1252
+ "type": "integer",
1253
+ "format": "int32",
1254
+ "default": 1
1241
1255
  },
1242
1256
  "sanityRef": {
1243
1257
  "type": "string"
1244
1258
  },
1259
+ "sanityWeakOption": {
1260
+ "$ref": "#/components/schemas/option_nullable`1"
1261
+ },
1245
1262
  "sanityWeak": {
1246
- "type": "boolean"
1263
+ "type": "boolean",
1264
+ "nullable": true
1265
+ }
1266
+ }
1267
+ },
1268
+ "jsonElement": {
1269
+ "type": "object",
1270
+ "properties": {
1271
+ "valueKind": {
1272
+ "enum": [
1273
+ 0,
1274
+ 1,
1275
+ 2,
1276
+ 3,
1277
+ 4,
1278
+ 5,
1279
+ 6,
1280
+ 7
1281
+ ],
1282
+ "type": "integer",
1283
+ "format": "int32",
1284
+ "default": 0
1285
+ },
1286
+ "item": {
1287
+ "$ref": "#/components/schemas/jsonElement"
1247
1288
  }
1248
1289
  }
1249
1290
  },
@@ -1270,22 +1311,148 @@
1270
1311
  }
1271
1312
  }
1272
1313
  },
1314
+ "option_employeeReference": {
1315
+ "type": "object",
1316
+ "properties": {
1317
+ "value": {
1318
+ "$ref": "#/components/schemas/employeeReference"
1319
+ }
1320
+ }
1321
+ },
1322
+ "option_list`1": {
1323
+ "type": "object",
1324
+ "properties": {
1325
+ "value": {
1326
+ "type": "array",
1327
+ "items": {
1328
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1329
+ }
1330
+ }
1331
+ }
1332
+ },
1333
+ "option_nullable`1": {
1334
+ "type": "object",
1335
+ "properties": {
1336
+ "value": {
1337
+ "type": "boolean",
1338
+ "nullable": true
1339
+ }
1340
+ }
1341
+ },
1342
+ "option_object": {
1343
+ "type": "object",
1344
+ "properties": {
1345
+ "value": {
1346
+ "type": "object"
1347
+ }
1348
+ }
1349
+ },
1350
+ "option_sanityAssetSourceData": {
1351
+ "type": "object",
1352
+ "properties": {
1353
+ "value": {
1354
+ "$ref": "#/components/schemas/sanityAssetSourceData"
1355
+ }
1356
+ }
1357
+ },
1358
+ "option_sanityCandidateAddress": {
1359
+ "type": "object",
1360
+ "properties": {
1361
+ "value": {
1362
+ "$ref": "#/components/schemas/sanityCandidateAddress"
1363
+ }
1364
+ }
1365
+ },
1366
+ "option_sanityFileAssetReference": {
1367
+ "type": "object",
1368
+ "properties": {
1369
+ "value": {
1370
+ "$ref": "#/components/schemas/sanityFileAssetReference"
1371
+ }
1372
+ }
1373
+ },
1374
+ "option_sanityImageAssetReference": {
1375
+ "type": "object",
1376
+ "properties": {
1377
+ "value": {
1378
+ "$ref": "#/components/schemas/sanityImageAssetReference"
1379
+ }
1380
+ }
1381
+ },
1382
+ "option_sanityImageCrop": {
1383
+ "type": "object",
1384
+ "properties": {
1385
+ "value": {
1386
+ "$ref": "#/components/schemas/sanityImageCrop"
1387
+ }
1388
+ }
1389
+ },
1390
+ "option_sanityImageHotspot": {
1391
+ "type": "object",
1392
+ "properties": {
1393
+ "value": {
1394
+ "$ref": "#/components/schemas/sanityImageHotspot"
1395
+ }
1396
+ }
1397
+ },
1398
+ "option_sanityPatchCandidateAddress": {
1399
+ "type": "object",
1400
+ "properties": {
1401
+ "value": {
1402
+ "$ref": "#/components/schemas/sanityPatchCandidateAddress"
1403
+ }
1404
+ }
1405
+ },
1406
+ "option_sanityPatchCandidateApplicationLetter": {
1407
+ "type": "object",
1408
+ "properties": {
1409
+ "value": {
1410
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
1411
+ }
1412
+ }
1413
+ },
1414
+ "option_sanityPatchPageMetaImage": {
1415
+ "type": "object",
1416
+ "properties": {
1417
+ "value": {
1418
+ "$ref": "#/components/schemas/sanityPatchPageMetaImage"
1419
+ }
1420
+ }
1421
+ },
1422
+ "option_string": {
1423
+ "type": "object",
1424
+ "properties": {
1425
+ "value": {
1426
+ "type": "string"
1427
+ }
1428
+ }
1429
+ },
1273
1430
  "sanityAssetSourceData": {
1274
1431
  "type": "object",
1275
1432
  "properties": {
1276
1433
  "sanityType": {
1277
1434
  "enum": [
1278
- "sanity.assetSourceData"
1435
+ 1
1279
1436
  ],
1280
- "type": "string",
1281
- "default": "sanity.assetSourceData"
1437
+ "type": "integer",
1438
+ "format": "int32",
1439
+ "default": 1
1440
+ },
1441
+ "idOption": {
1442
+ "$ref": "#/components/schemas/option_string"
1282
1443
  },
1283
1444
  "id": {
1284
1445
  "type": "string"
1285
1446
  },
1447
+ "nameOption": {
1448
+ "$ref": "#/components/schemas/option_string"
1449
+ },
1286
1450
  "name": {
1287
1451
  "type": "string"
1288
1452
  },
1453
+ "urlOption": {
1454
+ "$ref": "#/components/schemas/option_string"
1455
+ },
1289
1456
  "url": {
1290
1457
  "type": "string"
1291
1458
  }
@@ -1296,10 +1463,11 @@
1296
1463
  "properties": {
1297
1464
  "sanityType": {
1298
1465
  "enum": [
1299
- "employee"
1466
+ 1
1300
1467
  ],
1301
- "type": "string",
1302
- "default": "employee"
1468
+ "type": "integer",
1469
+ "format": "int32",
1470
+ "default": 1
1303
1471
  },
1304
1472
  "email": {
1305
1473
  "type": "string"
@@ -1316,14 +1484,14 @@
1316
1484
  "slug": {
1317
1485
  "$ref": "#/components/schemas/slug"
1318
1486
  },
1487
+ "telephone": {
1488
+ "type": "string"
1489
+ },
1319
1490
  "tags": {
1320
1491
  "type": "array",
1321
1492
  "items": {
1322
1493
  "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
1323
1494
  }
1324
- },
1325
- "telephone": {
1326
- "type": "string"
1327
1495
  }
1328
1496
  }
1329
1497
  },
@@ -1332,32 +1500,53 @@
1332
1500
  "properties": {
1333
1501
  "sanityType": {
1334
1502
  "enum": [
1335
- "candidate"
1503
+ 1
1336
1504
  ],
1337
- "type": "string",
1338
- "default": "candidate"
1505
+ "type": "integer",
1506
+ "format": "int32",
1507
+ "default": 1
1339
1508
  },
1340
1509
  "status": {
1341
1510
  "enum": [
1342
- "CREATED",
1343
- "INTRODUCTION",
1344
- "OFFBOARDING",
1345
- "OFFER",
1346
- "ONBOARDING",
1347
- "REJECTED",
1348
- "SIGNED",
1349
- "USER_CREATION_REVIEW"
1511
+ 1,
1512
+ 2,
1513
+ 3,
1514
+ 4,
1515
+ 5,
1516
+ 6,
1517
+ 7,
1518
+ 8
1350
1519
  ],
1351
- "type": "string",
1352
- "default": "CREATED"
1520
+ "type": "integer",
1521
+ "format": "int32",
1522
+ "default": 1
1353
1523
  },
1354
1524
  "track": {
1355
1525
  "enum": [
1356
- "data_engineer",
1357
- "developer"
1526
+ 1,
1527
+ 2
1358
1528
  ],
1359
- "type": "string",
1360
- "default": "data_engineer"
1529
+ "type": "integer",
1530
+ "format": "int32",
1531
+ "default": 1
1532
+ },
1533
+ "candidate": {
1534
+ "type": "string"
1535
+ },
1536
+ "sanityCreatedAt": {
1537
+ "type": "string"
1538
+ },
1539
+ "sanityId": {
1540
+ "type": "string"
1541
+ },
1542
+ "sanityRev": {
1543
+ "type": "string"
1544
+ },
1545
+ "sanityUpdatedAt": {
1546
+ "type": "string"
1547
+ },
1548
+ "addressOption": {
1549
+ "$ref": "#/components/schemas/option_sanityCandidateAddress"
1361
1550
  },
1362
1551
  "address": {
1363
1552
  "$ref": "#/components/schemas/sanityCandidateAddress"
@@ -1365,29 +1554,42 @@
1365
1554
  "applicationLetter": {
1366
1555
  "$ref": "#/components/schemas/sanityCandidateGrades"
1367
1556
  },
1557
+ "applicationOtherOption": {
1558
+ "$ref": "#/components/schemas/option_string"
1559
+ },
1368
1560
  "applicationOther": {
1369
1561
  "type": "string"
1370
1562
  },
1563
+ "bankAccountOption": {
1564
+ "$ref": "#/components/schemas/option_string"
1565
+ },
1371
1566
  "bankAccount": {
1372
1567
  "type": "string"
1373
1568
  },
1374
1569
  "buddy": {
1375
1570
  "$ref": "#/components/schemas/sanityEmployeeManager"
1376
1571
  },
1377
- "candidate": {
1378
- "type": "string"
1379
- },
1380
1572
  "cv": {
1381
1573
  "$ref": "#/components/schemas/sanityCandidateGrades"
1382
1574
  },
1575
+ "emailOption": {
1576
+ "$ref": "#/components/schemas/option_string"
1577
+ },
1383
1578
  "email": {
1384
1579
  "type": "string"
1385
1580
  },
1386
1581
  "employee": {
1387
1582
  "$ref": "#/components/schemas/sanityEmployeeManager"
1388
1583
  },
1584
+ "fromApplicationOption": {
1585
+ "$ref": "#/components/schemas/option_nullable`1"
1586
+ },
1389
1587
  "fromApplication": {
1390
- "type": "boolean"
1588
+ "type": "boolean",
1589
+ "nullable": true
1590
+ },
1591
+ "githubUsernameOption": {
1592
+ "$ref": "#/components/schemas/option_string"
1391
1593
  },
1392
1594
  "githubUsername": {
1393
1595
  "type": "string"
@@ -1395,25 +1597,41 @@
1395
1597
  "grades": {
1396
1598
  "$ref": "#/components/schemas/sanityCandidateGrades"
1397
1599
  },
1600
+ "offboardingChecklistOption": {
1601
+ "$ref": "#/components/schemas/option_list`1"
1602
+ },
1398
1603
  "offboardingChecklist": {
1399
1604
  "type": "array",
1400
1605
  "items": {
1401
1606
  "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1402
1607
  }
1403
1608
  },
1609
+ "onboardingChecklistOption": {
1610
+ "$ref": "#/components/schemas/option_list`1"
1611
+ },
1404
1612
  "onboardingChecklist": {
1405
1613
  "type": "array",
1406
1614
  "items": {
1407
1615
  "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1408
1616
  }
1409
1617
  },
1618
+ "ownershipOption": {
1619
+ "$ref": "#/components/schemas/option_nullable`1"
1620
+ },
1410
1621
  "ownership": {
1411
1622
  "type": "number",
1412
- "format": "double"
1623
+ "format": "double",
1624
+ "nullable": true
1625
+ },
1626
+ "preferredDisplayNameOption": {
1627
+ "$ref": "#/components/schemas/option_string"
1413
1628
  },
1414
1629
  "preferredDisplayName": {
1415
1630
  "type": "string"
1416
1631
  },
1632
+ "preferredEmailOption": {
1633
+ "$ref": "#/components/schemas/option_string"
1634
+ },
1417
1635
  "preferredEmail": {
1418
1636
  "type": "string"
1419
1637
  },
@@ -1423,23 +1641,17 @@
1423
1641
  "recruiter": {
1424
1642
  "$ref": "#/components/schemas/sanityEmployeeManager"
1425
1643
  },
1644
+ "referencesOption": {
1645
+ "$ref": "#/components/schemas/option_list`1"
1646
+ },
1426
1647
  "references": {
1427
1648
  "type": "array",
1428
1649
  "items": {
1429
1650
  "$ref": "#/components/schemas/sanityCandidateReferencesInner"
1430
1651
  }
1431
1652
  },
1432
- "sanityCreatedAt": {
1433
- "type": "string"
1434
- },
1435
- "sanityId": {
1436
- "type": "string"
1437
- },
1438
- "sanityRev": {
1439
- "type": "string"
1440
- },
1441
- "sanityUpdatedAt": {
1442
- "type": "string"
1653
+ "shortUrlOption": {
1654
+ "$ref": "#/components/schemas/option_string"
1443
1655
  },
1444
1656
  "shortUrl": {
1445
1657
  "type": "string"
@@ -1450,9 +1662,15 @@
1450
1662
  "$ref": "#/components/schemas/sanitySystemsInner"
1451
1663
  }
1452
1664
  },
1665
+ "telephoneOption": {
1666
+ "$ref": "#/components/schemas/option_string"
1667
+ },
1453
1668
  "telephone": {
1454
1669
  "type": "string"
1455
1670
  },
1671
+ "urlOption": {
1672
+ "$ref": "#/components/schemas/option_string"
1673
+ },
1456
1674
  "url": {
1457
1675
  "type": "string"
1458
1676
  }
@@ -1461,12 +1679,21 @@
1461
1679
  "sanityCandidateAddress": {
1462
1680
  "type": "object",
1463
1681
  "properties": {
1682
+ "cityOption": {
1683
+ "$ref": "#/components/schemas/option_string"
1684
+ },
1464
1685
  "city": {
1465
1686
  "type": "string"
1466
1687
  },
1688
+ "postalCodeOption": {
1689
+ "$ref": "#/components/schemas/option_string"
1690
+ },
1467
1691
  "postalCode": {
1468
1692
  "type": "string"
1469
1693
  },
1694
+ "streetOption": {
1695
+ "$ref": "#/components/schemas/option_string"
1696
+ },
1470
1697
  "street": {
1471
1698
  "type": "string"
1472
1699
  }
@@ -1477,14 +1704,18 @@
1477
1704
  "properties": {
1478
1705
  "sanityType": {
1479
1706
  "enum": [
1480
- "file"
1707
+ 1
1481
1708
  ],
1482
- "type": "string",
1483
- "default": "file"
1709
+ "type": "integer",
1710
+ "format": "int32",
1711
+ "default": 1
1484
1712
  },
1485
1713
  "asset": {
1486
1714
  "$ref": "#/components/schemas/sanityDocFileAsset"
1487
1715
  },
1716
+ "mediaOption": {
1717
+ "$ref": "#/components/schemas/option_object"
1718
+ },
1488
1719
  "media": {
1489
1720
  "type": "object"
1490
1721
  }
@@ -1495,10 +1726,11 @@
1495
1726
  "properties": {
1496
1727
  "sanityType": {
1497
1728
  "enum": [
1498
- "reference"
1729
+ 1
1499
1730
  ],
1500
- "type": "string",
1501
- "default": "reference"
1731
+ "type": "integer",
1732
+ "format": "int32",
1733
+ "default": 1
1502
1734
  },
1503
1735
  "sanityKey": {
1504
1736
  "type": "string"
@@ -1506,8 +1738,12 @@
1506
1738
  "sanityRef": {
1507
1739
  "type": "string"
1508
1740
  },
1741
+ "sanityWeakOption": {
1742
+ "$ref": "#/components/schemas/option_nullable`1"
1743
+ },
1509
1744
  "sanityWeak": {
1510
- "type": "boolean"
1745
+ "type": "boolean",
1746
+ "nullable": true
1511
1747
  }
1512
1748
  }
1513
1749
  },
@@ -1516,24 +1752,37 @@
1516
1752
  "properties": {
1517
1753
  "sanityType": {
1518
1754
  "enum": [
1519
- "candidateReference"
1755
+ 1
1520
1756
  ],
1521
- "type": "string",
1522
- "default": "candidateReference"
1757
+ "type": "integer",
1758
+ "format": "int32",
1759
+ "default": 1
1760
+ },
1761
+ "sanityKey": {
1762
+ "type": "string"
1763
+ },
1764
+ "detailsOption": {
1765
+ "$ref": "#/components/schemas/option_string"
1523
1766
  },
1524
1767
  "details": {
1525
1768
  "type": "string"
1526
1769
  },
1770
+ "emailOption": {
1771
+ "$ref": "#/components/schemas/option_string"
1772
+ },
1527
1773
  "email": {
1528
1774
  "type": "string"
1529
1775
  },
1776
+ "nameOption": {
1777
+ "$ref": "#/components/schemas/option_string"
1778
+ },
1530
1779
  "name": {
1531
1780
  "type": "string"
1532
1781
  },
1533
- "phone": {
1534
- "type": "string"
1782
+ "phoneOption": {
1783
+ "$ref": "#/components/schemas/option_string"
1535
1784
  },
1536
- "sanityKey": {
1785
+ "phone": {
1537
1786
  "type": "string"
1538
1787
  }
1539
1788
  }
@@ -1541,25 +1790,31 @@
1541
1790
  "sanityCreateSystem": {
1542
1791
  "type": "object",
1543
1792
  "properties": {
1793
+ "title": {
1794
+ "type": "string"
1795
+ },
1796
+ "descriptionOption": {
1797
+ "$ref": "#/components/schemas/option_list`1"
1798
+ },
1544
1799
  "description": {
1545
1800
  "type": "array",
1546
1801
  "items": {
1547
1802
  "type": "object"
1548
1803
  }
1549
1804
  },
1805
+ "linksOption": {
1806
+ "$ref": "#/components/schemas/option_list`1"
1807
+ },
1550
1808
  "links": {
1551
1809
  "type": "array",
1552
1810
  "items": {
1553
1811
  "type": "string"
1554
1812
  }
1555
1813
  },
1556
- "title": {
1557
- "type": "string"
1558
- },
1559
1814
  "additionalProperties": {
1560
1815
  "type": "object",
1561
1816
  "additionalProperties": {
1562
- "type": "object"
1817
+ "$ref": "#/components/schemas/jsonElement"
1563
1818
  }
1564
1819
  }
1565
1820
  }
@@ -1569,11 +1824,18 @@
1569
1824
  "properties": {
1570
1825
  "type": {
1571
1826
  "enum": [
1572
- "onboarding",
1573
- "offboarding"
1827
+ 1,
1828
+ 2
1574
1829
  ],
1575
- "type": "string",
1576
- "default": "onboarding"
1830
+ "type": "integer",
1831
+ "format": "int32",
1832
+ "default": 1
1833
+ },
1834
+ "title": {
1835
+ "type": "string"
1836
+ },
1837
+ "descriptionOption": {
1838
+ "$ref": "#/components/schemas/option_list`1"
1577
1839
  },
1578
1840
  "description": {
1579
1841
  "type": "array",
@@ -1581,21 +1843,24 @@
1581
1843
  "type": "object"
1582
1844
  }
1583
1845
  },
1846
+ "reminderSlackChannelOption": {
1847
+ "$ref": "#/components/schemas/option_string"
1848
+ },
1584
1849
  "reminderSlackChannel": {
1585
1850
  "type": "string"
1586
1851
  },
1852
+ "reminderWeeksBeforeOption": {
1853
+ "$ref": "#/components/schemas/option_nullable`1"
1854
+ },
1587
1855
  "reminderWeeksBefore": {
1588
1856
  "type": "number",
1589
1857
  "format": "double",
1590
1858
  "nullable": true
1591
1859
  },
1592
- "title": {
1593
- "type": "string"
1594
- },
1595
1860
  "additionalProperties": {
1596
1861
  "type": "object",
1597
1862
  "additionalProperties": {
1598
- "type": "object"
1863
+ "$ref": "#/components/schemas/jsonElement"
1599
1864
  }
1600
1865
  }
1601
1866
  }
@@ -1605,32 +1870,21 @@
1605
1870
  "properties": {
1606
1871
  "sanityType": {
1607
1872
  "enum": [
1608
- "sanity.fileAsset"
1873
+ 1
1609
1874
  ],
1610
- "type": "string",
1611
- "default": "sanity.fileAsset"
1612
- },
1613
- "altText": {
1614
- "type": "string"
1875
+ "type": "integer",
1876
+ "format": "int32",
1877
+ "default": 1
1615
1878
  },
1616
1879
  "assetId": {
1617
1880
  "type": "string"
1618
1881
  },
1619
- "description": {
1620
- "type": "string"
1621
- },
1622
1882
  "extension": {
1623
1883
  "type": "string"
1624
1884
  },
1625
- "label": {
1626
- "type": "string"
1627
- },
1628
1885
  "mimeType": {
1629
1886
  "type": "string"
1630
1887
  },
1631
- "originalFilename": {
1632
- "type": "string"
1633
- },
1634
1888
  "path": {
1635
1889
  "type": "string"
1636
1890
  },
@@ -1653,16 +1907,49 @@
1653
1907
  "type": "number",
1654
1908
  "format": "double"
1655
1909
  },
1910
+ "url": {
1911
+ "type": "string"
1912
+ },
1913
+ "altTextOption": {
1914
+ "$ref": "#/components/schemas/option_string"
1915
+ },
1916
+ "altText": {
1917
+ "type": "string"
1918
+ },
1919
+ "descriptionOption": {
1920
+ "$ref": "#/components/schemas/option_string"
1921
+ },
1922
+ "description": {
1923
+ "type": "string"
1924
+ },
1925
+ "labelOption": {
1926
+ "$ref": "#/components/schemas/option_string"
1927
+ },
1928
+ "label": {
1929
+ "type": "string"
1930
+ },
1931
+ "originalFilenameOption": {
1932
+ "$ref": "#/components/schemas/option_string"
1933
+ },
1934
+ "originalFilename": {
1935
+ "type": "string"
1936
+ },
1937
+ "sourceOption": {
1938
+ "$ref": "#/components/schemas/option_sanityAssetSourceData"
1939
+ },
1656
1940
  "source": {
1657
1941
  "$ref": "#/components/schemas/sanityAssetSourceData"
1658
1942
  },
1943
+ "titleOption": {
1944
+ "$ref": "#/components/schemas/option_string"
1945
+ },
1659
1946
  "title": {
1660
1947
  "type": "string"
1661
1948
  },
1662
- "uploadId": {
1663
- "type": "string"
1949
+ "uploadIdOption": {
1950
+ "$ref": "#/components/schemas/option_string"
1664
1951
  },
1665
- "url": {
1952
+ "uploadId": {
1666
1953
  "type": "string"
1667
1954
  }
1668
1955
  }
@@ -1672,10 +1959,11 @@
1672
1959
  "properties": {
1673
1960
  "sanityType": {
1674
1961
  "enum": [
1675
- "employee"
1962
+ 1
1676
1963
  ],
1677
- "type": "string",
1678
- "default": "employee"
1964
+ "type": "integer",
1965
+ "format": "int32",
1966
+ "default": 1
1679
1967
  },
1680
1968
  "email": {
1681
1969
  "type": "string"
@@ -1692,14 +1980,14 @@
1692
1980
  "slug": {
1693
1981
  "$ref": "#/components/schemas/slug"
1694
1982
  },
1983
+ "telephone": {
1984
+ "type": "string"
1985
+ },
1695
1986
  "tags": {
1696
1987
  "type": "array",
1697
1988
  "items": {
1698
1989
  "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
1699
1990
  }
1700
- },
1701
- "telephone": {
1702
- "type": "string"
1703
1991
  }
1704
1992
  }
1705
1993
  },
@@ -1708,16 +1996,21 @@
1708
1996
  "properties": {
1709
1997
  "sanityType": {
1710
1998
  "enum": [
1711
- "reference"
1999
+ 1
1712
2000
  ],
1713
- "type": "string",
1714
- "default": "reference"
2001
+ "type": "integer",
2002
+ "format": "int32",
2003
+ "default": 1
1715
2004
  },
1716
2005
  "sanityRef": {
1717
2006
  "type": "string"
1718
2007
  },
2008
+ "sanityWeakOption": {
2009
+ "$ref": "#/components/schemas/option_nullable`1"
2010
+ },
1719
2011
  "sanityWeak": {
1720
- "type": "boolean"
2012
+ "type": "boolean",
2013
+ "nullable": true
1721
2014
  }
1722
2015
  }
1723
2016
  },
@@ -1726,16 +2019,21 @@
1726
2019
  "properties": {
1727
2020
  "sanityType": {
1728
2021
  "enum": [
1729
- "reference"
2022
+ 1
1730
2023
  ],
1731
- "type": "string",
1732
- "default": "reference"
2024
+ "type": "integer",
2025
+ "format": "int32",
2026
+ "default": 1
1733
2027
  },
1734
2028
  "sanityRef": {
1735
2029
  "type": "string"
1736
2030
  },
2031
+ "sanityWeakOption": {
2032
+ "$ref": "#/components/schemas/option_nullable`1"
2033
+ },
1737
2034
  "sanityWeak": {
1738
- "type": "boolean"
2035
+ "type": "boolean",
2036
+ "nullable": true
1739
2037
  }
1740
2038
  }
1741
2039
  },
@@ -1744,10 +2042,11 @@
1744
2042
  "properties": {
1745
2043
  "sanityType": {
1746
2044
  "enum": [
1747
- "sanity.imageCrop"
2045
+ 1
1748
2046
  ],
1749
- "type": "string",
1750
- "default": "sanity.imageCrop"
2047
+ "type": "integer",
2048
+ "format": "int32",
2049
+ "default": 1
1751
2050
  },
1752
2051
  "bottom": {
1753
2052
  "type": "number",
@@ -1772,10 +2071,11 @@
1772
2071
  "properties": {
1773
2072
  "sanityType": {
1774
2073
  "enum": [
1775
- "sanity.imageHotspot"
2074
+ 1
1776
2075
  ],
1777
- "type": "string",
1778
- "default": "sanity.imageHotspot"
2076
+ "type": "integer",
2077
+ "format": "int32",
2078
+ "default": 1
1779
2079
  },
1780
2080
  "height": {
1781
2081
  "type": "number",
@@ -1800,26 +2100,21 @@
1800
2100
  "properties": {
1801
2101
  "sanityType": {
1802
2102
  "enum": [
1803
- "jobPosition"
2103
+ 1
1804
2104
  ],
1805
- "type": "string",
1806
- "default": "jobPosition"
2105
+ "type": "integer",
2106
+ "format": "int32",
2107
+ "default": 1
1807
2108
  },
1808
2109
  "askForGrades": {
1809
2110
  "type": "boolean"
1810
2111
  },
1811
- "deadline": {
1812
- "type": "string"
1813
- },
1814
2112
  "description": {
1815
2113
  "type": "array",
1816
2114
  "items": {
1817
2115
  "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
1818
2116
  }
1819
2117
  },
1820
- "image": {
1821
- "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
1822
- },
1823
2118
  "metaDescription": {
1824
2119
  "type": "string"
1825
2120
  },
@@ -1840,6 +2135,15 @@
1840
2135
  },
1841
2136
  "title": {
1842
2137
  "type": "string"
2138
+ },
2139
+ "deadlineOption": {
2140
+ "$ref": "#/components/schemas/option_string"
2141
+ },
2142
+ "deadline": {
2143
+ "type": "string"
2144
+ },
2145
+ "image": {
2146
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
1843
2147
  }
1844
2148
  }
1845
2149
  },
@@ -1848,10 +2152,11 @@
1848
2152
  "properties": {
1849
2153
  "type": {
1850
2154
  "enum": [
1851
- "onboarding"
2155
+ 1
1852
2156
  ],
1853
- "type": "string",
1854
- "default": "onboarding"
2157
+ "type": "integer",
2158
+ "format": "int32",
2159
+ "default": 1
1855
2160
  },
1856
2161
  "reminderSlackChannel": {
1857
2162
  "type": "string"
@@ -1881,7 +2186,7 @@
1881
2186
  "additionalProperties": {
1882
2187
  "type": "object",
1883
2188
  "additionalProperties": {
1884
- "type": "object"
2189
+ "$ref": "#/components/schemas/jsonElement"
1885
2190
  }
1886
2191
  }
1887
2192
  }
@@ -1889,129 +2194,213 @@
1889
2194
  "sanityPatchCandidate": {
1890
2195
  "type": "object",
1891
2196
  "properties": {
2197
+ "sanityTypeOption": {
2198
+ "$ref": "#/components/schemas/option_nullable`1"
2199
+ },
1892
2200
  "sanityType": {
1893
2201
  "enum": [
1894
- "candidate"
2202
+ 1
1895
2203
  ],
1896
- "type": "string",
1897
- "default": "candidate",
2204
+ "type": "integer",
2205
+ "format": "int32",
2206
+ "default": 1,
1898
2207
  "nullable": true
1899
2208
  },
2209
+ "statusOption": {
2210
+ "$ref": "#/components/schemas/option_nullable`1"
2211
+ },
1900
2212
  "status": {
1901
2213
  "enum": [
1902
- "CREATED",
1903
- "INTRODUCTION",
1904
- "OFFER",
1905
- "SIGNED",
1906
- "ONBOARDING",
1907
- "USER_CREATION_REVIEW",
1908
- "OFFBOARDING",
1909
- "REJECTED"
2214
+ 1,
2215
+ 2,
2216
+ 3,
2217
+ 4,
2218
+ 5,
2219
+ 6,
2220
+ 7,
2221
+ 8
1910
2222
  ],
1911
- "type": "string",
1912
- "default": "CREATED",
2223
+ "type": "integer",
2224
+ "format": "int32",
2225
+ "default": 1,
1913
2226
  "nullable": true
1914
2227
  },
2228
+ "trackOption": {
2229
+ "$ref": "#/components/schemas/option_nullable`1"
2230
+ },
1915
2231
  "track": {
1916
2232
  "enum": [
1917
- "developer",
1918
- "data_engineer"
2233
+ 1,
2234
+ 2
1919
2235
  ],
1920
- "type": "string",
1921
- "default": "developer",
2236
+ "type": "integer",
2237
+ "format": "int32",
2238
+ "default": 1,
1922
2239
  "nullable": true
1923
2240
  },
2241
+ "addressOption": {
2242
+ "$ref": "#/components/schemas/option_sanityPatchCandidateAddress"
2243
+ },
1924
2244
  "address": {
1925
2245
  "$ref": "#/components/schemas/sanityPatchCandidateAddress"
1926
2246
  },
2247
+ "applicationLetterOption": {
2248
+ "$ref": "#/components/schemas/option_sanityPatchCandidateApplicationLetter"
2249
+ },
1927
2250
  "applicationLetter": {
1928
2251
  "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
1929
2252
  },
2253
+ "applicationOtherOption": {
2254
+ "$ref": "#/components/schemas/option_string"
2255
+ },
1930
2256
  "applicationOther": {
1931
2257
  "type": "string"
1932
2258
  },
2259
+ "bankAccountOption": {
2260
+ "$ref": "#/components/schemas/option_string"
2261
+ },
1933
2262
  "bankAccount": {
1934
2263
  "type": "string"
1935
2264
  },
2265
+ "buddyOption": {
2266
+ "$ref": "#/components/schemas/option_employeeReference"
2267
+ },
1936
2268
  "buddy": {
1937
2269
  "$ref": "#/components/schemas/employeeReference"
1938
2270
  },
2271
+ "candidateOption": {
2272
+ "$ref": "#/components/schemas/option_string"
2273
+ },
1939
2274
  "candidate": {
1940
2275
  "type": "string"
1941
2276
  },
2277
+ "cvOption": {
2278
+ "$ref": "#/components/schemas/option_sanityPatchCandidateApplicationLetter"
2279
+ },
1942
2280
  "cv": {
1943
2281
  "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
1944
2282
  },
2283
+ "emailOption": {
2284
+ "$ref": "#/components/schemas/option_string"
2285
+ },
1945
2286
  "email": {
1946
2287
  "type": "string"
1947
2288
  },
2289
+ "employeeOption": {
2290
+ "$ref": "#/components/schemas/option_employeeReference"
2291
+ },
1948
2292
  "employee": {
1949
2293
  "$ref": "#/components/schemas/employeeReference"
1950
2294
  },
2295
+ "fromApplicationOption": {
2296
+ "$ref": "#/components/schemas/option_nullable`1"
2297
+ },
1951
2298
  "fromApplication": {
1952
2299
  "type": "boolean",
1953
2300
  "nullable": true
1954
2301
  },
2302
+ "githubUsernameOption": {
2303
+ "$ref": "#/components/schemas/option_string"
2304
+ },
1955
2305
  "githubUsername": {
1956
2306
  "type": "string"
1957
2307
  },
2308
+ "gradesOption": {
2309
+ "$ref": "#/components/schemas/option_sanityPatchCandidateApplicationLetter"
2310
+ },
1958
2311
  "grades": {
1959
2312
  "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
1960
2313
  },
2314
+ "offboardingChecklistOption": {
2315
+ "$ref": "#/components/schemas/option_list`1"
2316
+ },
1961
2317
  "offboardingChecklist": {
1962
2318
  "type": "array",
1963
2319
  "items": {
1964
2320
  "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1965
2321
  }
1966
2322
  },
2323
+ "onboardingChecklistOption": {
2324
+ "$ref": "#/components/schemas/option_list`1"
2325
+ },
1967
2326
  "onboardingChecklist": {
1968
2327
  "type": "array",
1969
2328
  "items": {
1970
2329
  "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1971
2330
  }
1972
2331
  },
2332
+ "ownershipOption": {
2333
+ "$ref": "#/components/schemas/option_nullable`1"
2334
+ },
1973
2335
  "ownership": {
1974
2336
  "type": "number",
1975
2337
  "format": "double",
1976
2338
  "nullable": true
1977
2339
  },
2340
+ "preferredDisplayNameOption": {
2341
+ "$ref": "#/components/schemas/option_string"
2342
+ },
1978
2343
  "preferredDisplayName": {
1979
2344
  "type": "string"
1980
2345
  },
2346
+ "preferredEmailOption": {
2347
+ "$ref": "#/components/schemas/option_string"
2348
+ },
1981
2349
  "preferredEmail": {
1982
2350
  "type": "string"
1983
2351
  },
2352
+ "profileImageOption": {
2353
+ "$ref": "#/components/schemas/option_sanityPatchPageMetaImage"
2354
+ },
1984
2355
  "profileImage": {
1985
2356
  "$ref": "#/components/schemas/sanityPatchPageMetaImage"
1986
2357
  },
2358
+ "recruiterOption": {
2359
+ "$ref": "#/components/schemas/option_employeeReference"
2360
+ },
1987
2361
  "recruiter": {
1988
2362
  "$ref": "#/components/schemas/employeeReference"
1989
2363
  },
2364
+ "referencesOption": {
2365
+ "$ref": "#/components/schemas/option_list`1"
2366
+ },
1990
2367
  "references": {
1991
2368
  "type": "array",
1992
2369
  "items": {
1993
2370
  "$ref": "#/components/schemas/sanityCandidateReferencesInner"
1994
2371
  }
1995
2372
  },
2373
+ "shortUrlOption": {
2374
+ "$ref": "#/components/schemas/option_string"
2375
+ },
1996
2376
  "shortUrl": {
1997
2377
  "type": "string"
1998
2378
  },
2379
+ "systemsActiveOption": {
2380
+ "$ref": "#/components/schemas/option_list`1"
2381
+ },
1999
2382
  "systemsActive": {
2000
2383
  "type": "array",
2001
2384
  "items": {
2002
2385
  "$ref": "#/components/schemas/sanityPatchCandidateSystemsActiveInner"
2003
2386
  }
2004
2387
  },
2388
+ "telephoneOption": {
2389
+ "$ref": "#/components/schemas/option_string"
2390
+ },
2005
2391
  "telephone": {
2006
2392
  "type": "string"
2007
2393
  },
2394
+ "urlOption": {
2395
+ "$ref": "#/components/schemas/option_string"
2396
+ },
2008
2397
  "url": {
2009
2398
  "type": "string"
2010
2399
  },
2011
2400
  "additionalProperties": {
2012
2401
  "type": "object",
2013
2402
  "additionalProperties": {
2014
- "type": "object"
2403
+ "$ref": "#/components/schemas/jsonElement"
2015
2404
  }
2016
2405
  }
2017
2406
  }
@@ -2019,12 +2408,21 @@
2019
2408
  "sanityPatchCandidateAddress": {
2020
2409
  "type": "object",
2021
2410
  "properties": {
2411
+ "cityOption": {
2412
+ "$ref": "#/components/schemas/option_string"
2413
+ },
2022
2414
  "city": {
2023
2415
  "type": "string"
2024
2416
  },
2417
+ "postalCodeOption": {
2418
+ "$ref": "#/components/schemas/option_string"
2419
+ },
2025
2420
  "postalCode": {
2026
2421
  "type": "string"
2027
2422
  },
2423
+ "streetOption": {
2424
+ "$ref": "#/components/schemas/option_string"
2425
+ },
2028
2426
  "street": {
2029
2427
  "type": "string"
2030
2428
  }
@@ -2035,14 +2433,21 @@
2035
2433
  "properties": {
2036
2434
  "sanityType": {
2037
2435
  "enum": [
2038
- "file"
2436
+ 1
2039
2437
  ],
2040
- "type": "string",
2041
- "default": "file"
2438
+ "type": "integer",
2439
+ "format": "int32",
2440
+ "default": 1
2441
+ },
2442
+ "assetOption": {
2443
+ "$ref": "#/components/schemas/option_sanityFileAssetReference"
2042
2444
  },
2043
2445
  "asset": {
2044
2446
  "$ref": "#/components/schemas/sanityFileAssetReference"
2045
2447
  },
2448
+ "mediaOption": {
2449
+ "$ref": "#/components/schemas/option_object"
2450
+ },
2046
2451
  "media": {
2047
2452
  "type": "object"
2048
2453
  }
@@ -2053,10 +2458,11 @@
2053
2458
  "properties": {
2054
2459
  "sanityType": {
2055
2460
  "enum": [
2056
- "reference"
2461
+ 1
2057
2462
  ],
2058
- "type": "string",
2059
- "default": "reference"
2463
+ "type": "integer",
2464
+ "format": "int32",
2465
+ "default": 1
2060
2466
  },
2061
2467
  "sanityKey": {
2062
2468
  "type": "string"
@@ -2064,8 +2470,12 @@
2064
2470
  "sanityRef": {
2065
2471
  "type": "string"
2066
2472
  },
2473
+ "sanityWeakOption": {
2474
+ "$ref": "#/components/schemas/option_nullable`1"
2475
+ },
2067
2476
  "sanityWeak": {
2068
- "type": "boolean"
2477
+ "type": "boolean",
2478
+ "nullable": true
2069
2479
  }
2070
2480
  }
2071
2481
  },
@@ -2074,20 +2484,33 @@
2074
2484
  "properties": {
2075
2485
  "sanityType": {
2076
2486
  "enum": [
2077
- "image"
2487
+ 1
2078
2488
  ],
2079
- "type": "string",
2080
- "default": "image"
2489
+ "type": "integer",
2490
+ "format": "int32",
2491
+ "default": 1
2492
+ },
2493
+ "assetOption": {
2494
+ "$ref": "#/components/schemas/option_sanityImageAssetReference"
2081
2495
  },
2082
2496
  "asset": {
2083
2497
  "$ref": "#/components/schemas/sanityImageAssetReference"
2084
2498
  },
2499
+ "cropOption": {
2500
+ "$ref": "#/components/schemas/option_sanityImageCrop"
2501
+ },
2085
2502
  "crop": {
2086
2503
  "$ref": "#/components/schemas/sanityImageCrop"
2087
2504
  },
2505
+ "hotspotOption": {
2506
+ "$ref": "#/components/schemas/option_sanityImageHotspot"
2507
+ },
2088
2508
  "hotspot": {
2089
2509
  "$ref": "#/components/schemas/sanityImageHotspot"
2090
2510
  },
2511
+ "mediaOption": {
2512
+ "$ref": "#/components/schemas/option_object"
2513
+ },
2091
2514
  "media": {
2092
2515
  "type": "object"
2093
2516
  }
@@ -2096,25 +2519,34 @@
2096
2519
  "sanityPatchSystem": {
2097
2520
  "type": "object",
2098
2521
  "properties": {
2522
+ "descriptionOption": {
2523
+ "$ref": "#/components/schemas/option_list`1"
2524
+ },
2099
2525
  "description": {
2100
2526
  "type": "array",
2101
2527
  "items": {
2102
2528
  "type": "object"
2103
2529
  }
2104
2530
  },
2531
+ "linksOption": {
2532
+ "$ref": "#/components/schemas/option_list`1"
2533
+ },
2105
2534
  "links": {
2106
2535
  "type": "array",
2107
2536
  "items": {
2108
2537
  "type": "string"
2109
2538
  }
2110
2539
  },
2540
+ "titleOption": {
2541
+ "$ref": "#/components/schemas/option_string"
2542
+ },
2111
2543
  "title": {
2112
2544
  "type": "string"
2113
2545
  },
2114
2546
  "additionalProperties": {
2115
2547
  "type": "object",
2116
2548
  "additionalProperties": {
2117
- "type": "object"
2549
+ "$ref": "#/components/schemas/jsonElement"
2118
2550
  }
2119
2551
  }
2120
2552
  }
@@ -2122,36 +2554,52 @@
2122
2554
  "sanityPatchTask": {
2123
2555
  "type": "object",
2124
2556
  "properties": {
2557
+ "typeOption": {
2558
+ "$ref": "#/components/schemas/option_nullable`1"
2559
+ },
2125
2560
  "type": {
2126
2561
  "enum": [
2127
- "onboarding",
2128
- "offboarding"
2562
+ 1,
2563
+ 2
2129
2564
  ],
2130
- "type": "string",
2131
- "default": "onboarding",
2565
+ "type": "integer",
2566
+ "format": "int32",
2567
+ "default": 1,
2132
2568
  "nullable": true
2133
2569
  },
2570
+ "descriptionOption": {
2571
+ "$ref": "#/components/schemas/option_list`1"
2572
+ },
2134
2573
  "description": {
2135
2574
  "type": "array",
2136
2575
  "items": {
2137
2576
  "type": "object"
2138
2577
  }
2139
2578
  },
2579
+ "reminderSlackChannelOption": {
2580
+ "$ref": "#/components/schemas/option_string"
2581
+ },
2140
2582
  "reminderSlackChannel": {
2141
2583
  "type": "string"
2142
2584
  },
2585
+ "reminderWeeksBeforeOption": {
2586
+ "$ref": "#/components/schemas/option_nullable`1"
2587
+ },
2143
2588
  "reminderWeeksBefore": {
2144
2589
  "type": "number",
2145
2590
  "format": "double",
2146
2591
  "nullable": true
2147
2592
  },
2593
+ "titleOption": {
2594
+ "$ref": "#/components/schemas/option_string"
2595
+ },
2148
2596
  "title": {
2149
2597
  "type": "string"
2150
2598
  },
2151
2599
  "additionalProperties": {
2152
2600
  "type": "object",
2153
2601
  "additionalProperties": {
2154
- "type": "object"
2602
+ "$ref": "#/components/schemas/jsonElement"
2155
2603
  }
2156
2604
  }
2157
2605
  }
@@ -2161,25 +2609,11 @@
2161
2609
  "properties": {
2162
2610
  "sanityType": {
2163
2611
  "enum": [
2164
- "system"
2612
+ 1
2165
2613
  ],
2166
- "type": "string",
2167
- "default": "system"
2168
- },
2169
- "description": {
2170
- "type": "array",
2171
- "items": {
2172
- "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
2173
- }
2174
- },
2175
- "image": {
2176
- "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
2177
- },
2178
- "links": {
2179
- "type": "array",
2180
- "items": {
2181
- "type": "string"
2182
- }
2614
+ "type": "integer",
2615
+ "format": "int32",
2616
+ "default": 1
2183
2617
  },
2184
2618
  "sanityCreatedAt": {
2185
2619
  "type": "string"
@@ -2195,61 +2629,101 @@
2195
2629
  },
2196
2630
  "title": {
2197
2631
  "type": "string"
2632
+ },
2633
+ "descriptionOption": {
2634
+ "$ref": "#/components/schemas/option_list`1"
2635
+ },
2636
+ "description": {
2637
+ "type": "array",
2638
+ "items": {
2639
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
2640
+ }
2641
+ },
2642
+ "image": {
2643
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
2644
+ },
2645
+ "linksOption": {
2646
+ "$ref": "#/components/schemas/option_list`1"
2647
+ },
2648
+ "links": {
2649
+ "type": "array",
2650
+ "items": {
2651
+ "type": "string"
2652
+ }
2198
2653
  }
2199
2654
  }
2200
2655
  },
2201
2656
  "sanitySystemsInnerDescriptionInner": {
2202
2657
  "type": "object",
2203
2658
  "properties": {
2204
- "listItem": {
2659
+ "sanityType": {
2205
2660
  "enum": [
2206
- "bullet",
2207
- "number"
2661
+ 1
2208
2662
  ],
2209
- "type": "string",
2210
- "default": "bullet",
2211
- "nullable": true
2663
+ "type": "integer",
2664
+ "format": "int32",
2665
+ "default": 1
2212
2666
  },
2213
- "sanityType": {
2667
+ "listItemOption": {
2668
+ "$ref": "#/components/schemas/option_nullable`1"
2669
+ },
2670
+ "listItem": {
2214
2671
  "enum": [
2215
- "block"
2672
+ 1,
2673
+ 2
2216
2674
  ],
2217
- "type": "string",
2218
- "default": "block"
2675
+ "type": "integer",
2676
+ "format": "int32",
2677
+ "default": 1,
2678
+ "nullable": true
2679
+ },
2680
+ "styleOption": {
2681
+ "$ref": "#/components/schemas/option_nullable`1"
2219
2682
  },
2220
2683
  "style": {
2221
2684
  "enum": [
2222
- "blockquote",
2223
- "h1",
2224
- "h2",
2225
- "h3",
2226
- "h4",
2227
- "h5",
2228
- "h6",
2229
- "normal"
2685
+ 1,
2686
+ 2,
2687
+ 3,
2688
+ 4,
2689
+ 5,
2690
+ 6,
2691
+ 7,
2692
+ 8
2230
2693
  ],
2231
- "type": "string",
2232
- "default": "blockquote",
2694
+ "type": "integer",
2695
+ "format": "int32",
2696
+ "default": 1,
2233
2697
  "nullable": true
2234
2698
  },
2699
+ "sanityKey": {
2700
+ "type": "string"
2701
+ },
2702
+ "childrenOption": {
2703
+ "$ref": "#/components/schemas/option_list`1"
2704
+ },
2235
2705
  "children": {
2236
2706
  "type": "array",
2237
2707
  "items": {
2238
2708
  "$ref": "#/components/schemas/componentBlocksInnerOneOfChildrenInner"
2239
2709
  }
2240
2710
  },
2711
+ "levelOption": {
2712
+ "$ref": "#/components/schemas/option_nullable`1"
2713
+ },
2241
2714
  "level": {
2242
2715
  "type": "number",
2243
- "format": "double"
2716
+ "format": "double",
2717
+ "nullable": true
2718
+ },
2719
+ "markDefsOption": {
2720
+ "$ref": "#/components/schemas/option_list`1"
2244
2721
  },
2245
2722
  "markDefs": {
2246
2723
  "type": "array",
2247
2724
  "items": {
2248
2725
  "$ref": "#/components/schemas/componentBlocksInnerOneOfMarkDefsInner"
2249
2726
  }
2250
- },
2251
- "sanityKey": {
2252
- "type": "string"
2253
2727
  }
2254
2728
  }
2255
2729
  },
@@ -2258,25 +2732,12 @@
2258
2732
  "properties": {
2259
2733
  "type": {
2260
2734
  "enum": [
2261
- "onboarding",
2262
- "offboarding"
2735
+ 1,
2736
+ 2
2263
2737
  ],
2264
- "type": "string",
2265
- "default": "onboarding"
2266
- },
2267
- "description": {
2268
- "type": "array",
2269
- "items": {
2270
- "type": "object"
2271
- }
2272
- },
2273
- "reminderSlackChannel": {
2274
- "type": "string"
2275
- },
2276
- "reminderWeeksBefore": {
2277
- "type": "number",
2278
- "format": "double",
2279
- "nullable": true
2738
+ "type": "integer",
2739
+ "format": "int32",
2740
+ "default": 1
2280
2741
  },
2281
2742
  "sanityCreatedAt": {
2282
2743
  "type": "string"
@@ -2296,10 +2757,24 @@
2296
2757
  "title": {
2297
2758
  "type": "string"
2298
2759
  },
2760
+ "description": {
2761
+ "type": "array",
2762
+ "items": {
2763
+ "type": "object"
2764
+ }
2765
+ },
2766
+ "reminderSlackChannel": {
2767
+ "type": "string"
2768
+ },
2769
+ "reminderWeeksBefore": {
2770
+ "type": "number",
2771
+ "format": "double",
2772
+ "nullable": true
2773
+ },
2299
2774
  "additionalProperties": {
2300
2775
  "type": "object",
2301
2776
  "additionalProperties": {
2302
- "type": "object"
2777
+ "$ref": "#/components/schemas/jsonElement"
2303
2778
  }
2304
2779
  }
2305
2780
  }
@@ -2309,10 +2784,11 @@
2309
2784
  "properties": {
2310
2785
  "sanityType": {
2311
2786
  "enum": [
2312
- "tag"
2787
+ 1
2313
2788
  ],
2314
- "type": "string",
2315
- "default": "tag"
2789
+ "type": "integer",
2790
+ "format": "int32",
2791
+ "default": 1
2316
2792
  },
2317
2793
  "name": {
2318
2794
  "type": "string"
@@ -2330,10 +2806,11 @@
2330
2806
  "properties": {
2331
2807
  "sanityType": {
2332
2808
  "enum": [
2333
- "image"
2809
+ 1
2334
2810
  ],
2335
- "type": "string",
2336
- "default": "image"
2811
+ "type": "integer",
2812
+ "format": "int32",
2813
+ "default": 1
2337
2814
  },
2338
2815
  "asset": {
2339
2816
  "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
@@ -2345,10 +2822,11 @@
2345
2822
  "properties": {
2346
2823
  "sanityType": {
2347
2824
  "enum": [
2348
- "image"
2825
+ 1
2349
2826
  ],
2350
- "type": "string",
2351
- "default": "image"
2827
+ "type": "integer",
2828
+ "format": "int32",
2829
+ "default": 1
2352
2830
  },
2353
2831
  "asset": {
2354
2832
  "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
@@ -2360,22 +2838,23 @@
2360
2838
  "properties": {
2361
2839
  "sanityType": {
2362
2840
  "enum": [
2363
- "sanity.imageAsset"
2841
+ 1
2364
2842
  ],
2365
- "type": "string",
2366
- "default": "sanity.imageAsset"
2843
+ "type": "integer",
2844
+ "format": "int32",
2845
+ "default": 1
2367
2846
  },
2368
2847
  "mimeType": {
2369
2848
  "type": "string"
2370
2849
  },
2371
- "originalFilename": {
2372
- "type": "string"
2373
- },
2374
2850
  "sanityId": {
2375
2851
  "type": "string"
2376
2852
  },
2377
2853
  "url": {
2378
2854
  "type": "string"
2855
+ },
2856
+ "originalFilename": {
2857
+ "type": "string"
2379
2858
  }
2380
2859
  }
2381
2860
  },
@@ -2384,14 +2863,18 @@
2384
2863
  "properties": {
2385
2864
  "sanityType": {
2386
2865
  "enum": [
2387
- "slug"
2866
+ 1
2388
2867
  ],
2389
- "type": "string",
2390
- "default": "slug"
2868
+ "type": "integer",
2869
+ "format": "int32",
2870
+ "default": 1
2391
2871
  },
2392
2872
  "current": {
2393
2873
  "type": "string"
2394
2874
  },
2875
+ "sourceOption": {
2876
+ "$ref": "#/components/schemas/option_string"
2877
+ },
2395
2878
  "source": {
2396
2879
  "type": "string"
2397
2880
  }