@snokam/mcp-api 0.14.0 → 0.16.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.
@@ -82,7 +82,7 @@
82
82
  "content": {
83
83
  "application/json": {
84
84
  "schema": {
85
- "$ref": "#/components/schemas/sanityCreateCandidateInput"
85
+ "$ref": "#/components/schemas/createCandidateInput"
86
86
  }
87
87
  }
88
88
  },
@@ -637,13 +637,13 @@
637
637
  "operationId": "ListSystems",
638
638
  "responses": {
639
639
  "200": {
640
- "description": "Payload of Array of SanitySystems",
640
+ "description": "Payload of Array of SanitySystemsInner",
641
641
  "content": {
642
642
  "application/json": {
643
643
  "schema": {
644
644
  "type": "array",
645
645
  "items": {
646
- "$ref": "#/components/schemas/sanitySystems"
646
+ "$ref": "#/components/schemas/sanitySystemsInner"
647
647
  }
648
648
  }
649
649
  }
@@ -682,11 +682,11 @@
682
682
  },
683
683
  "responses": {
684
684
  "200": {
685
- "description": "Payload of SanitySystems",
685
+ "description": "Payload of SanitySystemsInner",
686
686
  "content": {
687
687
  "application/json": {
688
688
  "schema": {
689
- "$ref": "#/components/schemas/sanitySystems"
689
+ "$ref": "#/components/schemas/sanitySystemsInner"
690
690
  }
691
691
  }
692
692
  },
@@ -1064,11 +1064,11 @@
1064
1064
  },
1065
1065
  "responses": {
1066
1066
  "200": {
1067
- "description": "Payload of SanitySystems",
1067
+ "description": "Payload of SanitySystemsInner",
1068
1068
  "content": {
1069
1069
  "application/json": {
1070
1070
  "schema": {
1071
- "$ref": "#/components/schemas/sanitySystems"
1071
+ "$ref": "#/components/schemas/sanitySystemsInner"
1072
1072
  }
1073
1073
  }
1074
1074
  },
@@ -1120,11 +1120,11 @@
1120
1120
  ],
1121
1121
  "responses": {
1122
1122
  "200": {
1123
- "description": "Payload of SanitySystems",
1123
+ "description": "Payload of SanitySystemsInner",
1124
1124
  "content": {
1125
1125
  "application/json": {
1126
1126
  "schema": {
1127
- "$ref": "#/components/schemas/sanitySystems"
1127
+ "$ref": "#/components/schemas/sanitySystemsInner"
1128
1128
  }
1129
1129
  }
1130
1130
  },
@@ -1199,6 +1199,102 @@
1199
1199
  }
1200
1200
  }
1201
1201
  },
1202
+ "componentBlocksInnerOneOfChildrenInner": {
1203
+ "type": "object",
1204
+ "properties": {
1205
+ "sanityType": {
1206
+ "enum": [
1207
+ "span"
1208
+ ],
1209
+ "type": "string",
1210
+ "default": "span"
1211
+ },
1212
+ "marks": {
1213
+ "type": "array",
1214
+ "items": {
1215
+ "type": "string"
1216
+ }
1217
+ },
1218
+ "sanityKey": {
1219
+ "type": "string"
1220
+ },
1221
+ "text": {
1222
+ "type": "string"
1223
+ }
1224
+ }
1225
+ },
1226
+ "componentBlocksInnerOneOfMarkDefsInner": {
1227
+ "type": "object",
1228
+ "properties": {
1229
+ "sanityType": {
1230
+ "enum": [
1231
+ "link"
1232
+ ],
1233
+ "type": "string",
1234
+ "default": "link"
1235
+ },
1236
+ "href": {
1237
+ "type": "string"
1238
+ },
1239
+ "sanityKey": {
1240
+ "type": "string"
1241
+ }
1242
+ }
1243
+ },
1244
+ "createCandidateInput": {
1245
+ "type": "object",
1246
+ "properties": {
1247
+ "status": {
1248
+ "enum": [
1249
+ "CREATED",
1250
+ "INTRODUCTION",
1251
+ "OFFER",
1252
+ "SIGNED",
1253
+ "ONBOARDING",
1254
+ "USER_CREATION_REVIEW",
1255
+ "OFFBOARDING",
1256
+ "REJECTED"
1257
+ ],
1258
+ "type": "string",
1259
+ "default": "CREATED"
1260
+ },
1261
+ "track": {
1262
+ "enum": [
1263
+ "developer",
1264
+ "data_engineer"
1265
+ ],
1266
+ "type": "string",
1267
+ "default": "developer"
1268
+ },
1269
+ "candidate": {
1270
+ "type": "string"
1271
+ },
1272
+ "additionalProperties": {
1273
+ "type": "object",
1274
+ "additionalProperties": {
1275
+ "type": "object"
1276
+ }
1277
+ }
1278
+ }
1279
+ },
1280
+ "employeeReference": {
1281
+ "type": "object",
1282
+ "properties": {
1283
+ "sanityType": {
1284
+ "enum": [
1285
+ "reference"
1286
+ ],
1287
+ "type": "string",
1288
+ "default": "reference"
1289
+ },
1290
+ "sanityRef": {
1291
+ "type": "string"
1292
+ },
1293
+ "sanityWeak": {
1294
+ "type": "boolean"
1295
+ }
1296
+ }
1297
+ },
1202
1298
  "onboardingResult": {
1203
1299
  "type": "object",
1204
1300
  "properties": {
@@ -1225,11 +1321,12 @@
1225
1321
  "sanityAssetSourceData": {
1226
1322
  "type": "object",
1227
1323
  "properties": {
1228
- "additionalData": {
1229
- "type": "object",
1230
- "additionalProperties": {
1231
- "type": "object"
1232
- }
1324
+ "sanityType": {
1325
+ "enum": [
1326
+ "sanity.assetSourceData"
1327
+ ],
1328
+ "type": "string",
1329
+ "default": "sanity.assetSourceData"
1233
1330
  },
1234
1331
  "id": {
1235
1332
  "type": "string"
@@ -1237,15 +1334,6 @@
1237
1334
  "name": {
1238
1335
  "type": "string"
1239
1336
  },
1240
- "sanityType": {
1241
- "enum": [
1242
- 0
1243
- ],
1244
- "type": "integer",
1245
- "format": "int32",
1246
- "default": 0,
1247
- "nullable": true
1248
- },
1249
1337
  "url": {
1250
1338
  "type": "string"
1251
1339
  }
@@ -1254,17 +1342,18 @@
1254
1342
  "sanityBasicEmployee": {
1255
1343
  "type": "object",
1256
1344
  "properties": {
1257
- "additionalData": {
1258
- "type": "object",
1259
- "additionalProperties": {
1260
- "type": "object"
1261
- }
1345
+ "sanityType": {
1346
+ "enum": [
1347
+ "employee"
1348
+ ],
1349
+ "type": "string",
1350
+ "default": "employee"
1262
1351
  },
1263
1352
  "email": {
1264
1353
  "type": "string"
1265
1354
  },
1266
1355
  "image": {
1267
- "$ref": "#/components/schemas/sanityBasicEmployee_image"
1356
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1268
1357
  },
1269
1358
  "name": {
1270
1359
  "type": "string"
@@ -1272,22 +1361,13 @@
1272
1361
  "sanityId": {
1273
1362
  "type": "string"
1274
1363
  },
1275
- "sanityType": {
1276
- "enum": [
1277
- 0
1278
- ],
1279
- "type": "integer",
1280
- "format": "int32",
1281
- "default": 0,
1282
- "nullable": true
1283
- },
1284
1364
  "slug": {
1285
- "$ref": "#/components/schemas/sanitySlug"
1365
+ "$ref": "#/components/schemas/slug"
1286
1366
  },
1287
1367
  "tags": {
1288
1368
  "type": "array",
1289
1369
  "items": {
1290
- "$ref": "#/components/schemas/sanityBasicEmployee_tags"
1370
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
1291
1371
  }
1292
1372
  },
1293
1373
  "telephone": {
@@ -1295,104 +1375,43 @@
1295
1375
  }
1296
1376
  }
1297
1377
  },
1298
- "sanityBasicEmployee_image": {
1378
+ "sanityCandidate": {
1299
1379
  "type": "object",
1300
1380
  "properties": {
1301
- "additionalData": {
1302
- "type": "object",
1303
- "additionalProperties": {
1304
- "type": "object"
1305
- }
1306
- },
1307
- "asset": {
1308
- "$ref": "#/components/schemas/sanityBasicEmployee_image_asset"
1309
- },
1310
1381
  "sanityType": {
1311
1382
  "enum": [
1312
- 0
1383
+ "candidate"
1313
1384
  ],
1314
- "type": "integer",
1315
- "format": "int32",
1316
- "default": 0,
1317
- "nullable": true
1318
- }
1319
- }
1320
- },
1321
- "sanityBasicEmployee_image_asset": {
1322
- "type": "object",
1323
- "properties": {
1324
- "additionalData": {
1325
- "type": "object",
1326
- "additionalProperties": {
1327
- "type": "object"
1328
- }
1329
- },
1330
- "mimeType": {
1331
- "type": "string"
1385
+ "type": "string",
1386
+ "default": "candidate"
1332
1387
  },
1333
- "originalFilename": {
1334
- "type": "string"
1335
- },
1336
- "sanityId": {
1337
- "type": "string"
1338
- },
1339
- "sanityType": {
1388
+ "status": {
1340
1389
  "enum": [
1341
- 0
1390
+ "CREATED",
1391
+ "INTRODUCTION",
1392
+ "OFFBOARDING",
1393
+ "OFFER",
1394
+ "ONBOARDING",
1395
+ "REJECTED",
1396
+ "SIGNED",
1397
+ "USER_CREATION_REVIEW"
1342
1398
  ],
1343
- "type": "integer",
1344
- "format": "int32",
1345
- "default": 0,
1346
- "nullable": true
1347
- },
1348
- "url": {
1349
- "type": "string"
1350
- }
1351
- }
1352
- },
1353
- "sanityBasicEmployee_tags": {
1354
- "type": "object",
1355
- "properties": {
1356
- "additionalData": {
1357
- "type": "object",
1358
- "additionalProperties": {
1359
- "type": "object"
1360
- }
1361
- },
1362
- "name": {
1363
- "type": "string"
1399
+ "type": "string",
1400
+ "default": "CREATED"
1364
1401
  },
1365
- "sanityId": {
1366
- "type": "string"
1367
- },
1368
- "sanityType": {
1402
+ "track": {
1369
1403
  "enum": [
1370
- 0
1404
+ "data_engineer",
1405
+ "developer"
1371
1406
  ],
1372
- "type": "integer",
1373
- "format": "int32",
1374
- "default": 0,
1375
- "nullable": true
1376
- },
1377
- "slug": {
1378
- "$ref": "#/components/schemas/sanitySlug"
1379
- }
1380
- }
1381
- },
1382
- "sanityCandidate": {
1383
- "type": "object",
1384
- "properties": {
1385
- "additionalData": {
1386
- "type": "object",
1387
- "additionalProperties": {
1388
- "type": "object"
1389
- }
1407
+ "type": "string",
1408
+ "default": "data_engineer"
1390
1409
  },
1391
1410
  "address": {
1392
- "$ref": "#/components/schemas/sanityCandidate_address"
1411
+ "$ref": "#/components/schemas/sanityCandidateAddress"
1393
1412
  },
1394
1413
  "applicationLetter": {
1395
- "$ref": "#/components/schemas/sanityCandidate_applicationLetter"
1414
+ "$ref": "#/components/schemas/sanityCandidateGrades"
1396
1415
  },
1397
1416
  "applicationOther": {
1398
1417
  "type": "string"
@@ -1401,46 +1420,44 @@
1401
1420
  "type": "string"
1402
1421
  },
1403
1422
  "buddy": {
1404
- "$ref": "#/components/schemas/sanityCandidate_buddy"
1423
+ "$ref": "#/components/schemas/sanityEmployeeManager"
1405
1424
  },
1406
1425
  "candidate": {
1407
1426
  "type": "string"
1408
1427
  },
1409
1428
  "cv": {
1410
- "$ref": "#/components/schemas/sanityCandidate_cv"
1429
+ "$ref": "#/components/schemas/sanityCandidateGrades"
1411
1430
  },
1412
1431
  "email": {
1413
1432
  "type": "string"
1414
1433
  },
1415
1434
  "employee": {
1416
- "$ref": "#/components/schemas/sanityCandidate_employee"
1435
+ "$ref": "#/components/schemas/sanityEmployeeManager"
1417
1436
  },
1418
1437
  "fromApplication": {
1419
- "type": "boolean",
1420
- "nullable": true
1438
+ "type": "boolean"
1421
1439
  },
1422
1440
  "githubUsername": {
1423
1441
  "type": "string"
1424
1442
  },
1425
1443
  "grades": {
1426
- "$ref": "#/components/schemas/sanityCandidate_grades"
1444
+ "$ref": "#/components/schemas/sanityCandidateGrades"
1427
1445
  },
1428
1446
  "offboardingChecklist": {
1429
1447
  "type": "array",
1430
1448
  "items": {
1431
- "$ref": "#/components/schemas/sanityCandidate_offboardingChecklist"
1449
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1432
1450
  }
1433
1451
  },
1434
1452
  "onboardingChecklist": {
1435
1453
  "type": "array",
1436
1454
  "items": {
1437
- "$ref": "#/components/schemas/sanityCandidate_onboardingChecklist"
1455
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1438
1456
  }
1439
1457
  },
1440
1458
  "ownership": {
1441
1459
  "type": "number",
1442
- "format": "double",
1443
- "nullable": true
1460
+ "format": "double"
1444
1461
  },
1445
1462
  "preferredDisplayName": {
1446
1463
  "type": "string"
@@ -1449,15 +1466,15 @@
1449
1466
  "type": "string"
1450
1467
  },
1451
1468
  "profileImage": {
1452
- "$ref": "#/components/schemas/sanityCandidate_profileImage"
1469
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
1453
1470
  },
1454
1471
  "recruiter": {
1455
- "$ref": "#/components/schemas/sanityCandidate_recruiter"
1472
+ "$ref": "#/components/schemas/sanityEmployeeManager"
1456
1473
  },
1457
1474
  "references": {
1458
1475
  "type": "array",
1459
1476
  "items": {
1460
- "$ref": "#/components/schemas/sanityCandidate_references"
1477
+ "$ref": "#/components/schemas/sanityCandidateReferencesInner"
1461
1478
  }
1462
1479
  },
1463
1480
  "sanityCreatedAt": {
@@ -1469,15 +1486,6 @@
1469
1486
  "sanityRev": {
1470
1487
  "type": "string"
1471
1488
  },
1472
- "sanityType": {
1473
- "enum": [
1474
- 0
1475
- ],
1476
- "type": "integer",
1477
- "format": "int32",
1478
- "default": 0,
1479
- "nullable": true
1480
- },
1481
1489
  "sanityUpdatedAt": {
1482
1490
  "type": "string"
1483
1491
  },
@@ -1487,55 +1495,23 @@
1487
1495
  "startDate": {
1488
1496
  "type": "string"
1489
1497
  },
1490
- "status": {
1491
- "enum": [
1492
- 0,
1493
- 1,
1494
- 2,
1495
- 3,
1496
- 4,
1497
- 5,
1498
- 6,
1499
- 7
1500
- ],
1501
- "type": "integer",
1502
- "format": "int32",
1503
- "default": 0,
1504
- "nullable": true
1505
- },
1506
1498
  "systemsActive": {
1507
1499
  "type": "array",
1508
1500
  "items": {
1509
- "$ref": "#/components/schemas/sanityCandidate_systemsActive"
1501
+ "$ref": "#/components/schemas/sanitySystemsInner"
1510
1502
  }
1511
1503
  },
1512
1504
  "telephone": {
1513
1505
  "type": "string"
1514
1506
  },
1515
- "track": {
1516
- "enum": [
1517
- 0,
1518
- 1
1519
- ],
1520
- "type": "integer",
1521
- "format": "int32",
1522
- "default": 0,
1523
- "nullable": true
1524
- },
1525
1507
  "url": {
1526
1508
  "type": "string"
1527
1509
  }
1528
1510
  }
1529
1511
  },
1530
- "sanityCandidate_address": {
1512
+ "sanityCandidateAddress": {
1531
1513
  "type": "object",
1532
1514
  "properties": {
1533
- "additionalData": {
1534
- "type": "object",
1535
- "additionalProperties": {
1536
- "type": "object"
1537
- }
1538
- },
1539
1515
  "city": {
1540
1516
  "type": "string"
1541
1517
  },
@@ -1547,270 +1523,143 @@
1547
1523
  }
1548
1524
  }
1549
1525
  },
1550
- "sanityCandidate_applicationLetter": {
1526
+ "sanityCandidateGrades": {
1551
1527
  "type": "object",
1552
1528
  "properties": {
1553
- "additionalData": {
1554
- "type": "object",
1555
- "additionalProperties": {
1556
- "type": "object"
1557
- }
1529
+ "sanityType": {
1530
+ "enum": [
1531
+ "file"
1532
+ ],
1533
+ "type": "string",
1534
+ "default": "file"
1558
1535
  },
1559
1536
  "asset": {
1560
- "$ref": "#/components/schemas/sanityCandidate_applicationLetter_asset"
1537
+ "$ref": "#/components/schemas/sanityDocFileAsset"
1561
1538
  },
1562
1539
  "media": {
1563
- "$ref": "#/components/schemas/untypedNode"
1564
- },
1565
- "sanityType": {
1566
- "enum": [
1567
- 0
1568
- ],
1569
- "type": "integer",
1570
- "format": "int32",
1571
- "default": 0,
1572
- "nullable": true
1540
+ "type": "object"
1573
1541
  }
1574
1542
  }
1575
1543
  },
1576
- "sanityCandidate_applicationLetter_asset": {
1544
+ "sanityCandidateOffboardingChecklistInner": {
1577
1545
  "type": "object",
1578
1546
  "properties": {
1579
- "additionalData": {
1580
- "type": "object",
1581
- "additionalProperties": {
1582
- "type": "object"
1583
- }
1584
- },
1585
- "altText": {
1586
- "type": "string"
1587
- },
1588
- "assetId": {
1589
- "type": "string"
1590
- },
1591
- "description": {
1592
- "type": "string"
1593
- },
1594
- "extension": {
1595
- "type": "string"
1596
- },
1597
- "label": {
1598
- "type": "string"
1599
- },
1600
- "mimeType": {
1601
- "type": "string"
1602
- },
1603
- "originalFilename": {
1604
- "type": "string"
1605
- },
1606
- "path": {
1607
- "type": "string"
1608
- },
1609
- "sanityCreatedAt": {
1610
- "type": "string"
1547
+ "sanityType": {
1548
+ "enum": [
1549
+ "reference"
1550
+ ],
1551
+ "type": "string",
1552
+ "default": "reference"
1611
1553
  },
1612
- "sanityId": {
1554
+ "sanityKey": {
1613
1555
  "type": "string"
1614
1556
  },
1615
- "sanityRev": {
1557
+ "sanityRef": {
1616
1558
  "type": "string"
1617
1559
  },
1560
+ "sanityWeak": {
1561
+ "type": "boolean"
1562
+ }
1563
+ }
1564
+ },
1565
+ "sanityCandidateReferencesInner": {
1566
+ "type": "object",
1567
+ "properties": {
1618
1568
  "sanityType": {
1619
1569
  "enum": [
1620
- 0
1570
+ "candidateReference"
1621
1571
  ],
1622
- "type": "integer",
1623
- "format": "int32",
1624
- "default": 0,
1625
- "nullable": true
1572
+ "type": "string",
1573
+ "default": "candidateReference"
1626
1574
  },
1627
- "sanityUpdatedAt": {
1575
+ "details": {
1628
1576
  "type": "string"
1629
1577
  },
1630
- "sha1hash": {
1578
+ "email": {
1631
1579
  "type": "string"
1632
1580
  },
1633
- "size": {
1634
- "type": "number",
1635
- "format": "double",
1636
- "nullable": true
1637
- },
1638
- "source": {
1639
- "$ref": "#/components/schemas/sanityAssetSourceData"
1640
- },
1641
- "title": {
1581
+ "name": {
1642
1582
  "type": "string"
1643
1583
  },
1644
- "uploadId": {
1584
+ "phone": {
1645
1585
  "type": "string"
1646
1586
  },
1647
- "url": {
1587
+ "sanityKey": {
1648
1588
  "type": "string"
1649
1589
  }
1650
1590
  }
1651
1591
  },
1652
- "sanityCandidate_buddy": {
1592
+ "sanityCreateSystem": {
1653
1593
  "type": "object",
1654
1594
  "properties": {
1655
- "additionalData": {
1656
- "type": "object",
1657
- "additionalProperties": {
1595
+ "description": {
1596
+ "type": "array",
1597
+ "items": {
1658
1598
  "type": "object"
1659
1599
  }
1660
1600
  },
1661
- "email": {
1662
- "type": "string"
1663
- },
1664
- "image": {
1665
- "$ref": "#/components/schemas/sanityCandidate_buddy_image"
1666
- },
1667
- "name": {
1668
- "type": "string"
1669
- },
1670
- "sanityId": {
1671
- "type": "string"
1672
- },
1673
- "sanityType": {
1674
- "enum": [
1675
- 0
1676
- ],
1677
- "type": "integer",
1678
- "format": "int32",
1679
- "default": 0,
1680
- "nullable": true
1681
- },
1682
- "slug": {
1683
- "$ref": "#/components/schemas/sanitySlug"
1684
- },
1685
- "tags": {
1601
+ "links": {
1686
1602
  "type": "array",
1687
1603
  "items": {
1688
- "$ref": "#/components/schemas/sanityCandidate_buddy_tags"
1604
+ "type": "string"
1689
1605
  }
1690
1606
  },
1691
- "telephone": {
1607
+ "title": {
1692
1608
  "type": "string"
1693
- }
1694
- }
1695
- },
1696
- "sanityCandidate_buddy_image": {
1697
- "type": "object",
1698
- "properties": {
1699
- "additionalData": {
1609
+ },
1610
+ "additionalProperties": {
1700
1611
  "type": "object",
1701
1612
  "additionalProperties": {
1702
1613
  "type": "object"
1703
1614
  }
1704
- },
1705
- "asset": {
1706
- "$ref": "#/components/schemas/sanityCandidate_buddy_image_asset"
1707
- },
1708
- "sanityType": {
1709
- "enum": [
1710
- 0
1711
- ],
1712
- "type": "integer",
1713
- "format": "int32",
1714
- "default": 0,
1715
- "nullable": true
1716
1615
  }
1717
1616
  }
1718
1617
  },
1719
- "sanityCandidate_buddy_image_asset": {
1618
+ "sanityCreateTask": {
1720
1619
  "type": "object",
1721
1620
  "properties": {
1722
- "additionalData": {
1723
- "type": "object",
1724
- "additionalProperties": {
1621
+ "type": {
1622
+ "enum": [
1623
+ "onboarding",
1624
+ "offboarding"
1625
+ ],
1626
+ "type": "string",
1627
+ "default": "onboarding"
1628
+ },
1629
+ "description": {
1630
+ "type": "array",
1631
+ "items": {
1725
1632
  "type": "object"
1726
1633
  }
1727
1634
  },
1728
- "mimeType": {
1729
- "type": "string"
1730
- },
1731
- "originalFilename": {
1732
- "type": "string"
1733
- },
1734
- "sanityId": {
1635
+ "reminderSlackChannel": {
1735
1636
  "type": "string"
1736
1637
  },
1737
- "sanityType": {
1738
- "enum": [
1739
- 0
1740
- ],
1741
- "type": "integer",
1742
- "format": "int32",
1743
- "default": 0,
1638
+ "reminderWeeksBefore": {
1639
+ "type": "number",
1640
+ "format": "double",
1744
1641
  "nullable": true
1745
1642
  },
1746
- "url": {
1643
+ "title": {
1747
1644
  "type": "string"
1748
- }
1749
- }
1750
- },
1751
- "sanityCandidate_buddy_tags": {
1752
- "type": "object",
1753
- "properties": {
1754
- "additionalData": {
1645
+ },
1646
+ "additionalProperties": {
1755
1647
  "type": "object",
1756
1648
  "additionalProperties": {
1757
1649
  "type": "object"
1758
1650
  }
1759
- },
1760
- "name": {
1761
- "type": "string"
1762
- },
1763
- "sanityId": {
1764
- "type": "string"
1765
- },
1766
- "sanityType": {
1767
- "enum": [
1768
- 0
1769
- ],
1770
- "type": "integer",
1771
- "format": "int32",
1772
- "default": 0,
1773
- "nullable": true
1774
- },
1775
- "slug": {
1776
- "$ref": "#/components/schemas/sanitySlug"
1777
1651
  }
1778
1652
  }
1779
1653
  },
1780
- "sanityCandidate_cv": {
1654
+ "sanityDocFileAsset": {
1781
1655
  "type": "object",
1782
1656
  "properties": {
1783
- "additionalData": {
1784
- "type": "object",
1785
- "additionalProperties": {
1786
- "type": "object"
1787
- }
1788
- },
1789
- "asset": {
1790
- "$ref": "#/components/schemas/sanityCandidate_cv_asset"
1791
- },
1792
- "media": {
1793
- "$ref": "#/components/schemas/untypedNode"
1794
- },
1795
1657
  "sanityType": {
1796
1658
  "enum": [
1797
- 0
1659
+ "sanity.fileAsset"
1798
1660
  ],
1799
- "type": "integer",
1800
- "format": "int32",
1801
- "default": 0,
1802
- "nullable": true
1803
- }
1804
- }
1805
- },
1806
- "sanityCandidate_cv_asset": {
1807
- "type": "object",
1808
- "properties": {
1809
- "additionalData": {
1810
- "type": "object",
1811
- "additionalProperties": {
1812
- "type": "object"
1813
- }
1661
+ "type": "string",
1662
+ "default": "sanity.fileAsset"
1814
1663
  },
1815
1664
  "altText": {
1816
1665
  "type": "string"
@@ -1845,15 +1694,6 @@
1845
1694
  "sanityRev": {
1846
1695
  "type": "string"
1847
1696
  },
1848
- "sanityType": {
1849
- "enum": [
1850
- 0
1851
- ],
1852
- "type": "integer",
1853
- "format": "int32",
1854
- "default": 0,
1855
- "nullable": true
1856
- },
1857
1697
  "sanityUpdatedAt": {
1858
1698
  "type": "string"
1859
1699
  },
@@ -1862,8 +1702,7 @@
1862
1702
  },
1863
1703
  "size": {
1864
1704
  "type": "number",
1865
- "format": "double",
1866
- "nullable": true
1705
+ "format": "double"
1867
1706
  },
1868
1707
  "source": {
1869
1708
  "$ref": "#/components/schemas/sanityAssetSourceData"
@@ -1879,20 +1718,21 @@
1879
1718
  }
1880
1719
  }
1881
1720
  },
1882
- "sanityCandidate_employee": {
1721
+ "sanityEmployeeManager": {
1883
1722
  "type": "object",
1884
1723
  "properties": {
1885
- "additionalData": {
1886
- "type": "object",
1887
- "additionalProperties": {
1888
- "type": "object"
1889
- }
1724
+ "sanityType": {
1725
+ "enum": [
1726
+ "employee"
1727
+ ],
1728
+ "type": "string",
1729
+ "default": "employee"
1890
1730
  },
1891
1731
  "email": {
1892
1732
  "type": "string"
1893
1733
  },
1894
1734
  "image": {
1895
- "$ref": "#/components/schemas/sanityCandidate_employee_image"
1735
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1896
1736
  },
1897
1737
  "name": {
1898
1738
  "type": "string"
@@ -1900,22 +1740,13 @@
1900
1740
  "sanityId": {
1901
1741
  "type": "string"
1902
1742
  },
1903
- "sanityType": {
1904
- "enum": [
1905
- 0
1906
- ],
1907
- "type": "integer",
1908
- "format": "int32",
1909
- "default": 0,
1910
- "nullable": true
1911
- },
1912
1743
  "slug": {
1913
- "$ref": "#/components/schemas/sanitySlug"
1744
+ "$ref": "#/components/schemas/slug"
1914
1745
  },
1915
1746
  "tags": {
1916
1747
  "type": "array",
1917
1748
  "items": {
1918
- "$ref": "#/components/schemas/sanityCandidate_employee_tags"
1749
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
1919
1750
  }
1920
1751
  },
1921
1752
  "telephone": {
@@ -1923,148 +1754,159 @@
1923
1754
  }
1924
1755
  }
1925
1756
  },
1926
- "sanityCandidate_employee_image": {
1757
+ "sanityFileAssetReference": {
1927
1758
  "type": "object",
1928
1759
  "properties": {
1929
- "additionalData": {
1930
- "type": "object",
1931
- "additionalProperties": {
1932
- "type": "object"
1933
- }
1934
- },
1935
- "asset": {
1936
- "$ref": "#/components/schemas/sanityCandidate_employee_image_asset"
1937
- },
1938
1760
  "sanityType": {
1939
1761
  "enum": [
1940
- 0
1762
+ "reference"
1941
1763
  ],
1942
- "type": "integer",
1943
- "format": "int32",
1944
- "default": 0,
1945
- "nullable": true
1764
+ "type": "string",
1765
+ "default": "reference"
1766
+ },
1767
+ "sanityRef": {
1768
+ "type": "string"
1769
+ },
1770
+ "sanityWeak": {
1771
+ "type": "boolean"
1946
1772
  }
1947
1773
  }
1948
1774
  },
1949
- "sanityCandidate_employee_image_asset": {
1775
+ "sanityImageAssetReference": {
1950
1776
  "type": "object",
1951
1777
  "properties": {
1952
- "additionalData": {
1953
- "type": "object",
1954
- "additionalProperties": {
1955
- "type": "object"
1956
- }
1957
- },
1958
- "mimeType": {
1959
- "type": "string"
1960
- },
1961
- "originalFilename": {
1962
- "type": "string"
1963
- },
1964
- "sanityId": {
1965
- "type": "string"
1966
- },
1967
1778
  "sanityType": {
1968
1779
  "enum": [
1969
- 0
1780
+ "reference"
1970
1781
  ],
1971
- "type": "integer",
1972
- "format": "int32",
1973
- "default": 0,
1974
- "nullable": true
1782
+ "type": "string",
1783
+ "default": "reference"
1975
1784
  },
1976
- "url": {
1785
+ "sanityRef": {
1977
1786
  "type": "string"
1787
+ },
1788
+ "sanityWeak": {
1789
+ "type": "boolean"
1978
1790
  }
1979
1791
  }
1980
1792
  },
1981
- "sanityCandidate_employee_tags": {
1793
+ "sanityImageCrop": {
1982
1794
  "type": "object",
1983
1795
  "properties": {
1984
- "additionalData": {
1985
- "type": "object",
1986
- "additionalProperties": {
1987
- "type": "object"
1988
- }
1989
- },
1990
- "name": {
1991
- "type": "string"
1992
- },
1993
- "sanityId": {
1994
- "type": "string"
1995
- },
1996
1796
  "sanityType": {
1997
1797
  "enum": [
1998
- 0
1798
+ "sanity.imageCrop"
1999
1799
  ],
2000
- "type": "integer",
2001
- "format": "int32",
2002
- "default": 0,
2003
- "nullable": true
1800
+ "type": "string",
1801
+ "default": "sanity.imageCrop"
2004
1802
  },
2005
- "slug": {
2006
- "$ref": "#/components/schemas/sanitySlug"
1803
+ "bottom": {
1804
+ "type": "number",
1805
+ "format": "double"
1806
+ },
1807
+ "left": {
1808
+ "type": "number",
1809
+ "format": "double"
1810
+ },
1811
+ "right": {
1812
+ "type": "number",
1813
+ "format": "double"
1814
+ },
1815
+ "top": {
1816
+ "type": "number",
1817
+ "format": "double"
2007
1818
  }
2008
1819
  }
2009
1820
  },
2010
- "sanityCandidate_grades": {
1821
+ "sanityImageHotspot": {
2011
1822
  "type": "object",
2012
1823
  "properties": {
2013
- "additionalData": {
2014
- "type": "object",
2015
- "additionalProperties": {
2016
- "type": "object"
2017
- }
2018
- },
2019
- "asset": {
2020
- "$ref": "#/components/schemas/sanityCandidate_grades_asset"
2021
- },
2022
- "media": {
2023
- "$ref": "#/components/schemas/untypedNode"
2024
- },
2025
1824
  "sanityType": {
2026
1825
  "enum": [
2027
- 0
1826
+ "sanity.imageHotspot"
2028
1827
  ],
2029
- "type": "integer",
2030
- "format": "int32",
2031
- "default": 0,
2032
- "nullable": true
1828
+ "type": "string",
1829
+ "default": "sanity.imageHotspot"
1830
+ },
1831
+ "height": {
1832
+ "type": "number",
1833
+ "format": "double"
1834
+ },
1835
+ "width": {
1836
+ "type": "number",
1837
+ "format": "double"
1838
+ },
1839
+ "x": {
1840
+ "type": "number",
1841
+ "format": "double"
1842
+ },
1843
+ "y": {
1844
+ "type": "number",
1845
+ "format": "double"
2033
1846
  }
2034
1847
  }
2035
1848
  },
2036
- "sanityCandidate_grades_asset": {
1849
+ "sanityJobPosition": {
2037
1850
  "type": "object",
2038
1851
  "properties": {
2039
- "additionalData": {
2040
- "type": "object",
2041
- "additionalProperties": {
2042
- "type": "object"
2043
- }
1852
+ "sanityType": {
1853
+ "enum": [
1854
+ "jobPosition"
1855
+ ],
1856
+ "type": "string",
1857
+ "default": "jobPosition"
2044
1858
  },
2045
- "altText": {
2046
- "type": "string"
1859
+ "askForGrades": {
1860
+ "type": "boolean"
2047
1861
  },
2048
- "assetId": {
1862
+ "deadline": {
2049
1863
  "type": "string"
2050
1864
  },
2051
1865
  "description": {
1866
+ "type": "array",
1867
+ "items": {
1868
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
1869
+ }
1870
+ },
1871
+ "image": {
1872
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
1873
+ },
1874
+ "metaDescription": {
2052
1875
  "type": "string"
2053
1876
  },
2054
- "extension": {
1877
+ "sanityCreatedAt": {
2055
1878
  "type": "string"
2056
1879
  },
2057
- "label": {
1880
+ "sanityId": {
2058
1881
  "type": "string"
2059
1882
  },
2060
- "mimeType": {
1883
+ "sanityRev": {
2061
1884
  "type": "string"
2062
1885
  },
2063
- "originalFilename": {
1886
+ "sanityUpdatedAt": {
2064
1887
  "type": "string"
2065
1888
  },
2066
- "path": {
1889
+ "slug": {
1890
+ "$ref": "#/components/schemas/slug"
1891
+ },
1892
+ "title": {
2067
1893
  "type": "string"
1894
+ }
1895
+ }
1896
+ },
1897
+ "sanityOnboardingTask": {
1898
+ "type": "object",
1899
+ "properties": {
1900
+ "type": {
1901
+ "enum": [
1902
+ "onboarding"
1903
+ ],
1904
+ "type": "string",
1905
+ "default": "onboarding"
1906
+ },
1907
+ "remindDaysBefore": {
1908
+ "type": "number",
1909
+ "format": "double"
2068
1910
  },
2069
1911
  "sanityCreatedAt": {
2070
1912
  "type": "string"
@@ -2076,1116 +1918,62 @@
2076
1918
  "type": "string"
2077
1919
  },
2078
1920
  "sanityType": {
2079
- "enum": [
2080
- 0
2081
- ],
2082
- "type": "integer",
2083
- "format": "int32",
2084
- "default": 0,
2085
- "nullable": true
1921
+ "type": "string"
2086
1922
  },
2087
1923
  "sanityUpdatedAt": {
2088
1924
  "type": "string"
2089
1925
  },
2090
- "sha1hash": {
1926
+ "title": {
2091
1927
  "type": "string"
2092
1928
  },
2093
- "size": {
2094
- "type": "number",
2095
- "format": "double",
2096
- "nullable": true
2097
- },
2098
- "source": {
2099
- "$ref": "#/components/schemas/sanityAssetSourceData"
2100
- },
2101
- "title": {
2102
- "type": "string"
2103
- },
2104
- "uploadId": {
2105
- "type": "string"
2106
- },
2107
- "url": {
2108
- "type": "string"
2109
- }
2110
- }
2111
- },
2112
- "sanityCandidate_offboardingChecklist": {
2113
- "type": "object",
2114
- "properties": {
2115
- "sanityKey": {
2116
- "type": "string"
2117
- },
2118
- "additionalData": {
2119
- "type": "object",
2120
- "additionalProperties": {
2121
- "type": "object"
2122
- }
2123
- },
2124
- "sanityRef": {
2125
- "type": "string"
2126
- },
2127
- "sanityType": {
2128
- "enum": [
2129
- 0
2130
- ],
2131
- "type": "integer",
2132
- "format": "int32",
2133
- "default": 0,
2134
- "nullable": true
2135
- },
2136
- "sanityWeak": {
2137
- "type": "boolean",
2138
- "nullable": true
2139
- }
2140
- }
2141
- },
2142
- "sanityCandidate_onboardingChecklist": {
2143
- "type": "object",
2144
- "properties": {
2145
- "sanityKey": {
2146
- "type": "string"
2147
- },
2148
- "additionalData": {
2149
- "type": "object",
2150
- "additionalProperties": {
2151
- "type": "object"
2152
- }
2153
- },
2154
- "sanityRef": {
2155
- "type": "string"
2156
- },
2157
- "sanityType": {
2158
- "enum": [
2159
- 0
2160
- ],
2161
- "type": "integer",
2162
- "format": "int32",
2163
- "default": 0,
2164
- "nullable": true
2165
- },
2166
- "sanityWeak": {
2167
- "type": "boolean",
2168
- "nullable": true
2169
- }
2170
- }
2171
- },
2172
- "sanityCandidate_profileImage": {
2173
- "type": "object",
2174
- "properties": {
2175
- "additionalData": {
2176
- "type": "object",
2177
- "additionalProperties": {
2178
- "type": "object"
2179
- }
2180
- },
2181
- "asset": {
2182
- "$ref": "#/components/schemas/sanityCandidate_profileImage_asset"
2183
- },
2184
- "sanityType": {
2185
- "enum": [
2186
- 0
2187
- ],
2188
- "type": "integer",
2189
- "format": "int32",
2190
- "default": 0,
2191
- "nullable": true
2192
- }
2193
- }
2194
- },
2195
- "sanityCandidate_profileImage_asset": {
2196
- "type": "object",
2197
- "properties": {
2198
- "additionalData": {
2199
- "type": "object",
2200
- "additionalProperties": {
2201
- "type": "object"
2202
- }
2203
- },
2204
- "mimeType": {
2205
- "type": "string"
2206
- },
2207
- "originalFilename": {
2208
- "type": "string"
2209
- },
2210
- "sanityId": {
2211
- "type": "string"
2212
- },
2213
- "sanityType": {
2214
- "enum": [
2215
- 0
2216
- ],
2217
- "type": "integer",
2218
- "format": "int32",
2219
- "default": 0,
2220
- "nullable": true
2221
- },
2222
- "url": {
2223
- "type": "string"
2224
- }
2225
- }
2226
- },
2227
- "sanityCandidate_recruiter": {
2228
- "type": "object",
2229
- "properties": {
2230
- "additionalData": {
2231
- "type": "object",
2232
- "additionalProperties": {
2233
- "type": "object"
2234
- }
2235
- },
2236
- "email": {
2237
- "type": "string"
2238
- },
2239
- "image": {
2240
- "$ref": "#/components/schemas/sanityCandidate_recruiter_image"
2241
- },
2242
- "name": {
2243
- "type": "string"
2244
- },
2245
- "sanityId": {
2246
- "type": "string"
2247
- },
2248
- "sanityType": {
2249
- "enum": [
2250
- 0
2251
- ],
2252
- "type": "integer",
2253
- "format": "int32",
2254
- "default": 0,
2255
- "nullable": true
2256
- },
2257
- "slug": {
2258
- "$ref": "#/components/schemas/sanitySlug"
2259
- },
2260
- "tags": {
2261
- "type": "array",
2262
- "items": {
2263
- "$ref": "#/components/schemas/sanityCandidate_recruiter_tags"
2264
- }
2265
- },
2266
- "telephone": {
2267
- "type": "string"
2268
- }
2269
- }
2270
- },
2271
- "sanityCandidate_recruiter_image": {
2272
- "type": "object",
2273
- "properties": {
2274
- "additionalData": {
2275
- "type": "object",
2276
- "additionalProperties": {
2277
- "type": "object"
2278
- }
2279
- },
2280
- "asset": {
2281
- "$ref": "#/components/schemas/sanityCandidate_recruiter_image_asset"
2282
- },
2283
- "sanityType": {
2284
- "enum": [
2285
- 0
2286
- ],
2287
- "type": "integer",
2288
- "format": "int32",
2289
- "default": 0,
2290
- "nullable": true
2291
- }
2292
- }
2293
- },
2294
- "sanityCandidate_recruiter_image_asset": {
2295
- "type": "object",
2296
- "properties": {
2297
- "additionalData": {
2298
- "type": "object",
2299
- "additionalProperties": {
2300
- "type": "object"
2301
- }
2302
- },
2303
- "mimeType": {
2304
- "type": "string"
2305
- },
2306
- "originalFilename": {
2307
- "type": "string"
2308
- },
2309
- "sanityId": {
2310
- "type": "string"
2311
- },
2312
- "sanityType": {
2313
- "enum": [
2314
- 0
2315
- ],
2316
- "type": "integer",
2317
- "format": "int32",
2318
- "default": 0,
2319
- "nullable": true
2320
- },
2321
- "url": {
2322
- "type": "string"
2323
- }
2324
- }
2325
- },
2326
- "sanityCandidate_recruiter_tags": {
2327
- "type": "object",
2328
- "properties": {
2329
- "additionalData": {
2330
- "type": "object",
2331
- "additionalProperties": {
2332
- "type": "object"
2333
- }
2334
- },
2335
- "name": {
2336
- "type": "string"
2337
- },
2338
- "sanityId": {
2339
- "type": "string"
2340
- },
2341
- "sanityType": {
2342
- "enum": [
2343
- 0
2344
- ],
2345
- "type": "integer",
2346
- "format": "int32",
2347
- "default": 0,
2348
- "nullable": true
2349
- },
2350
- "slug": {
2351
- "$ref": "#/components/schemas/sanitySlug"
2352
- }
2353
- }
2354
- },
2355
- "sanityCandidate_references": {
2356
- "type": "object",
2357
- "properties": {
2358
- "additionalData": {
2359
- "type": "object",
2360
- "additionalProperties": {
2361
- "type": "object"
2362
- }
2363
- },
2364
- "details": {
2365
- "type": "string"
2366
- },
2367
- "email": {
2368
- "type": "string"
2369
- },
2370
- "name": {
2371
- "type": "string"
2372
- },
2373
- "phone": {
2374
- "type": "string"
2375
- },
2376
- "sanityKey": {
2377
- "type": "string"
2378
- },
2379
- "sanityType": {
2380
- "enum": [
2381
- 0
2382
- ],
2383
- "type": "integer",
2384
- "format": "int32",
2385
- "default": 0,
2386
- "nullable": true
2387
- }
2388
- }
2389
- },
2390
- "sanityCandidate_systemsActive": {
2391
- "type": "object",
2392
- "properties": {
2393
- "additionalData": {
2394
- "type": "object",
2395
- "additionalProperties": {
2396
- "type": "object"
2397
- }
2398
- },
2399
- "description": {
2400
- "type": "array",
2401
- "items": {
2402
- "$ref": "#/components/schemas/sanityCandidate_systemsActive_description"
2403
- }
2404
- },
2405
- "image": {
2406
- "$ref": "#/components/schemas/sanityCandidate_systemsActive_image"
2407
- },
2408
- "links": {
2409
- "type": "array",
2410
- "items": {
2411
- "type": "string"
2412
- }
2413
- },
2414
- "remindDaysBefore": {
2415
- "type": "number",
2416
- "format": "double",
2417
- "nullable": true
2418
- },
2419
- "reminderSlackChannel": {
2420
- "enum": [
2421
- 0,
2422
- 1,
2423
- 2,
2424
- 3,
2425
- 4
2426
- ],
2427
- "type": "integer",
2428
- "format": "int32",
2429
- "default": 0,
2430
- "nullable": true
2431
- },
2432
- "sanityCreatedAt": {
2433
- "type": "string"
2434
- },
2435
- "sanityId": {
2436
- "type": "string"
2437
- },
2438
- "sanityRev": {
2439
- "type": "string"
2440
- },
2441
- "sanityType": {
2442
- "enum": [
2443
- 0
2444
- ],
2445
- "type": "integer",
2446
- "format": "int32",
2447
- "default": 0,
2448
- "nullable": true
2449
- },
2450
- "sanityUpdatedAt": {
2451
- "type": "string"
2452
- },
2453
- "title": {
2454
- "type": "string"
2455
- }
2456
- }
2457
- },
2458
- "sanityCandidate_systemsActive_description": {
2459
- "type": "object",
2460
- "properties": {
2461
- "additionalData": {
2462
- "type": "object",
2463
- "additionalProperties": {
2464
- "type": "object"
2465
- }
2466
- },
2467
- "children": {
2468
- "type": "array",
2469
- "items": {
2470
- "$ref": "#/components/schemas/sanityCandidate_systemsActive_description_children"
2471
- }
2472
- },
2473
- "level": {
2474
- "type": "number",
2475
- "format": "double",
2476
- "nullable": true
2477
- },
2478
- "listItem": {
2479
- "enum": [
2480
- 0,
2481
- 1
2482
- ],
2483
- "type": "integer",
2484
- "format": "int32",
2485
- "default": 0,
2486
- "nullable": true
2487
- },
2488
- "markDefs": {
2489
- "type": "array",
2490
- "items": {
2491
- "$ref": "#/components/schemas/sanityCandidate_systemsActive_description_markDefs"
2492
- }
2493
- },
2494
- "sanityKey": {
2495
- "type": "string"
2496
- },
2497
- "sanityType": {
2498
- "enum": [
2499
- 0
2500
- ],
2501
- "type": "integer",
2502
- "format": "int32",
2503
- "default": 0,
2504
- "nullable": true
2505
- },
2506
- "style": {
2507
- "enum": [
2508
- 0,
2509
- 1,
2510
- 2,
2511
- 3,
2512
- 4,
2513
- 5,
2514
- 6,
2515
- 7
2516
- ],
2517
- "type": "integer",
2518
- "format": "int32",
2519
- "default": 0,
2520
- "nullable": true
2521
- }
2522
- }
2523
- },
2524
- "sanityCandidate_systemsActive_description_children": {
2525
- "type": "object",
2526
- "properties": {
2527
- "additionalData": {
2528
- "type": "object",
2529
- "additionalProperties": {
2530
- "type": "object"
2531
- }
2532
- },
2533
- "marks": {
2534
- "type": "array",
2535
- "items": {
2536
- "type": "string"
2537
- }
2538
- },
2539
- "sanityKey": {
2540
- "type": "string"
2541
- },
2542
- "sanityType": {
2543
- "enum": [
2544
- 0
2545
- ],
2546
- "type": "integer",
2547
- "format": "int32",
2548
- "default": 0,
2549
- "nullable": true
2550
- },
2551
- "text": {
2552
- "type": "string"
2553
- }
2554
- }
2555
- },
2556
- "sanityCandidate_systemsActive_description_markDefs": {
2557
- "type": "object",
2558
- "properties": {
2559
- "additionalData": {
2560
- "type": "object",
2561
- "additionalProperties": {
2562
- "type": "object"
2563
- }
2564
- },
2565
- "href": {
2566
- "type": "string"
2567
- },
2568
- "sanityKey": {
2569
- "type": "string"
2570
- },
2571
- "sanityType": {
2572
- "enum": [
2573
- 0
2574
- ],
2575
- "type": "integer",
2576
- "format": "int32",
2577
- "default": 0,
2578
- "nullable": true
2579
- }
2580
- }
2581
- },
2582
- "sanityCandidate_systemsActive_image": {
2583
- "type": "object",
2584
- "properties": {
2585
- "additionalData": {
2586
- "type": "object",
2587
- "additionalProperties": {
2588
- "type": "object"
2589
- }
2590
- },
2591
- "asset": {
2592
- "$ref": "#/components/schemas/sanityCandidate_systemsActive_image_asset"
2593
- },
2594
- "sanityType": {
2595
- "enum": [
2596
- 0
2597
- ],
2598
- "type": "integer",
2599
- "format": "int32",
2600
- "default": 0,
2601
- "nullable": true
2602
- }
2603
- }
2604
- },
2605
- "sanityCandidate_systemsActive_image_asset": {
2606
- "type": "object",
2607
- "properties": {
2608
- "additionalData": {
2609
- "type": "object",
2610
- "additionalProperties": {
2611
- "type": "object"
2612
- }
2613
- },
2614
- "mimeType": {
2615
- "type": "string"
2616
- },
2617
- "originalFilename": {
2618
- "type": "string"
2619
- },
2620
- "sanityId": {
2621
- "type": "string"
2622
- },
2623
- "sanityType": {
2624
- "enum": [
2625
- 0
2626
- ],
2627
- "type": "integer",
2628
- "format": "int32",
2629
- "default": 0,
2630
- "nullable": true
2631
- },
2632
- "url": {
2633
- "type": "string"
2634
- }
2635
- }
2636
- },
2637
- "sanityCreateCandidateInput": {
2638
- "type": "object",
2639
- "properties": {
2640
- "additionalData": {
2641
- "type": "object",
2642
- "additionalProperties": {
2643
- "type": "object"
2644
- }
2645
- },
2646
- "candidate": {
2647
- "type": "string"
2648
- },
2649
- "status": {
2650
- "enum": [
2651
- 0,
2652
- 1,
2653
- 2,
2654
- 3,
2655
- 4,
2656
- 5,
2657
- 6,
2658
- 7
2659
- ],
2660
- "type": "integer",
2661
- "format": "int32",
2662
- "default": 0,
2663
- "nullable": true
2664
- },
2665
- "track": {
2666
- "enum": [
2667
- 0,
2668
- 1
2669
- ],
2670
- "type": "integer",
2671
- "format": "int32",
2672
- "default": 0,
2673
- "nullable": true
2674
- }
2675
- }
2676
- },
2677
- "sanityCreateSystem": {
2678
- "type": "object",
2679
- "properties": {
2680
- "additionalData": {
2681
- "type": "object",
2682
- "additionalProperties": {
2683
- "type": "object"
2684
- }
2685
- },
2686
- "description": {
2687
- "$ref": "#/components/schemas/untypedNode"
2688
- },
2689
- "links": {
2690
- "type": "array",
2691
- "items": {
2692
- "type": "string"
2693
- }
2694
- },
2695
- "title": {
2696
- "type": "string"
2697
- }
2698
- }
2699
- },
2700
- "sanityCreateTask": {
2701
- "type": "object",
2702
- "properties": {
2703
- "additionalData": {
2704
- "type": "object",
2705
- "additionalProperties": {
2706
- "type": "object"
2707
- }
2708
- },
2709
- "description": {
2710
- "$ref": "#/components/schemas/untypedNode"
2711
- },
2712
- "reminderSlackChannel": {
2713
- "type": "string"
2714
- },
2715
- "reminderWeeksBefore": {
2716
- "type": "number",
2717
- "format": "double",
2718
- "nullable": true
2719
- },
2720
- "title": {
2721
- "type": "string"
2722
- },
2723
- "type": {
2724
- "enum": [
2725
- 0,
2726
- 1
2727
- ],
2728
- "type": "integer",
2729
- "format": "int32",
2730
- "default": 0,
2731
- "nullable": true
2732
- }
2733
- }
2734
- },
2735
- "sanityEmployeeReference": {
2736
- "type": "object",
2737
- "properties": {
2738
- "additionalData": {
2739
- "type": "object",
2740
- "additionalProperties": {
2741
- "type": "object"
2742
- }
2743
- },
2744
- "sanityRef": {
2745
- "type": "string"
2746
- },
2747
- "sanityType": {
2748
- "enum": [
2749
- 0
2750
- ],
2751
- "type": "integer",
2752
- "format": "int32",
2753
- "default": 0,
2754
- "nullable": true
2755
- },
2756
- "sanityWeak": {
2757
- "type": "boolean",
2758
- "nullable": true
2759
- }
2760
- }
2761
- },
2762
- "sanityFileAssetReference": {
2763
- "type": "object",
2764
- "properties": {
2765
- "additionalData": {
2766
- "type": "object",
2767
- "additionalProperties": {
2768
- "type": "object"
2769
- }
2770
- },
2771
- "sanityRef": {
2772
- "type": "string"
2773
- },
2774
- "sanityType": {
2775
- "enum": [
2776
- 0
2777
- ],
2778
- "type": "integer",
2779
- "format": "int32",
2780
- "default": 0,
2781
- "nullable": true
2782
- },
2783
- "sanityWeak": {
2784
- "type": "boolean",
2785
- "nullable": true
2786
- }
2787
- }
2788
- },
2789
- "sanityImageAssetReference": {
2790
- "type": "object",
2791
- "properties": {
2792
- "additionalData": {
2793
- "type": "object",
2794
- "additionalProperties": {
2795
- "type": "object"
2796
- }
2797
- },
2798
- "sanityRef": {
2799
- "type": "string"
2800
- },
2801
- "sanityType": {
2802
- "enum": [
2803
- 0
2804
- ],
2805
- "type": "integer",
2806
- "format": "int32",
2807
- "default": 0,
2808
- "nullable": true
2809
- },
2810
- "sanityWeak": {
2811
- "type": "boolean",
2812
- "nullable": true
2813
- }
2814
- }
2815
- },
2816
- "sanityImageCrop": {
2817
- "type": "object",
2818
- "properties": {
2819
- "additionalData": {
2820
- "type": "object",
2821
- "additionalProperties": {
2822
- "type": "object"
2823
- }
2824
- },
2825
- "bottom": {
2826
- "type": "number",
2827
- "format": "double",
2828
- "nullable": true
2829
- },
2830
- "left": {
2831
- "type": "number",
2832
- "format": "double",
2833
- "nullable": true
2834
- },
2835
- "right": {
2836
- "type": "number",
2837
- "format": "double",
2838
- "nullable": true
2839
- },
2840
- "sanityType": {
2841
- "enum": [
2842
- 0
2843
- ],
2844
- "type": "integer",
2845
- "format": "int32",
2846
- "default": 0,
2847
- "nullable": true
2848
- },
2849
- "top": {
2850
- "type": "number",
2851
- "format": "double",
2852
- "nullable": true
2853
- }
2854
- }
2855
- },
2856
- "sanityImageHotspot": {
2857
- "type": "object",
2858
- "properties": {
2859
- "additionalData": {
2860
- "type": "object",
2861
- "additionalProperties": {
2862
- "type": "object"
2863
- }
2864
- },
2865
- "height": {
2866
- "type": "number",
2867
- "format": "double",
2868
- "nullable": true
2869
- },
2870
- "sanityType": {
2871
- "enum": [
2872
- 0
2873
- ],
2874
- "type": "integer",
2875
- "format": "int32",
2876
- "default": 0,
2877
- "nullable": true
2878
- },
2879
- "width": {
2880
- "type": "number",
2881
- "format": "double",
2882
- "nullable": true
2883
- },
2884
- "x": {
2885
- "type": "number",
2886
- "format": "double",
2887
- "nullable": true
2888
- },
2889
- "y": {
2890
- "type": "number",
2891
- "format": "double",
2892
- "nullable": true
2893
- }
2894
- }
2895
- },
2896
- "sanityJobPosition": {
2897
- "type": "object",
2898
- "properties": {
2899
- "additionalData": {
2900
- "type": "object",
2901
- "additionalProperties": {
2902
- "type": "object"
2903
- }
2904
- },
2905
- "askForGrades": {
2906
- "type": "boolean",
2907
- "nullable": true
2908
- },
2909
- "deadline": {
2910
- "type": "string"
2911
- },
2912
- "description": {
2913
- "type": "array",
2914
- "items": {
2915
- "$ref": "#/components/schemas/sanityJobPosition_description"
2916
- }
2917
- },
2918
- "image": {
2919
- "$ref": "#/components/schemas/sanityJobPosition_image"
2920
- },
2921
- "metaDescription": {
2922
- "type": "string"
2923
- },
2924
- "sanityCreatedAt": {
2925
- "type": "string"
2926
- },
2927
- "sanityId": {
2928
- "type": "string"
2929
- },
2930
- "sanityRev": {
2931
- "type": "string"
2932
- },
2933
- "sanityType": {
2934
- "enum": [
2935
- 0
2936
- ],
2937
- "type": "integer",
2938
- "format": "int32",
2939
- "default": 0,
2940
- "nullable": true
2941
- },
2942
- "sanityUpdatedAt": {
2943
- "type": "string"
2944
- },
2945
- "slug": {
2946
- "$ref": "#/components/schemas/sanitySlug"
2947
- },
2948
- "title": {
2949
- "type": "string"
2950
- }
2951
- }
2952
- },
2953
- "sanityJobPosition_description": {
2954
- "type": "object",
2955
- "properties": {
2956
- "additionalData": {
2957
- "type": "object",
2958
- "additionalProperties": {
2959
- "type": "object"
2960
- }
2961
- },
2962
- "children": {
2963
- "type": "array",
2964
- "items": {
2965
- "$ref": "#/components/schemas/sanityJobPosition_description_children"
2966
- }
2967
- },
2968
- "level": {
2969
- "type": "number",
2970
- "format": "double",
2971
- "nullable": true
2972
- },
2973
- "listItem": {
2974
- "enum": [
2975
- 0,
2976
- 1
2977
- ],
2978
- "type": "integer",
2979
- "format": "int32",
2980
- "default": 0,
2981
- "nullable": true
2982
- },
2983
- "markDefs": {
2984
- "type": "array",
2985
- "items": {
2986
- "$ref": "#/components/schemas/sanityJobPosition_description_markDefs"
2987
- }
2988
- },
2989
- "sanityKey": {
2990
- "type": "string"
2991
- },
2992
- "sanityType": {
2993
- "enum": [
2994
- 0
2995
- ],
2996
- "type": "integer",
2997
- "format": "int32",
2998
- "default": 0,
2999
- "nullable": true
3000
- },
3001
- "style": {
3002
- "enum": [
3003
- 0,
3004
- 1,
3005
- 2,
3006
- 3,
3007
- 4,
3008
- 5,
3009
- 6,
3010
- 7
3011
- ],
3012
- "type": "integer",
3013
- "format": "int32",
3014
- "default": 0,
3015
- "nullable": true
3016
- }
3017
- }
3018
- },
3019
- "sanityJobPosition_description_children": {
3020
- "type": "object",
3021
- "properties": {
3022
- "additionalData": {
3023
- "type": "object",
3024
- "additionalProperties": {
3025
- "type": "object"
3026
- }
3027
- },
3028
- "marks": {
3029
- "type": "array",
3030
- "items": {
3031
- "type": "string"
3032
- }
3033
- },
3034
- "sanityKey": {
3035
- "type": "string"
3036
- },
3037
- "sanityType": {
3038
- "enum": [
3039
- 0
3040
- ],
3041
- "type": "integer",
3042
- "format": "int32",
3043
- "default": 0,
3044
- "nullable": true
3045
- },
3046
- "text": {
3047
- "type": "string"
3048
- }
3049
- }
3050
- },
3051
- "sanityJobPosition_description_markDefs": {
3052
- "type": "object",
3053
- "properties": {
3054
- "additionalData": {
3055
- "type": "object",
3056
- "additionalProperties": {
3057
- "type": "object"
3058
- }
3059
- },
3060
- "href": {
3061
- "type": "string"
3062
- },
3063
- "sanityKey": {
3064
- "type": "string"
3065
- },
3066
- "sanityType": {
3067
- "enum": [
3068
- 0
3069
- ],
3070
- "type": "integer",
3071
- "format": "int32",
3072
- "default": 0,
3073
- "nullable": true
3074
- }
3075
- }
3076
- },
3077
- "sanityJobPosition_image": {
3078
- "type": "object",
3079
- "properties": {
3080
- "additionalData": {
1929
+ "additionalProperties": {
3081
1930
  "type": "object",
3082
1931
  "additionalProperties": {
3083
1932
  "type": "object"
3084
1933
  }
3085
- },
3086
- "asset": {
3087
- "$ref": "#/components/schemas/sanityJobPosition_image_asset"
3088
- },
3089
- "sanityType": {
3090
- "enum": [
3091
- 0
3092
- ],
3093
- "type": "integer",
3094
- "format": "int32",
3095
- "default": 0,
3096
- "nullable": true
3097
1934
  }
3098
1935
  }
3099
1936
  },
3100
- "sanityJobPosition_image_asset": {
1937
+ "sanityPatchCandidate": {
3101
1938
  "type": "object",
3102
1939
  "properties": {
3103
- "additionalData": {
3104
- "type": "object",
3105
- "additionalProperties": {
3106
- "type": "object"
3107
- }
3108
- },
3109
- "mimeType": {
3110
- "type": "string"
3111
- },
3112
- "originalFilename": {
3113
- "type": "string"
3114
- },
3115
- "sanityId": {
3116
- "type": "string"
3117
- },
3118
1940
  "sanityType": {
3119
1941
  "enum": [
3120
- 0
1942
+ "candidate"
3121
1943
  ],
3122
- "type": "integer",
3123
- "format": "int32",
3124
- "default": 0,
1944
+ "type": "string",
1945
+ "default": "candidate",
3125
1946
  "nullable": true
3126
1947
  },
3127
- "url": {
3128
- "type": "string"
3129
- }
3130
- }
3131
- },
3132
- "sanityOnboardingTask": {
3133
- "type": "object",
3134
- "properties": {
3135
- "additionalData": {
3136
- "type": "object",
3137
- "additionalProperties": {
3138
- "type": "object"
3139
- }
3140
- },
3141
- "remindDaysBefore": {
3142
- "type": "number",
3143
- "format": "double",
1948
+ "status": {
1949
+ "enum": [
1950
+ "CREATED",
1951
+ "INTRODUCTION",
1952
+ "OFFER",
1953
+ "SIGNED",
1954
+ "ONBOARDING",
1955
+ "USER_CREATION_REVIEW",
1956
+ "OFFBOARDING",
1957
+ "REJECTED"
1958
+ ],
1959
+ "type": "string",
1960
+ "default": "CREATED",
3144
1961
  "nullable": true
3145
1962
  },
3146
- "sanityCreatedAt": {
3147
- "type": "string"
3148
- },
3149
- "sanityId": {
3150
- "type": "string"
3151
- },
3152
- "sanityRev": {
3153
- "type": "string"
3154
- },
3155
- "sanityType": {
3156
- "type": "string"
3157
- },
3158
- "sanityUpdatedAt": {
3159
- "type": "string"
3160
- },
3161
- "title": {
3162
- "type": "string"
3163
- },
3164
- "type": {
1963
+ "track": {
3165
1964
  "enum": [
3166
- 0
1965
+ "developer",
1966
+ "data_engineer"
3167
1967
  ],
3168
- "type": "integer",
3169
- "format": "int32",
3170
- "default": 0,
1968
+ "type": "string",
1969
+ "default": "developer",
3171
1970
  "nullable": true
3172
- }
3173
- }
3174
- },
3175
- "sanityPatchCandidate": {
3176
- "type": "object",
3177
- "properties": {
3178
- "additionalData": {
3179
- "type": "object",
3180
- "additionalProperties": {
3181
- "type": "object"
3182
- }
3183
1971
  },
3184
1972
  "address": {
3185
- "$ref": "#/components/schemas/sanityPatchCandidate_address"
1973
+ "$ref": "#/components/schemas/sanityPatchCandidateAddress"
3186
1974
  },
3187
1975
  "applicationLetter": {
3188
- "$ref": "#/components/schemas/sanityPatchCandidate_applicationLetter"
1976
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3189
1977
  },
3190
1978
  "applicationOther": {
3191
1979
  "type": "string"
@@ -3194,19 +1982,19 @@
3194
1982
  "type": "string"
3195
1983
  },
3196
1984
  "buddy": {
3197
- "$ref": "#/components/schemas/sanityEmployeeReference"
1985
+ "$ref": "#/components/schemas/employeeReference"
3198
1986
  },
3199
1987
  "candidate": {
3200
1988
  "type": "string"
3201
1989
  },
3202
1990
  "cv": {
3203
- "$ref": "#/components/schemas/sanityPatchCandidate_cv"
1991
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3204
1992
  },
3205
1993
  "email": {
3206
1994
  "type": "string"
3207
1995
  },
3208
1996
  "employee": {
3209
- "$ref": "#/components/schemas/sanityEmployeeReference"
1997
+ "$ref": "#/components/schemas/employeeReference"
3210
1998
  },
3211
1999
  "fromApplication": {
3212
2000
  "type": "boolean",
@@ -3216,18 +2004,18 @@
3216
2004
  "type": "string"
3217
2005
  },
3218
2006
  "grades": {
3219
- "$ref": "#/components/schemas/sanityPatchCandidate_grades"
2007
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
3220
2008
  },
3221
2009
  "offboardingChecklist": {
3222
2010
  "type": "array",
3223
2011
  "items": {
3224
- "$ref": "#/components/schemas/sanityPatchCandidate_offboardingChecklist"
2012
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
3225
2013
  }
3226
2014
  },
3227
2015
  "onboardingChecklist": {
3228
2016
  "type": "array",
3229
2017
  "items": {
3230
- "$ref": "#/components/schemas/sanityPatchCandidate_onboardingChecklist"
2018
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
3231
2019
  }
3232
2020
  },
3233
2021
  "ownership": {
@@ -3242,339 +2030,129 @@
3242
2030
  "type": "string"
3243
2031
  },
3244
2032
  "profileImage": {
3245
- "$ref": "#/components/schemas/sanityPatchCandidate_profileImage"
2033
+ "$ref": "#/components/schemas/sanityPatchPageMetaImage"
3246
2034
  },
3247
2035
  "recruiter": {
3248
- "$ref": "#/components/schemas/sanityEmployeeReference"
2036
+ "$ref": "#/components/schemas/employeeReference"
3249
2037
  },
3250
2038
  "references": {
3251
2039
  "type": "array",
3252
2040
  "items": {
3253
- "$ref": "#/components/schemas/sanityPatchCandidate_references"
2041
+ "$ref": "#/components/schemas/sanityCandidateReferencesInner"
3254
2042
  }
3255
2043
  },
3256
- "sanityType": {
3257
- "enum": [
3258
- 0
3259
- ],
3260
- "type": "integer",
3261
- "format": "int32",
3262
- "default": 0,
3263
- "nullable": true
3264
- },
3265
2044
  "shortUrl": {
3266
2045
  "type": "string"
3267
2046
  },
3268
2047
  "startDate": {
3269
2048
  "type": "string"
3270
2049
  },
3271
- "status": {
3272
- "enum": [
3273
- 0,
3274
- 1,
3275
- 2,
3276
- 3,
3277
- 4,
3278
- 5,
3279
- 6,
3280
- 7
3281
- ],
3282
- "type": "integer",
3283
- "format": "int32",
3284
- "default": 0,
3285
- "nullable": true
3286
- },
3287
2050
  "systemsActive": {
3288
2051
  "type": "array",
3289
2052
  "items": {
3290
- "$ref": "#/components/schemas/sanityPatchCandidate_systemsActive"
2053
+ "$ref": "#/components/schemas/sanityPatchCandidateSystemsActiveInner"
3291
2054
  }
3292
2055
  },
3293
2056
  "telephone": {
3294
2057
  "type": "string"
3295
2058
  },
3296
- "track": {
3297
- "enum": [
3298
- 0,
3299
- 1
3300
- ],
3301
- "type": "integer",
3302
- "format": "int32",
3303
- "default": 0,
3304
- "nullable": true
3305
- },
3306
2059
  "url": {
3307
2060
  "type": "string"
3308
- }
3309
- }
3310
- },
3311
- "sanityPatchCandidate_address": {
3312
- "type": "object",
3313
- "properties": {
3314
- "additionalData": {
3315
- "type": "object",
3316
- "additionalProperties": {
3317
- "type": "object"
3318
- }
3319
- },
3320
- "city": {
3321
- "type": "string"
3322
- },
3323
- "postalCode": {
3324
- "type": "string"
3325
- },
3326
- "street": {
3327
- "type": "string"
3328
- }
3329
- }
3330
- },
3331
- "sanityPatchCandidate_applicationLetter": {
3332
- "type": "object",
3333
- "properties": {
3334
- "additionalData": {
3335
- "type": "object",
3336
- "additionalProperties": {
3337
- "type": "object"
3338
- }
3339
- },
3340
- "asset": {
3341
- "$ref": "#/components/schemas/sanityFileAssetReference"
3342
- },
3343
- "media": {
3344
- "$ref": "#/components/schemas/untypedNode"
3345
- },
3346
- "sanityType": {
3347
- "enum": [
3348
- 0
3349
- ],
3350
- "type": "integer",
3351
- "format": "int32",
3352
- "default": 0,
3353
- "nullable": true
3354
- }
3355
- }
3356
- },
3357
- "sanityPatchCandidate_cv": {
3358
- "type": "object",
3359
- "properties": {
3360
- "additionalData": {
3361
- "type": "object",
3362
- "additionalProperties": {
3363
- "type": "object"
3364
- }
3365
- },
3366
- "asset": {
3367
- "$ref": "#/components/schemas/sanityFileAssetReference"
3368
2061
  },
3369
- "media": {
3370
- "$ref": "#/components/schemas/untypedNode"
3371
- },
3372
- "sanityType": {
3373
- "enum": [
3374
- 0
3375
- ],
3376
- "type": "integer",
3377
- "format": "int32",
3378
- "default": 0,
3379
- "nullable": true
3380
- }
3381
- }
3382
- },
3383
- "sanityPatchCandidate_grades": {
3384
- "type": "object",
3385
- "properties": {
3386
- "additionalData": {
2062
+ "additionalProperties": {
3387
2063
  "type": "object",
3388
2064
  "additionalProperties": {
3389
2065
  "type": "object"
3390
2066
  }
3391
- },
3392
- "asset": {
3393
- "$ref": "#/components/schemas/sanityFileAssetReference"
3394
- },
3395
- "media": {
3396
- "$ref": "#/components/schemas/untypedNode"
3397
- },
3398
- "sanityType": {
3399
- "enum": [
3400
- 0
3401
- ],
3402
- "type": "integer",
3403
- "format": "int32",
3404
- "default": 0,
3405
- "nullable": true
3406
2067
  }
3407
2068
  }
3408
2069
  },
3409
- "sanityPatchCandidate_offboardingChecklist": {
2070
+ "sanityPatchCandidateAddress": {
3410
2071
  "type": "object",
3411
2072
  "properties": {
3412
- "sanityKey": {
3413
- "type": "string"
3414
- },
3415
- "additionalData": {
3416
- "type": "object",
3417
- "additionalProperties": {
3418
- "type": "object"
3419
- }
3420
- },
3421
- "sanityRef": {
2073
+ "city": {
3422
2074
  "type": "string"
3423
2075
  },
3424
- "sanityType": {
3425
- "enum": [
3426
- 0
3427
- ],
3428
- "type": "integer",
3429
- "format": "int32",
3430
- "default": 0,
3431
- "nullable": true
3432
- },
3433
- "sanityWeak": {
3434
- "type": "boolean",
3435
- "nullable": true
3436
- }
3437
- }
3438
- },
3439
- "sanityPatchCandidate_onboardingChecklist": {
3440
- "type": "object",
3441
- "properties": {
3442
- "sanityKey": {
2076
+ "postalCode": {
3443
2077
  "type": "string"
3444
2078
  },
3445
- "additionalData": {
3446
- "type": "object",
3447
- "additionalProperties": {
3448
- "type": "object"
3449
- }
3450
- },
3451
- "sanityRef": {
2079
+ "street": {
3452
2080
  "type": "string"
3453
- },
3454
- "sanityType": {
3455
- "enum": [
3456
- 0
3457
- ],
3458
- "type": "integer",
3459
- "format": "int32",
3460
- "default": 0,
3461
- "nullable": true
3462
- },
3463
- "sanityWeak": {
3464
- "type": "boolean",
3465
- "nullable": true
3466
2081
  }
3467
2082
  }
3468
2083
  },
3469
- "sanityPatchCandidate_profileImage": {
2084
+ "sanityPatchCandidateApplicationLetter": {
3470
2085
  "type": "object",
3471
2086
  "properties": {
3472
- "additionalData": {
3473
- "type": "object",
3474
- "additionalProperties": {
3475
- "type": "object"
3476
- }
3477
- },
3478
- "asset": {
3479
- "$ref": "#/components/schemas/sanityImageAssetReference"
3480
- },
3481
- "crop": {
3482
- "$ref": "#/components/schemas/sanityImageCrop"
3483
- },
3484
- "hotspot": {
3485
- "$ref": "#/components/schemas/sanityImageHotspot"
3486
- },
3487
- "media": {
3488
- "$ref": "#/components/schemas/untypedNode"
3489
- },
3490
2087
  "sanityType": {
3491
2088
  "enum": [
3492
- 0
2089
+ "file"
3493
2090
  ],
3494
- "type": "integer",
3495
- "format": "int32",
3496
- "default": 0,
3497
- "nullable": true
3498
- }
3499
- }
3500
- },
3501
- "sanityPatchCandidate_references": {
3502
- "type": "object",
3503
- "properties": {
3504
- "additionalData": {
3505
- "type": "object",
3506
- "additionalProperties": {
3507
- "type": "object"
3508
- }
3509
- },
3510
- "details": {
3511
- "type": "string"
3512
- },
3513
- "email": {
3514
- "type": "string"
3515
- },
3516
- "name": {
3517
- "type": "string"
3518
- },
3519
- "phone": {
3520
- "type": "string"
2091
+ "type": "string",
2092
+ "default": "file"
3521
2093
  },
3522
- "sanityKey": {
3523
- "type": "string"
3524
- },
3525
- "sanityType": {
3526
- "enum": [
3527
- 0
3528
- ],
3529
- "type": "integer",
3530
- "format": "int32",
3531
- "default": 0,
3532
- "nullable": true
2094
+ "asset": {
2095
+ "$ref": "#/components/schemas/sanityFileAssetReference"
2096
+ },
2097
+ "media": {
2098
+ "type": "object"
3533
2099
  }
3534
2100
  }
3535
2101
  },
3536
- "sanityPatchCandidate_systemsActive": {
2102
+ "sanityPatchCandidateSystemsActiveInner": {
3537
2103
  "type": "object",
3538
2104
  "properties": {
2105
+ "sanityType": {
2106
+ "enum": [
2107
+ "reference"
2108
+ ],
2109
+ "type": "string",
2110
+ "default": "reference"
2111
+ },
3539
2112
  "sanityKey": {
3540
2113
  "type": "string"
3541
2114
  },
3542
- "additionalData": {
3543
- "type": "object",
3544
- "additionalProperties": {
3545
- "type": "object"
3546
- }
3547
- },
3548
2115
  "sanityRef": {
3549
2116
  "type": "string"
3550
2117
  },
2118
+ "sanityWeak": {
2119
+ "type": "boolean"
2120
+ }
2121
+ }
2122
+ },
2123
+ "sanityPatchPageMetaImage": {
2124
+ "type": "object",
2125
+ "properties": {
3551
2126
  "sanityType": {
3552
2127
  "enum": [
3553
- 0
2128
+ "image"
3554
2129
  ],
3555
- "type": "integer",
3556
- "format": "int32",
3557
- "default": 0,
3558
- "nullable": true
2130
+ "type": "string",
2131
+ "default": "image"
3559
2132
  },
3560
- "sanityWeak": {
3561
- "type": "boolean",
3562
- "nullable": true
2133
+ "asset": {
2134
+ "$ref": "#/components/schemas/sanityImageAssetReference"
2135
+ },
2136
+ "crop": {
2137
+ "$ref": "#/components/schemas/sanityImageCrop"
2138
+ },
2139
+ "hotspot": {
2140
+ "$ref": "#/components/schemas/sanityImageHotspot"
2141
+ },
2142
+ "media": {
2143
+ "type": "object"
3563
2144
  }
3564
2145
  }
3565
2146
  },
3566
2147
  "sanityPatchSystem": {
3567
2148
  "type": "object",
3568
2149
  "properties": {
3569
- "additionalData": {
3570
- "type": "object",
3571
- "additionalProperties": {
2150
+ "description": {
2151
+ "type": "array",
2152
+ "items": {
3572
2153
  "type": "object"
3573
2154
  }
3574
2155
  },
3575
- "description": {
3576
- "$ref": "#/components/schemas/untypedNode"
3577
- },
3578
2156
  "links": {
3579
2157
  "type": "array",
3580
2158
  "items": {
@@ -3583,20 +2161,32 @@
3583
2161
  },
3584
2162
  "title": {
3585
2163
  "type": "string"
2164
+ },
2165
+ "additionalProperties": {
2166
+ "type": "object",
2167
+ "additionalProperties": {
2168
+ "type": "object"
2169
+ }
3586
2170
  }
3587
2171
  }
3588
2172
  },
3589
2173
  "sanityPatchTask": {
3590
2174
  "type": "object",
3591
2175
  "properties": {
3592
- "additionalData": {
3593
- "type": "object",
3594
- "additionalProperties": {
3595
- "type": "object"
3596
- }
2176
+ "type": {
2177
+ "enum": [
2178
+ "onboarding",
2179
+ "offboarding"
2180
+ ],
2181
+ "type": "string",
2182
+ "default": "onboarding",
2183
+ "nullable": true
3597
2184
  },
3598
2185
  "description": {
3599
- "$ref": "#/components/schemas/untypedNode"
2186
+ "type": "array",
2187
+ "items": {
2188
+ "type": "object"
2189
+ }
3600
2190
  },
3601
2191
  "reminderSlackChannel": {
3602
2192
  "type": "string"
@@ -3609,61 +2199,44 @@
3609
2199
  "title": {
3610
2200
  "type": "string"
3611
2201
  },
3612
- "type": {
3613
- "enum": [
3614
- 0,
3615
- 1
3616
- ],
3617
- "type": "integer",
3618
- "format": "int32",
3619
- "default": 0,
3620
- "nullable": true
3621
- }
3622
- }
3623
- },
3624
- "sanitySlug": {
3625
- "type": "object",
3626
- "properties": {
3627
- "additionalData": {
2202
+ "additionalProperties": {
3628
2203
  "type": "object",
3629
2204
  "additionalProperties": {
3630
2205
  "type": "object"
3631
2206
  }
3632
- },
3633
- "current": {
3634
- "type": "string"
3635
- },
3636
- "sanityType": {
3637
- "enum": [
3638
- 0
3639
- ],
3640
- "type": "integer",
3641
- "format": "int32",
3642
- "default": 0,
3643
- "nullable": true
3644
- },
3645
- "source": {
3646
- "type": "string"
3647
2207
  }
3648
2208
  }
3649
2209
  },
3650
- "sanitySystems": {
2210
+ "sanitySystemsInner": {
3651
2211
  "type": "object",
3652
2212
  "properties": {
3653
- "additionalData": {
3654
- "type": "object",
3655
- "additionalProperties": {
3656
- "type": "object"
3657
- }
2213
+ "reminderSlackChannel": {
2214
+ "enum": [
2215
+ "#spor-økonomi",
2216
+ "#spor-rekruttering",
2217
+ "#spor-selskapsadmin",
2218
+ "#spor-sosialt",
2219
+ "#spor-utvikling"
2220
+ ],
2221
+ "type": "string",
2222
+ "default": "#spor-økonomi",
2223
+ "nullable": true
2224
+ },
2225
+ "sanityType": {
2226
+ "enum": [
2227
+ "system"
2228
+ ],
2229
+ "type": "string",
2230
+ "default": "system"
3658
2231
  },
3659
2232
  "description": {
3660
2233
  "type": "array",
3661
2234
  "items": {
3662
- "$ref": "#/components/schemas/sanitySystems_description"
2235
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
3663
2236
  }
3664
2237
  },
3665
2238
  "image": {
3666
- "$ref": "#/components/schemas/sanitySystems_image"
2239
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
3667
2240
  },
3668
2241
  "links": {
3669
2242
  "type": "array",
@@ -3673,21 +2246,7 @@
3673
2246
  },
3674
2247
  "remindDaysBefore": {
3675
2248
  "type": "number",
3676
- "format": "double",
3677
- "nullable": true
3678
- },
3679
- "reminderSlackChannel": {
3680
- "enum": [
3681
- 0,
3682
- 1,
3683
- 2,
3684
- 3,
3685
- 4
3686
- ],
3687
- "type": "integer",
3688
- "format": "int32",
3689
- "default": 0,
3690
- "nullable": true
2249
+ "format": "double"
3691
2250
  },
3692
2251
  "sanityCreatedAt": {
3693
2252
  "type": "string"
@@ -3698,15 +2257,6 @@
3698
2257
  "sanityRev": {
3699
2258
  "type": "string"
3700
2259
  },
3701
- "sanityType": {
3702
- "enum": [
3703
- 0
3704
- ],
3705
- "type": "integer",
3706
- "format": "int32",
3707
- "default": 0,
3708
- "nullable": true
3709
- },
3710
2260
  "sanityUpdatedAt": {
3711
2261
  "type": "string"
3712
2262
  },
@@ -3715,161 +2265,172 @@
3715
2265
  }
3716
2266
  }
3717
2267
  },
3718
- "sanitySystems_description": {
2268
+ "sanitySystemsInnerDescriptionInner": {
3719
2269
  "type": "object",
3720
2270
  "properties": {
3721
- "additionalData": {
3722
- "type": "object",
3723
- "additionalProperties": {
3724
- "type": "object"
3725
- }
2271
+ "listItem": {
2272
+ "enum": [
2273
+ "bullet",
2274
+ "number"
2275
+ ],
2276
+ "type": "string",
2277
+ "default": "bullet",
2278
+ "nullable": true
2279
+ },
2280
+ "sanityType": {
2281
+ "enum": [
2282
+ "block"
2283
+ ],
2284
+ "type": "string",
2285
+ "default": "block"
2286
+ },
2287
+ "style": {
2288
+ "enum": [
2289
+ "blockquote",
2290
+ "h1",
2291
+ "h2",
2292
+ "h3",
2293
+ "h4",
2294
+ "h5",
2295
+ "h6",
2296
+ "normal"
2297
+ ],
2298
+ "type": "string",
2299
+ "default": "blockquote",
2300
+ "nullable": true
3726
2301
  },
3727
2302
  "children": {
3728
2303
  "type": "array",
3729
2304
  "items": {
3730
- "$ref": "#/components/schemas/sanitySystems_description_children"
2305
+ "$ref": "#/components/schemas/componentBlocksInnerOneOfChildrenInner"
3731
2306
  }
3732
2307
  },
3733
2308
  "level": {
3734
2309
  "type": "number",
3735
- "format": "double",
3736
- "nullable": true
3737
- },
3738
- "listItem": {
3739
- "enum": [
3740
- 0,
3741
- 1
3742
- ],
3743
- "type": "integer",
3744
- "format": "int32",
3745
- "default": 0,
3746
- "nullable": true
2310
+ "format": "double"
3747
2311
  },
3748
2312
  "markDefs": {
3749
2313
  "type": "array",
3750
2314
  "items": {
3751
- "$ref": "#/components/schemas/sanitySystems_description_markDefs"
2315
+ "$ref": "#/components/schemas/componentBlocksInnerOneOfMarkDefsInner"
3752
2316
  }
3753
2317
  },
3754
2318
  "sanityKey": {
3755
2319
  "type": "string"
3756
- },
3757
- "sanityType": {
3758
- "enum": [
3759
- 0
3760
- ],
3761
- "type": "integer",
3762
- "format": "int32",
3763
- "default": 0,
3764
- "nullable": true
3765
- },
3766
- "style": {
3767
- "enum": [
3768
- 0,
3769
- 1,
3770
- 2,
3771
- 3,
3772
- 4,
3773
- 5,
3774
- 6,
3775
- 7
3776
- ],
3777
- "type": "integer",
3778
- "format": "int32",
3779
- "default": 0,
3780
- "nullable": true
3781
2320
  }
3782
2321
  }
3783
2322
  },
3784
- "sanitySystems_description_children": {
2323
+ "sanityTask": {
3785
2324
  "type": "object",
3786
2325
  "properties": {
3787
- "additionalData": {
3788
- "type": "object",
3789
- "additionalProperties": {
3790
- "type": "object"
3791
- }
2326
+ "type": {
2327
+ "enum": [
2328
+ "onboarding",
2329
+ "offboarding"
2330
+ ],
2331
+ "type": "string",
2332
+ "default": "onboarding"
3792
2333
  },
3793
- "marks": {
2334
+ "description": {
3794
2335
  "type": "array",
3795
2336
  "items": {
3796
- "type": "string"
2337
+ "type": "object"
3797
2338
  }
3798
2339
  },
3799
- "sanityKey": {
2340
+ "reminderSlackChannel": {
3800
2341
  "type": "string"
3801
2342
  },
3802
- "sanityType": {
3803
- "enum": [
3804
- 0
3805
- ],
3806
- "type": "integer",
3807
- "format": "int32",
3808
- "default": 0,
2343
+ "reminderWeeksBefore": {
2344
+ "type": "number",
2345
+ "format": "double",
3809
2346
  "nullable": true
3810
2347
  },
3811
- "text": {
2348
+ "sanityCreatedAt": {
2349
+ "type": "string"
2350
+ },
2351
+ "sanityId": {
2352
+ "type": "string"
2353
+ },
2354
+ "sanityRev": {
2355
+ "type": "string"
2356
+ },
2357
+ "sanityType": {
2358
+ "type": "string"
2359
+ },
2360
+ "sanityUpdatedAt": {
3812
2361
  "type": "string"
2362
+ },
2363
+ "title": {
2364
+ "type": "string"
2365
+ },
2366
+ "additionalProperties": {
2367
+ "type": "object",
2368
+ "additionalProperties": {
2369
+ "type": "object"
2370
+ }
3813
2371
  }
3814
2372
  }
3815
2373
  },
3816
- "sanitySystems_description_markDefs": {
2374
+ "sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent": {
3817
2375
  "type": "object",
3818
2376
  "properties": {
3819
- "additionalData": {
3820
- "type": "object",
3821
- "additionalProperties": {
3822
- "type": "object"
3823
- }
2377
+ "sanityType": {
2378
+ "enum": [
2379
+ "tag"
2380
+ ],
2381
+ "type": "string",
2382
+ "default": "tag"
3824
2383
  },
3825
- "href": {
2384
+ "name": {
3826
2385
  "type": "string"
3827
2386
  },
3828
- "sanityKey": {
2387
+ "sanityId": {
3829
2388
  "type": "string"
3830
2389
  },
2390
+ "slug": {
2391
+ "$ref": "#/components/schemas/slug"
2392
+ }
2393
+ }
2394
+ },
2395
+ "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo": {
2396
+ "type": "object",
2397
+ "properties": {
3831
2398
  "sanityType": {
3832
2399
  "enum": [
3833
- 0
2400
+ "image"
3834
2401
  ],
3835
- "type": "integer",
3836
- "format": "int32",
3837
- "default": 0,
3838
- "nullable": true
2402
+ "type": "string",
2403
+ "default": "image"
2404
+ },
2405
+ "asset": {
2406
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
3839
2407
  }
3840
2408
  }
3841
2409
  },
3842
- "sanitySystems_image": {
2410
+ "sanityTvCategoryDashboardsInnerBackgroundImage": {
3843
2411
  "type": "object",
3844
2412
  "properties": {
3845
- "additionalData": {
3846
- "type": "object",
3847
- "additionalProperties": {
3848
- "type": "object"
3849
- }
3850
- },
3851
- "asset": {
3852
- "$ref": "#/components/schemas/sanitySystems_image_asset"
3853
- },
3854
2413
  "sanityType": {
3855
2414
  "enum": [
3856
- 0
2415
+ "image"
3857
2416
  ],
3858
- "type": "integer",
3859
- "format": "int32",
3860
- "default": 0,
3861
- "nullable": true
2417
+ "type": "string",
2418
+ "default": "image"
2419
+ },
2420
+ "asset": {
2421
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
3862
2422
  }
3863
2423
  }
3864
2424
  },
3865
- "sanitySystems_image_asset": {
2425
+ "sanityTvCategoryDashboardsInnerBackgroundImageAsset": {
3866
2426
  "type": "object",
3867
2427
  "properties": {
3868
- "additionalData": {
3869
- "type": "object",
3870
- "additionalProperties": {
3871
- "type": "object"
3872
- }
2428
+ "sanityType": {
2429
+ "enum": [
2430
+ "sanity.imageAsset"
2431
+ ],
2432
+ "type": "string",
2433
+ "default": "sanity.imageAsset"
3873
2434
  },
3874
2435
  "mimeType": {
3875
2436
  "type": "string"
@@ -3880,72 +2441,28 @@
3880
2441
  "sanityId": {
3881
2442
  "type": "string"
3882
2443
  },
3883
- "sanityType": {
3884
- "enum": [
3885
- 0
3886
- ],
3887
- "type": "integer",
3888
- "format": "int32",
3889
- "default": 0,
3890
- "nullable": true
3891
- },
3892
2444
  "url": {
3893
2445
  "type": "string"
3894
2446
  }
3895
2447
  }
3896
2448
  },
3897
- "sanityTask": {
2449
+ "slug": {
3898
2450
  "type": "object",
3899
2451
  "properties": {
3900
- "additionalData": {
3901
- "type": "object",
3902
- "additionalProperties": {
3903
- "type": "object"
3904
- }
3905
- },
3906
- "description": {
3907
- "$ref": "#/components/schemas/untypedNode"
3908
- },
3909
- "reminderSlackChannel": {
3910
- "type": "string"
3911
- },
3912
- "reminderWeeksBefore": {
3913
- "type": "number",
3914
- "format": "double",
3915
- "nullable": true
3916
- },
3917
- "sanityCreatedAt": {
3918
- "type": "string"
3919
- },
3920
- "sanityId": {
3921
- "type": "string"
3922
- },
3923
- "sanityRev": {
3924
- "type": "string"
3925
- },
3926
2452
  "sanityType": {
3927
- "type": "string"
2453
+ "enum": [
2454
+ "slug"
2455
+ ],
2456
+ "type": "string",
2457
+ "default": "slug"
3928
2458
  },
3929
- "sanityUpdatedAt": {
2459
+ "current": {
3930
2460
  "type": "string"
3931
2461
  },
3932
- "title": {
2462
+ "source": {
3933
2463
  "type": "string"
3934
- },
3935
- "type": {
3936
- "enum": [
3937
- 0,
3938
- 1
3939
- ],
3940
- "type": "integer",
3941
- "format": "int32",
3942
- "default": 0,
3943
- "nullable": true
3944
2464
  }
3945
2465
  }
3946
- },
3947
- "untypedNode": {
3948
- "type": "object"
3949
2466
  }
3950
2467
  },
3951
2468
  "securitySchemes": {