@snokam/mcp-api 2.44.0 → 2.45.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.
@@ -33,7 +33,1865 @@
33
33
  }
34
34
  }
35
35
  }
36
+ },
37
+ "/v1.0/protected/candidates": {
38
+ "get": {
39
+ "tags": [
40
+ "Candidates"
41
+ ],
42
+ "summary": "List recruitment candidates",
43
+ "description": "Returns every candidate document in Sanity — pipeline, applications and archived.",
44
+ "operationId": "ListCandidates",
45
+ "responses": {
46
+ "200": {
47
+ "description": "All candidates",
48
+ "content": {
49
+ "application/json": {
50
+ "schema": {
51
+ "type": "array",
52
+ "items": {
53
+ "$ref": "#/components/schemas/sanityCandidate"
54
+ }
55
+ }
56
+ }
57
+ },
58
+ "x-ms-summary": "Success"
59
+ },
60
+ "401": {
61
+ "description": "No description",
62
+ "x-ms-summary": "Unauthorized"
63
+ }
64
+ },
65
+ "security": [
66
+ {
67
+ "Implicit": [
68
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
69
+ ]
70
+ }
71
+ ]
72
+ }
73
+ },
74
+ "/v1.0/protected/candidates/{id}": {
75
+ "get": {
76
+ "tags": [
77
+ "Candidates"
78
+ ],
79
+ "summary": "Get a candidate by id",
80
+ "description": "Returns a fully-hydrated candidate including references, documents, systems and checklists.",
81
+ "operationId": "GetCandidate",
82
+ "parameters": [
83
+ {
84
+ "name": "id",
85
+ "in": "path",
86
+ "required": true,
87
+ "schema": {
88
+ "type": "string"
89
+ },
90
+ "x-ms-summary": "Candidate Sanity id"
91
+ }
92
+ ],
93
+ "responses": {
94
+ "200": {
95
+ "description": "Payload of SanityCandidate",
96
+ "content": {
97
+ "application/json": {
98
+ "schema": {
99
+ "$ref": "#/components/schemas/sanityCandidate"
100
+ }
101
+ }
102
+ },
103
+ "x-ms-summary": "Success"
104
+ },
105
+ "401": {
106
+ "description": "No description",
107
+ "x-ms-summary": "Unauthorized"
108
+ },
109
+ "404": {
110
+ "description": "No description",
111
+ "x-ms-summary": "Not Found"
112
+ }
113
+ },
114
+ "security": [
115
+ {
116
+ "Implicit": [
117
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
118
+ ]
119
+ }
120
+ ]
121
+ },
122
+ "patch": {
123
+ "tags": [
124
+ "Candidates"
125
+ ],
126
+ "summary": "Patch candidate fields",
127
+ "description": "Updates any subset of candidate fields — status, buddy, recruiter, systems, checklists, contact info.",
128
+ "operationId": "PatchCandidate",
129
+ "parameters": [
130
+ {
131
+ "name": "id",
132
+ "in": "path",
133
+ "required": true,
134
+ "schema": {
135
+ "type": "string"
136
+ },
137
+ "x-ms-summary": "Candidate Sanity id"
138
+ }
139
+ ],
140
+ "requestBody": {
141
+ "description": "Partial candidate fields to update",
142
+ "content": {
143
+ "application/json": {
144
+ "schema": {
145
+ "$ref": "#/components/schemas/sanityPatchCandidate"
146
+ }
147
+ }
148
+ },
149
+ "required": true
150
+ },
151
+ "responses": {
152
+ "200": {
153
+ "description": "The patched candidate",
154
+ "content": {
155
+ "application/json": {
156
+ "schema": {
157
+ "$ref": "#/components/schemas/sanityCandidate"
158
+ }
159
+ }
160
+ },
161
+ "x-ms-summary": "Success"
162
+ },
163
+ "400": {
164
+ "description": "Payload of Object",
165
+ "content": {
166
+ "application/json": {
167
+ "schema": {
168
+ "type": "object"
169
+ }
170
+ }
171
+ },
172
+ "x-ms-summary": "Bad Request"
173
+ },
174
+ "401": {
175
+ "description": "No description",
176
+ "x-ms-summary": "Unauthorized"
177
+ },
178
+ "404": {
179
+ "description": "No description",
180
+ "x-ms-summary": "Not Found"
181
+ }
182
+ },
183
+ "security": [
184
+ {
185
+ "Implicit": [
186
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
187
+ ]
188
+ }
189
+ ]
190
+ }
191
+ },
192
+ "/v1.0/protected/candidates/{id}/promote": {
193
+ "post": {
194
+ "tags": [
195
+ "Candidates"
196
+ ],
197
+ "summary": "Promote a public job application to the pipeline",
198
+ "description": "Flips fromApplication=false and bumps status to INTRODUCTION so the candidate appears in the admin pipeline.",
199
+ "operationId": "PromoteApplication",
200
+ "parameters": [
201
+ {
202
+ "name": "id",
203
+ "in": "path",
204
+ "required": true,
205
+ "schema": {
206
+ "type": "string"
207
+ },
208
+ "x-ms-summary": "Candidate Sanity id"
209
+ }
210
+ ],
211
+ "responses": {
212
+ "200": {
213
+ "description": "The promoted candidate",
214
+ "content": {
215
+ "application/json": {
216
+ "schema": {
217
+ "$ref": "#/components/schemas/sanityCandidate"
218
+ }
219
+ }
220
+ },
221
+ "x-ms-summary": "Success"
222
+ },
223
+ "400": {
224
+ "description": "Candidate is not a public job application",
225
+ "content": {
226
+ "application/json": {
227
+ "schema": {
228
+ "type": "object"
229
+ }
230
+ }
231
+ },
232
+ "x-ms-summary": "Bad Request"
233
+ },
234
+ "401": {
235
+ "description": "No description",
236
+ "x-ms-summary": "Unauthorized"
237
+ },
238
+ "404": {
239
+ "description": "No description",
240
+ "x-ms-summary": "Not Found"
241
+ }
242
+ },
243
+ "security": [
244
+ {
245
+ "Implicit": [
246
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
247
+ ]
248
+ }
249
+ ]
250
+ }
251
+ },
252
+ "/v1.0/protected/candidates/{id}/reject": {
253
+ "post": {
254
+ "tags": [
255
+ "Candidates"
256
+ ],
257
+ "summary": "Reject a candidate",
258
+ "description": "Sets status=REJECTED. Convenience wrapper over PatchCandidate so UIs have a single-action reject button.",
259
+ "operationId": "RejectCandidate",
260
+ "parameters": [
261
+ {
262
+ "name": "id",
263
+ "in": "path",
264
+ "required": true,
265
+ "schema": {
266
+ "type": "string"
267
+ },
268
+ "x-ms-summary": "Candidate Sanity id"
269
+ }
270
+ ],
271
+ "responses": {
272
+ "200": {
273
+ "description": "Payload of SanityCandidate",
274
+ "content": {
275
+ "application/json": {
276
+ "schema": {
277
+ "$ref": "#/components/schemas/sanityCandidate"
278
+ }
279
+ }
280
+ },
281
+ "x-ms-summary": "Success"
282
+ },
283
+ "401": {
284
+ "description": "No description",
285
+ "x-ms-summary": "Unauthorized"
286
+ },
287
+ "404": {
288
+ "description": "No description",
289
+ "x-ms-summary": "Not Found"
290
+ }
291
+ },
292
+ "security": [
293
+ {
294
+ "Implicit": [
295
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
296
+ ]
297
+ }
298
+ ]
299
+ }
300
+ },
301
+ "/v1.0/protected/job-positions": {
302
+ "get": {
303
+ "tags": [
304
+ "JobPositions"
305
+ ],
306
+ "summary": "List published job positions",
307
+ "description": "Returns every job position document. Used by the admin stillinger page.",
308
+ "operationId": "ListJobPositions",
309
+ "responses": {
310
+ "200": {
311
+ "description": "Payload of Array of SanityJobPosition",
312
+ "content": {
313
+ "application/json": {
314
+ "schema": {
315
+ "type": "array",
316
+ "items": {
317
+ "$ref": "#/components/schemas/sanityJobPosition"
318
+ }
319
+ }
320
+ }
321
+ },
322
+ "x-ms-summary": "Success"
323
+ },
324
+ "401": {
325
+ "description": "No description",
326
+ "x-ms-summary": "Unauthorized"
327
+ }
328
+ },
329
+ "security": [
330
+ {
331
+ "Implicit": [
332
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
333
+ ]
334
+ }
335
+ ]
336
+ }
337
+ },
338
+ "/v1.0/protected/systems": {
339
+ "get": {
340
+ "tags": [
341
+ "Systems"
342
+ ],
343
+ "summary": "List systems used for onboarding checklists",
344
+ "description": "Returns every system document. Used by the candidate detail and systems library pages.",
345
+ "operationId": "ListSystems",
346
+ "responses": {
347
+ "200": {
348
+ "description": "Payload of Array of SanitySystemsInner",
349
+ "content": {
350
+ "application/json": {
351
+ "schema": {
352
+ "type": "array",
353
+ "items": {
354
+ "$ref": "#/components/schemas/sanitySystemsInner"
355
+ }
356
+ }
357
+ }
358
+ },
359
+ "x-ms-summary": "Success"
360
+ },
361
+ "401": {
362
+ "description": "No description",
363
+ "x-ms-summary": "Unauthorized"
364
+ }
365
+ },
366
+ "security": [
367
+ {
368
+ "Implicit": [
369
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
370
+ ]
371
+ }
372
+ ]
373
+ },
374
+ "post": {
375
+ "tags": [
376
+ "Systems"
377
+ ],
378
+ "summary": "Create a system",
379
+ "description": "Adds a new system to the onboarding/offboarding system library.",
380
+ "operationId": "CreateSystem",
381
+ "requestBody": {
382
+ "content": {
383
+ "application/json": {
384
+ "schema": {
385
+ "$ref": "#/components/schemas/sanityCreateSystem"
386
+ }
387
+ }
388
+ },
389
+ "required": true
390
+ },
391
+ "responses": {
392
+ "200": {
393
+ "description": "Payload of SanitySystemsInner",
394
+ "content": {
395
+ "application/json": {
396
+ "schema": {
397
+ "$ref": "#/components/schemas/sanitySystemsInner"
398
+ }
399
+ }
400
+ },
401
+ "x-ms-summary": "Success"
402
+ },
403
+ "400": {
404
+ "description": "Payload of Object",
405
+ "content": {
406
+ "application/json": {
407
+ "schema": {
408
+ "type": "object"
409
+ }
410
+ }
411
+ },
412
+ "x-ms-summary": "Bad Request"
413
+ },
414
+ "401": {
415
+ "description": "No description",
416
+ "x-ms-summary": "Unauthorized"
417
+ }
418
+ },
419
+ "security": [
420
+ {
421
+ "Implicit": [
422
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
423
+ ]
424
+ }
425
+ ]
426
+ }
427
+ },
428
+ "/v1.0/protected/onboarding-tasks": {
429
+ "get": {
430
+ "tags": [
431
+ "Tasks"
432
+ ],
433
+ "summary": "List every onboarding task",
434
+ "description": "Returns all onboarding tasks with their Portable Text description so the admin can render an editable checklist with contextual notes.",
435
+ "operationId": "ListOnboardingTasks",
436
+ "responses": {
437
+ "200": {
438
+ "description": "Payload of Array of SanityTask",
439
+ "content": {
440
+ "application/json": {
441
+ "schema": {
442
+ "type": "array",
443
+ "items": {
444
+ "$ref": "#/components/schemas/sanityTask"
445
+ }
446
+ }
447
+ }
448
+ },
449
+ "x-ms-summary": "Success"
450
+ },
451
+ "401": {
452
+ "description": "No description",
453
+ "x-ms-summary": "Unauthorized"
454
+ }
455
+ },
456
+ "security": [
457
+ {
458
+ "Implicit": [
459
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
460
+ ]
461
+ }
462
+ ]
463
+ }
464
+ },
465
+ "/v1.0/protected/offboarding-tasks": {
466
+ "get": {
467
+ "tags": [
468
+ "Tasks"
469
+ ],
470
+ "summary": "List every offboarding task",
471
+ "description": "Returns all offboarding tasks with their Portable Text description for the admin offboarding checklist.",
472
+ "operationId": "ListOffboardingTasks",
473
+ "responses": {
474
+ "200": {
475
+ "description": "Payload of Array of SanityTask",
476
+ "content": {
477
+ "application/json": {
478
+ "schema": {
479
+ "type": "array",
480
+ "items": {
481
+ "$ref": "#/components/schemas/sanityTask"
482
+ }
483
+ }
484
+ }
485
+ },
486
+ "x-ms-summary": "Success"
487
+ },
488
+ "401": {
489
+ "description": "No description",
490
+ "x-ms-summary": "Unauthorized"
491
+ }
492
+ },
493
+ "security": [
494
+ {
495
+ "Implicit": [
496
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
497
+ ]
498
+ }
499
+ ]
500
+ }
501
+ },
502
+ "/v1.0/protected/onboarding-tasks/with-reminder": {
503
+ "get": {
504
+ "tags": [
505
+ "Tasks"
506
+ ],
507
+ "summary": "List onboarding tasks with a Slack reminder",
508
+ "description": "Returns onboarding tasks that have reminderWeeksBefore + reminderSlackChannel set. Used by the admin oppgaver page.",
509
+ "operationId": "ListOnboardingTasksWithReminder",
510
+ "responses": {
511
+ "200": {
512
+ "description": "Payload of Array of SanityOnboardingTask",
513
+ "content": {
514
+ "application/json": {
515
+ "schema": {
516
+ "type": "array",
517
+ "items": {
518
+ "$ref": "#/components/schemas/sanityOnboardingTask"
519
+ }
520
+ }
521
+ }
522
+ },
523
+ "x-ms-summary": "Success"
524
+ },
525
+ "401": {
526
+ "description": "No description",
527
+ "x-ms-summary": "Unauthorized"
528
+ }
529
+ },
530
+ "security": [
531
+ {
532
+ "Implicit": [
533
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
534
+ ]
535
+ }
536
+ ]
537
+ }
538
+ },
539
+ "/v1.0/protected/tasks": {
540
+ "post": {
541
+ "tags": [
542
+ "Tasks"
543
+ ],
544
+ "summary": "Create an onboarding or offboarding task",
545
+ "description": "Adds a new task document to the library with optional Portable Text description and Slack reminder settings.",
546
+ "operationId": "CreateTask",
547
+ "requestBody": {
548
+ "content": {
549
+ "application/json": {
550
+ "schema": {
551
+ "$ref": "#/components/schemas/sanityCreateTask"
552
+ }
553
+ }
554
+ },
555
+ "required": true
556
+ },
557
+ "responses": {
558
+ "200": {
559
+ "description": "Payload of SanityTask",
560
+ "content": {
561
+ "application/json": {
562
+ "schema": {
563
+ "$ref": "#/components/schemas/sanityTask"
564
+ }
565
+ }
566
+ },
567
+ "x-ms-summary": "Success"
568
+ },
569
+ "400": {
570
+ "description": "Payload of Object",
571
+ "content": {
572
+ "application/json": {
573
+ "schema": {
574
+ "type": "object"
575
+ }
576
+ }
577
+ },
578
+ "x-ms-summary": "Bad Request"
579
+ },
580
+ "401": {
581
+ "description": "No description",
582
+ "x-ms-summary": "Unauthorized"
583
+ }
584
+ },
585
+ "security": [
586
+ {
587
+ "Implicit": [
588
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
589
+ ]
590
+ }
591
+ ]
592
+ }
593
+ },
594
+ "/v1.0/protected/tasks/{id}": {
595
+ "patch": {
596
+ "tags": [
597
+ "Tasks"
598
+ ],
599
+ "summary": "Update an onboarding or offboarding task",
600
+ "description": "Partially updates a task. Omitted fields are left unchanged; pass null to clear an optional field.",
601
+ "operationId": "PatchTask",
602
+ "parameters": [
603
+ {
604
+ "name": "id",
605
+ "in": "path",
606
+ "required": true,
607
+ "schema": {
608
+ "type": "string"
609
+ }
610
+ }
611
+ ],
612
+ "requestBody": {
613
+ "content": {
614
+ "application/json": {
615
+ "schema": {
616
+ "$ref": "#/components/schemas/sanityPatchTask"
617
+ }
618
+ }
619
+ },
620
+ "required": true
621
+ },
622
+ "responses": {
623
+ "200": {
624
+ "description": "Payload of SanityTask",
625
+ "content": {
626
+ "application/json": {
627
+ "schema": {
628
+ "$ref": "#/components/schemas/sanityTask"
629
+ }
630
+ }
631
+ },
632
+ "x-ms-summary": "Success"
633
+ },
634
+ "400": {
635
+ "description": "Payload of Object",
636
+ "content": {
637
+ "application/json": {
638
+ "schema": {
639
+ "type": "object"
640
+ }
641
+ }
642
+ },
643
+ "x-ms-summary": "Bad Request"
644
+ },
645
+ "401": {
646
+ "description": "No description",
647
+ "x-ms-summary": "Unauthorized"
648
+ },
649
+ "404": {
650
+ "description": "No description",
651
+ "x-ms-summary": "Not Found"
652
+ }
653
+ },
654
+ "security": [
655
+ {
656
+ "Implicit": [
657
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
658
+ ]
659
+ }
660
+ ]
661
+ },
662
+ "delete": {
663
+ "tags": [
664
+ "Tasks"
665
+ ],
666
+ "summary": "Delete a task",
667
+ "description": "Removes a task from the library. Does not touch candidate checklists that reference it.",
668
+ "operationId": "DeleteTask",
669
+ "parameters": [
670
+ {
671
+ "name": "id",
672
+ "in": "path",
673
+ "required": true,
674
+ "schema": {
675
+ "type": "string"
676
+ }
677
+ }
678
+ ],
679
+ "responses": {
680
+ "200": {
681
+ "description": "Payload of SanityTask",
682
+ "content": {
683
+ "application/json": {
684
+ "schema": {
685
+ "$ref": "#/components/schemas/sanityTask"
686
+ }
687
+ }
688
+ },
689
+ "x-ms-summary": "Success"
690
+ },
691
+ "401": {
692
+ "description": "No description",
693
+ "x-ms-summary": "Unauthorized"
694
+ },
695
+ "404": {
696
+ "description": "No description",
697
+ "x-ms-summary": "Not Found"
698
+ }
699
+ },
700
+ "security": [
701
+ {
702
+ "Implicit": [
703
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
704
+ ]
705
+ }
706
+ ]
707
+ }
708
+ },
709
+ "/v1.0/protected/systems/{id}": {
710
+ "patch": {
711
+ "tags": [
712
+ "Systems"
713
+ ],
714
+ "summary": "Update a system",
715
+ "operationId": "PatchSystem",
716
+ "parameters": [
717
+ {
718
+ "name": "id",
719
+ "in": "path",
720
+ "required": true,
721
+ "schema": {
722
+ "type": "string"
723
+ }
724
+ }
725
+ ],
726
+ "requestBody": {
727
+ "content": {
728
+ "application/json": {
729
+ "schema": {
730
+ "$ref": "#/components/schemas/sanityPatchSystem"
731
+ }
732
+ }
733
+ },
734
+ "required": true
735
+ },
736
+ "responses": {
737
+ "200": {
738
+ "description": "Payload of SanitySystemsInner",
739
+ "content": {
740
+ "application/json": {
741
+ "schema": {
742
+ "$ref": "#/components/schemas/sanitySystemsInner"
743
+ }
744
+ }
745
+ },
746
+ "x-ms-summary": "Success"
747
+ },
748
+ "400": {
749
+ "description": "Payload of Object",
750
+ "content": {
751
+ "application/json": {
752
+ "schema": {
753
+ "type": "object"
754
+ }
755
+ }
756
+ },
757
+ "x-ms-summary": "Bad Request"
758
+ },
759
+ "401": {
760
+ "description": "No description",
761
+ "x-ms-summary": "Unauthorized"
762
+ },
763
+ "404": {
764
+ "description": "No description",
765
+ "x-ms-summary": "Not Found"
766
+ }
767
+ },
768
+ "security": [
769
+ {
770
+ "Implicit": [
771
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
772
+ ]
773
+ }
774
+ ]
775
+ },
776
+ "delete": {
777
+ "tags": [
778
+ "Systems"
779
+ ],
780
+ "summary": "Delete a system",
781
+ "operationId": "DeleteSystem",
782
+ "parameters": [
783
+ {
784
+ "name": "id",
785
+ "in": "path",
786
+ "required": true,
787
+ "schema": {
788
+ "type": "string"
789
+ }
790
+ }
791
+ ],
792
+ "responses": {
793
+ "200": {
794
+ "description": "Payload of SanitySystemsInner",
795
+ "content": {
796
+ "application/json": {
797
+ "schema": {
798
+ "$ref": "#/components/schemas/sanitySystemsInner"
799
+ }
800
+ }
801
+ },
802
+ "x-ms-summary": "Success"
803
+ },
804
+ "401": {
805
+ "description": "No description",
806
+ "x-ms-summary": "Unauthorized"
807
+ },
808
+ "404": {
809
+ "description": "No description",
810
+ "x-ms-summary": "Not Found"
811
+ }
812
+ },
813
+ "security": [
814
+ {
815
+ "Implicit": [
816
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
817
+ ]
818
+ }
819
+ ]
820
+ }
821
+ },
822
+ "/v1.0/protected/employees": {
823
+ "get": {
824
+ "tags": [
825
+ "Employees"
826
+ ],
827
+ "summary": "List employees for buddy/recruiter assignment",
828
+ "description": "Lightweight employee list used by the candidate detail page's buddy and recruiter dropdowns.",
829
+ "operationId": "ListRecruitmentEmployees",
830
+ "responses": {
831
+ "200": {
832
+ "description": "Payload of Array of SanityBasicEmployee",
833
+ "content": {
834
+ "application/json": {
835
+ "schema": {
836
+ "type": "array",
837
+ "items": {
838
+ "$ref": "#/components/schemas/sanityBasicEmployee"
839
+ }
840
+ }
841
+ }
842
+ },
843
+ "x-ms-summary": "Success"
844
+ },
845
+ "401": {
846
+ "description": "No description",
847
+ "x-ms-summary": "Unauthorized"
848
+ }
849
+ },
850
+ "security": [
851
+ {
852
+ "Implicit": [
853
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default"
854
+ ]
855
+ }
856
+ ]
857
+ }
36
858
  }
37
859
  },
38
- "components": {}
860
+ "components": {
861
+ "schemas": {
862
+ "componentBlocksInnerOneOfChildrenInner": {
863
+ "type": "object",
864
+ "properties": {
865
+ "sanityType": {
866
+ "enum": [
867
+ "span"
868
+ ],
869
+ "type": "string",
870
+ "default": "span"
871
+ },
872
+ "marks": {
873
+ "type": "array",
874
+ "items": {
875
+ "type": "string"
876
+ }
877
+ },
878
+ "sanityKey": {
879
+ "type": "string"
880
+ },
881
+ "text": {
882
+ "type": "string"
883
+ }
884
+ }
885
+ },
886
+ "componentBlocksInnerOneOfMarkDefsInner": {
887
+ "type": "object",
888
+ "properties": {
889
+ "sanityType": {
890
+ "enum": [
891
+ "link"
892
+ ],
893
+ "type": "string",
894
+ "default": "link"
895
+ },
896
+ "href": {
897
+ "type": "string"
898
+ },
899
+ "sanityKey": {
900
+ "type": "string"
901
+ }
902
+ }
903
+ },
904
+ "employeeReference": {
905
+ "type": "object",
906
+ "properties": {
907
+ "sanityType": {
908
+ "enum": [
909
+ "reference"
910
+ ],
911
+ "type": "string",
912
+ "default": "reference"
913
+ },
914
+ "sanityRef": {
915
+ "type": "string"
916
+ },
917
+ "sanityWeak": {
918
+ "type": "boolean"
919
+ }
920
+ }
921
+ },
922
+ "sanityAssetSourceData": {
923
+ "type": "object",
924
+ "properties": {
925
+ "sanityType": {
926
+ "enum": [
927
+ "sanity.assetSourceData"
928
+ ],
929
+ "type": "string",
930
+ "default": "sanity.assetSourceData"
931
+ },
932
+ "id": {
933
+ "type": "string"
934
+ },
935
+ "name": {
936
+ "type": "string"
937
+ },
938
+ "url": {
939
+ "type": "string"
940
+ }
941
+ }
942
+ },
943
+ "sanityBasicEmployee": {
944
+ "type": "object",
945
+ "properties": {
946
+ "sanityType": {
947
+ "enum": [
948
+ "employee"
949
+ ],
950
+ "type": "string",
951
+ "default": "employee"
952
+ },
953
+ "email": {
954
+ "type": "string"
955
+ },
956
+ "image": {
957
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
958
+ },
959
+ "name": {
960
+ "type": "string"
961
+ },
962
+ "sanityId": {
963
+ "type": "string"
964
+ },
965
+ "slug": {
966
+ "$ref": "#/components/schemas/slug"
967
+ },
968
+ "tags": {
969
+ "type": "array",
970
+ "items": {
971
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
972
+ }
973
+ },
974
+ "telephone": {
975
+ "type": "string"
976
+ }
977
+ }
978
+ },
979
+ "sanityCandidate": {
980
+ "type": "object",
981
+ "properties": {
982
+ "sanityType": {
983
+ "enum": [
984
+ "candidate"
985
+ ],
986
+ "type": "string",
987
+ "default": "candidate"
988
+ },
989
+ "status": {
990
+ "enum": [
991
+ "CREATED",
992
+ "INTRODUCTION",
993
+ "OFFBOARDING",
994
+ "OFFER",
995
+ "ONBOARDING",
996
+ "REJECTED",
997
+ "SIGNED"
998
+ ],
999
+ "type": "string",
1000
+ "default": "CREATED"
1001
+ },
1002
+ "track": {
1003
+ "enum": [
1004
+ "data_engineer",
1005
+ "developer"
1006
+ ],
1007
+ "type": "string",
1008
+ "default": "data_engineer",
1009
+ "nullable": true
1010
+ },
1011
+ "applicationLetter": {
1012
+ "$ref": "#/components/schemas/sanityCandidateGrades"
1013
+ },
1014
+ "applicationOther": {
1015
+ "type": "string"
1016
+ },
1017
+ "buddy": {
1018
+ "$ref": "#/components/schemas/sanityEmployeeManager"
1019
+ },
1020
+ "candidate": {
1021
+ "type": "string"
1022
+ },
1023
+ "cv": {
1024
+ "$ref": "#/components/schemas/sanityCandidateGrades"
1025
+ },
1026
+ "email": {
1027
+ "type": "string"
1028
+ },
1029
+ "fromApplication": {
1030
+ "type": "boolean"
1031
+ },
1032
+ "grades": {
1033
+ "$ref": "#/components/schemas/sanityCandidateGrades"
1034
+ },
1035
+ "offboardingChecklist": {
1036
+ "type": "array",
1037
+ "items": {
1038
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1039
+ }
1040
+ },
1041
+ "onboardingChecklist": {
1042
+ "type": "array",
1043
+ "items": {
1044
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1045
+ }
1046
+ },
1047
+ "ownership": {
1048
+ "type": "number",
1049
+ "format": "double"
1050
+ },
1051
+ "recruiter": {
1052
+ "$ref": "#/components/schemas/sanityEmployeeManager"
1053
+ },
1054
+ "references": {
1055
+ "type": "array",
1056
+ "items": {
1057
+ "$ref": "#/components/schemas/sanityCandidateReferencesInner"
1058
+ }
1059
+ },
1060
+ "sanityCreatedAt": {
1061
+ "type": "string"
1062
+ },
1063
+ "sanityId": {
1064
+ "type": "string"
1065
+ },
1066
+ "sanityRev": {
1067
+ "type": "string"
1068
+ },
1069
+ "sanityUpdatedAt": {
1070
+ "type": "string"
1071
+ },
1072
+ "shortUrl": {
1073
+ "type": "string"
1074
+ },
1075
+ "systemsActive": {
1076
+ "type": "array",
1077
+ "items": {
1078
+ "$ref": "#/components/schemas/sanitySystemsInner"
1079
+ }
1080
+ },
1081
+ "telephone": {
1082
+ "type": "string"
1083
+ },
1084
+ "url": {
1085
+ "type": "string"
1086
+ }
1087
+ }
1088
+ },
1089
+ "sanityCandidateGrades": {
1090
+ "type": "object",
1091
+ "properties": {
1092
+ "sanityType": {
1093
+ "enum": [
1094
+ "file"
1095
+ ],
1096
+ "type": "string",
1097
+ "default": "file"
1098
+ },
1099
+ "asset": {
1100
+ "$ref": "#/components/schemas/sanityDocFileAsset"
1101
+ },
1102
+ "media": {
1103
+ "type": "object"
1104
+ }
1105
+ }
1106
+ },
1107
+ "sanityCandidateOffboardingChecklistInner": {
1108
+ "type": "object",
1109
+ "properties": {
1110
+ "sanityType": {
1111
+ "enum": [
1112
+ "reference"
1113
+ ],
1114
+ "type": "string",
1115
+ "default": "reference"
1116
+ },
1117
+ "sanityKey": {
1118
+ "type": "string"
1119
+ },
1120
+ "sanityRef": {
1121
+ "type": "string"
1122
+ },
1123
+ "sanityWeak": {
1124
+ "type": "boolean"
1125
+ }
1126
+ }
1127
+ },
1128
+ "sanityCandidateReferencesInner": {
1129
+ "type": "object",
1130
+ "properties": {
1131
+ "sanityType": {
1132
+ "enum": [
1133
+ "candidateReference"
1134
+ ],
1135
+ "type": "string",
1136
+ "default": "candidateReference"
1137
+ },
1138
+ "details": {
1139
+ "type": "string"
1140
+ },
1141
+ "email": {
1142
+ "type": "string"
1143
+ },
1144
+ "name": {
1145
+ "type": "string"
1146
+ },
1147
+ "phone": {
1148
+ "type": "string"
1149
+ },
1150
+ "sanityKey": {
1151
+ "type": "string"
1152
+ }
1153
+ }
1154
+ },
1155
+ "sanityCreateSystem": {
1156
+ "type": "object",
1157
+ "properties": {
1158
+ "description": {
1159
+ "type": "array",
1160
+ "items": {
1161
+ "type": "object"
1162
+ }
1163
+ },
1164
+ "links": {
1165
+ "type": "array",
1166
+ "items": {
1167
+ "type": "string"
1168
+ }
1169
+ },
1170
+ "title": {
1171
+ "type": "string"
1172
+ },
1173
+ "additionalProperties": {
1174
+ "type": "object",
1175
+ "additionalProperties": {
1176
+ "type": "object"
1177
+ }
1178
+ }
1179
+ }
1180
+ },
1181
+ "sanityCreateTask": {
1182
+ "type": "object",
1183
+ "properties": {
1184
+ "type": {
1185
+ "enum": [
1186
+ "onboarding",
1187
+ "offboarding"
1188
+ ],
1189
+ "type": "string",
1190
+ "default": "onboarding"
1191
+ },
1192
+ "description": {
1193
+ "type": "array",
1194
+ "items": {
1195
+ "type": "object"
1196
+ }
1197
+ },
1198
+ "reminderSlackChannel": {
1199
+ "type": "string"
1200
+ },
1201
+ "reminderWeeksBefore": {
1202
+ "type": "number",
1203
+ "format": "double",
1204
+ "nullable": true
1205
+ },
1206
+ "title": {
1207
+ "type": "string"
1208
+ },
1209
+ "additionalProperties": {
1210
+ "type": "object",
1211
+ "additionalProperties": {
1212
+ "type": "object"
1213
+ }
1214
+ }
1215
+ }
1216
+ },
1217
+ "sanityDocFileAsset": {
1218
+ "type": "object",
1219
+ "properties": {
1220
+ "sanityType": {
1221
+ "enum": [
1222
+ "sanity.fileAsset"
1223
+ ],
1224
+ "type": "string",
1225
+ "default": "sanity.fileAsset"
1226
+ },
1227
+ "altText": {
1228
+ "type": "string"
1229
+ },
1230
+ "assetId": {
1231
+ "type": "string"
1232
+ },
1233
+ "description": {
1234
+ "type": "string"
1235
+ },
1236
+ "extension": {
1237
+ "type": "string"
1238
+ },
1239
+ "label": {
1240
+ "type": "string"
1241
+ },
1242
+ "mimeType": {
1243
+ "type": "string"
1244
+ },
1245
+ "originalFilename": {
1246
+ "type": "string"
1247
+ },
1248
+ "path": {
1249
+ "type": "string"
1250
+ },
1251
+ "sanityCreatedAt": {
1252
+ "type": "string"
1253
+ },
1254
+ "sanityId": {
1255
+ "type": "string"
1256
+ },
1257
+ "sanityRev": {
1258
+ "type": "string"
1259
+ },
1260
+ "sanityUpdatedAt": {
1261
+ "type": "string"
1262
+ },
1263
+ "sha1hash": {
1264
+ "type": "string"
1265
+ },
1266
+ "size": {
1267
+ "type": "number",
1268
+ "format": "double"
1269
+ },
1270
+ "source": {
1271
+ "$ref": "#/components/schemas/sanityAssetSourceData"
1272
+ },
1273
+ "title": {
1274
+ "type": "string"
1275
+ },
1276
+ "uploadId": {
1277
+ "type": "string"
1278
+ },
1279
+ "url": {
1280
+ "type": "string"
1281
+ }
1282
+ }
1283
+ },
1284
+ "sanityEmployeeManager": {
1285
+ "type": "object",
1286
+ "properties": {
1287
+ "sanityType": {
1288
+ "enum": [
1289
+ "employee"
1290
+ ],
1291
+ "type": "string",
1292
+ "default": "employee"
1293
+ },
1294
+ "email": {
1295
+ "type": "string"
1296
+ },
1297
+ "image": {
1298
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1299
+ },
1300
+ "name": {
1301
+ "type": "string"
1302
+ },
1303
+ "sanityId": {
1304
+ "type": "string"
1305
+ },
1306
+ "slug": {
1307
+ "$ref": "#/components/schemas/slug"
1308
+ },
1309
+ "tags": {
1310
+ "type": "array",
1311
+ "items": {
1312
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
1313
+ }
1314
+ },
1315
+ "telephone": {
1316
+ "type": "string"
1317
+ }
1318
+ }
1319
+ },
1320
+ "sanityFileAssetReference": {
1321
+ "type": "object",
1322
+ "properties": {
1323
+ "sanityType": {
1324
+ "enum": [
1325
+ "reference"
1326
+ ],
1327
+ "type": "string",
1328
+ "default": "reference"
1329
+ },
1330
+ "sanityRef": {
1331
+ "type": "string"
1332
+ },
1333
+ "sanityWeak": {
1334
+ "type": "boolean"
1335
+ }
1336
+ }
1337
+ },
1338
+ "sanityJobPosition": {
1339
+ "type": "object",
1340
+ "properties": {
1341
+ "sanityType": {
1342
+ "enum": [
1343
+ "jobPosition"
1344
+ ],
1345
+ "type": "string",
1346
+ "default": "jobPosition"
1347
+ },
1348
+ "askForGrades": {
1349
+ "type": "boolean"
1350
+ },
1351
+ "deadline": {
1352
+ "type": "string"
1353
+ },
1354
+ "description": {
1355
+ "type": "array",
1356
+ "items": {
1357
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
1358
+ }
1359
+ },
1360
+ "image": {
1361
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
1362
+ },
1363
+ "metaDescription": {
1364
+ "type": "string"
1365
+ },
1366
+ "sanityCreatedAt": {
1367
+ "type": "string"
1368
+ },
1369
+ "sanityId": {
1370
+ "type": "string"
1371
+ },
1372
+ "sanityRev": {
1373
+ "type": "string"
1374
+ },
1375
+ "sanityUpdatedAt": {
1376
+ "type": "string"
1377
+ },
1378
+ "slug": {
1379
+ "$ref": "#/components/schemas/slug"
1380
+ },
1381
+ "title": {
1382
+ "type": "string"
1383
+ }
1384
+ }
1385
+ },
1386
+ "sanityOnboardingTask": {
1387
+ "type": "object",
1388
+ "properties": {
1389
+ "type": {
1390
+ "enum": [
1391
+ "onboarding"
1392
+ ],
1393
+ "type": "string",
1394
+ "default": "onboarding"
1395
+ },
1396
+ "reminderSlackChannel": {
1397
+ "type": "string"
1398
+ },
1399
+ "reminderWeeksBefore": {
1400
+ "type": "number",
1401
+ "format": "double"
1402
+ },
1403
+ "sanityCreatedAt": {
1404
+ "type": "string"
1405
+ },
1406
+ "sanityId": {
1407
+ "type": "string"
1408
+ },
1409
+ "sanityRev": {
1410
+ "type": "string"
1411
+ },
1412
+ "sanityType": {
1413
+ "type": "string"
1414
+ },
1415
+ "sanityUpdatedAt": {
1416
+ "type": "string"
1417
+ },
1418
+ "title": {
1419
+ "type": "string"
1420
+ },
1421
+ "additionalProperties": {
1422
+ "type": "object",
1423
+ "additionalProperties": {
1424
+ "type": "object"
1425
+ }
1426
+ }
1427
+ }
1428
+ },
1429
+ "sanityPatchCandidate": {
1430
+ "type": "object",
1431
+ "properties": {
1432
+ "sanityType": {
1433
+ "enum": [
1434
+ "candidate"
1435
+ ],
1436
+ "type": "string",
1437
+ "default": "candidate",
1438
+ "nullable": true
1439
+ },
1440
+ "status": {
1441
+ "enum": [
1442
+ "CREATED",
1443
+ "INTRODUCTION",
1444
+ "OFFER",
1445
+ "SIGNED",
1446
+ "ONBOARDING",
1447
+ "OFFBOARDING",
1448
+ "REJECTED"
1449
+ ],
1450
+ "type": "string",
1451
+ "default": "CREATED",
1452
+ "nullable": true
1453
+ },
1454
+ "track": {
1455
+ "enum": [
1456
+ "developer",
1457
+ "data_engineer"
1458
+ ],
1459
+ "type": "string",
1460
+ "default": "developer",
1461
+ "nullable": true
1462
+ },
1463
+ "applicationLetter": {
1464
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
1465
+ },
1466
+ "applicationOther": {
1467
+ "type": "string"
1468
+ },
1469
+ "buddy": {
1470
+ "$ref": "#/components/schemas/employeeReference"
1471
+ },
1472
+ "candidate": {
1473
+ "type": "string"
1474
+ },
1475
+ "cv": {
1476
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
1477
+ },
1478
+ "email": {
1479
+ "type": "string"
1480
+ },
1481
+ "fromApplication": {
1482
+ "type": "boolean",
1483
+ "nullable": true
1484
+ },
1485
+ "grades": {
1486
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
1487
+ },
1488
+ "offboardingChecklist": {
1489
+ "type": "array",
1490
+ "items": {
1491
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1492
+ }
1493
+ },
1494
+ "onboardingChecklist": {
1495
+ "type": "array",
1496
+ "items": {
1497
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1498
+ }
1499
+ },
1500
+ "ownership": {
1501
+ "type": "number",
1502
+ "format": "double",
1503
+ "nullable": true
1504
+ },
1505
+ "recruiter": {
1506
+ "$ref": "#/components/schemas/employeeReference"
1507
+ },
1508
+ "references": {
1509
+ "type": "array",
1510
+ "items": {
1511
+ "$ref": "#/components/schemas/sanityCandidateReferencesInner"
1512
+ }
1513
+ },
1514
+ "shortUrl": {
1515
+ "type": "string"
1516
+ },
1517
+ "systemsActive": {
1518
+ "type": "array",
1519
+ "items": {
1520
+ "$ref": "#/components/schemas/sanityPatchCandidateSystemsActiveInner"
1521
+ }
1522
+ },
1523
+ "telephone": {
1524
+ "type": "string"
1525
+ },
1526
+ "url": {
1527
+ "type": "string"
1528
+ },
1529
+ "additionalProperties": {
1530
+ "type": "object",
1531
+ "additionalProperties": {
1532
+ "type": "object"
1533
+ }
1534
+ }
1535
+ }
1536
+ },
1537
+ "sanityPatchCandidateApplicationLetter": {
1538
+ "type": "object",
1539
+ "properties": {
1540
+ "sanityType": {
1541
+ "enum": [
1542
+ "file"
1543
+ ],
1544
+ "type": "string",
1545
+ "default": "file"
1546
+ },
1547
+ "asset": {
1548
+ "$ref": "#/components/schemas/sanityFileAssetReference"
1549
+ },
1550
+ "media": {
1551
+ "type": "object"
1552
+ }
1553
+ }
1554
+ },
1555
+ "sanityPatchCandidateSystemsActiveInner": {
1556
+ "type": "object",
1557
+ "properties": {
1558
+ "sanityType": {
1559
+ "enum": [
1560
+ "reference"
1561
+ ],
1562
+ "type": "string",
1563
+ "default": "reference"
1564
+ },
1565
+ "sanityKey": {
1566
+ "type": "string"
1567
+ },
1568
+ "sanityRef": {
1569
+ "type": "string"
1570
+ },
1571
+ "sanityWeak": {
1572
+ "type": "boolean"
1573
+ }
1574
+ }
1575
+ },
1576
+ "sanityPatchSystem": {
1577
+ "type": "object",
1578
+ "properties": {
1579
+ "description": {
1580
+ "type": "array",
1581
+ "items": {
1582
+ "type": "object"
1583
+ }
1584
+ },
1585
+ "links": {
1586
+ "type": "array",
1587
+ "items": {
1588
+ "type": "string"
1589
+ }
1590
+ },
1591
+ "title": {
1592
+ "type": "string"
1593
+ },
1594
+ "additionalProperties": {
1595
+ "type": "object",
1596
+ "additionalProperties": {
1597
+ "type": "object"
1598
+ }
1599
+ }
1600
+ }
1601
+ },
1602
+ "sanityPatchTask": {
1603
+ "type": "object",
1604
+ "properties": {
1605
+ "type": {
1606
+ "enum": [
1607
+ "onboarding",
1608
+ "offboarding"
1609
+ ],
1610
+ "type": "string",
1611
+ "default": "onboarding",
1612
+ "nullable": true
1613
+ },
1614
+ "description": {
1615
+ "type": "array",
1616
+ "items": {
1617
+ "type": "object"
1618
+ }
1619
+ },
1620
+ "reminderSlackChannel": {
1621
+ "type": "string"
1622
+ },
1623
+ "reminderWeeksBefore": {
1624
+ "type": "number",
1625
+ "format": "double",
1626
+ "nullable": true
1627
+ },
1628
+ "title": {
1629
+ "type": "string"
1630
+ },
1631
+ "additionalProperties": {
1632
+ "type": "object",
1633
+ "additionalProperties": {
1634
+ "type": "object"
1635
+ }
1636
+ }
1637
+ }
1638
+ },
1639
+ "sanitySystemsInner": {
1640
+ "type": "object",
1641
+ "properties": {
1642
+ "sanityType": {
1643
+ "enum": [
1644
+ "system"
1645
+ ],
1646
+ "type": "string",
1647
+ "default": "system"
1648
+ },
1649
+ "description": {
1650
+ "type": "array",
1651
+ "items": {
1652
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
1653
+ }
1654
+ },
1655
+ "image": {
1656
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
1657
+ },
1658
+ "links": {
1659
+ "type": "array",
1660
+ "items": {
1661
+ "type": "string"
1662
+ }
1663
+ },
1664
+ "sanityCreatedAt": {
1665
+ "type": "string"
1666
+ },
1667
+ "sanityId": {
1668
+ "type": "string"
1669
+ },
1670
+ "sanityRev": {
1671
+ "type": "string"
1672
+ },
1673
+ "sanityUpdatedAt": {
1674
+ "type": "string"
1675
+ },
1676
+ "title": {
1677
+ "type": "string"
1678
+ }
1679
+ }
1680
+ },
1681
+ "sanitySystemsInnerDescriptionInner": {
1682
+ "type": "object",
1683
+ "properties": {
1684
+ "listItem": {
1685
+ "enum": [
1686
+ "bullet",
1687
+ "number"
1688
+ ],
1689
+ "type": "string",
1690
+ "default": "bullet",
1691
+ "nullable": true
1692
+ },
1693
+ "sanityType": {
1694
+ "enum": [
1695
+ "block"
1696
+ ],
1697
+ "type": "string",
1698
+ "default": "block"
1699
+ },
1700
+ "style": {
1701
+ "enum": [
1702
+ "blockquote",
1703
+ "h1",
1704
+ "h2",
1705
+ "h3",
1706
+ "h4",
1707
+ "h5",
1708
+ "h6",
1709
+ "normal"
1710
+ ],
1711
+ "type": "string",
1712
+ "default": "blockquote",
1713
+ "nullable": true
1714
+ },
1715
+ "children": {
1716
+ "type": "array",
1717
+ "items": {
1718
+ "$ref": "#/components/schemas/componentBlocksInnerOneOfChildrenInner"
1719
+ }
1720
+ },
1721
+ "level": {
1722
+ "type": "number",
1723
+ "format": "double"
1724
+ },
1725
+ "markDefs": {
1726
+ "type": "array",
1727
+ "items": {
1728
+ "$ref": "#/components/schemas/componentBlocksInnerOneOfMarkDefsInner"
1729
+ }
1730
+ },
1731
+ "sanityKey": {
1732
+ "type": "string"
1733
+ }
1734
+ }
1735
+ },
1736
+ "sanityTask": {
1737
+ "type": "object",
1738
+ "properties": {
1739
+ "type": {
1740
+ "enum": [
1741
+ "onboarding",
1742
+ "offboarding"
1743
+ ],
1744
+ "type": "string",
1745
+ "default": "onboarding"
1746
+ },
1747
+ "description": {
1748
+ "type": "array",
1749
+ "items": {
1750
+ "type": "object"
1751
+ }
1752
+ },
1753
+ "reminderSlackChannel": {
1754
+ "type": "string"
1755
+ },
1756
+ "reminderWeeksBefore": {
1757
+ "type": "number",
1758
+ "format": "double",
1759
+ "nullable": true
1760
+ },
1761
+ "sanityCreatedAt": {
1762
+ "type": "string"
1763
+ },
1764
+ "sanityId": {
1765
+ "type": "string"
1766
+ },
1767
+ "sanityRev": {
1768
+ "type": "string"
1769
+ },
1770
+ "sanityType": {
1771
+ "type": "string"
1772
+ },
1773
+ "sanityUpdatedAt": {
1774
+ "type": "string"
1775
+ },
1776
+ "title": {
1777
+ "type": "string"
1778
+ },
1779
+ "additionalProperties": {
1780
+ "type": "object",
1781
+ "additionalProperties": {
1782
+ "type": "object"
1783
+ }
1784
+ }
1785
+ }
1786
+ },
1787
+ "sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent": {
1788
+ "type": "object",
1789
+ "properties": {
1790
+ "sanityType": {
1791
+ "enum": [
1792
+ "tag"
1793
+ ],
1794
+ "type": "string",
1795
+ "default": "tag"
1796
+ },
1797
+ "name": {
1798
+ "type": "string"
1799
+ },
1800
+ "sanityId": {
1801
+ "type": "string"
1802
+ },
1803
+ "slug": {
1804
+ "$ref": "#/components/schemas/slug"
1805
+ }
1806
+ }
1807
+ },
1808
+ "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo": {
1809
+ "type": "object",
1810
+ "properties": {
1811
+ "sanityType": {
1812
+ "enum": [
1813
+ "image"
1814
+ ],
1815
+ "type": "string",
1816
+ "default": "image"
1817
+ },
1818
+ "asset": {
1819
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
1820
+ }
1821
+ }
1822
+ },
1823
+ "sanityTvCategoryDashboardsInnerBackgroundImage": {
1824
+ "type": "object",
1825
+ "properties": {
1826
+ "sanityType": {
1827
+ "enum": [
1828
+ "image"
1829
+ ],
1830
+ "type": "string",
1831
+ "default": "image"
1832
+ },
1833
+ "asset": {
1834
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
1835
+ }
1836
+ }
1837
+ },
1838
+ "sanityTvCategoryDashboardsInnerBackgroundImageAsset": {
1839
+ "type": "object",
1840
+ "properties": {
1841
+ "sanityType": {
1842
+ "enum": [
1843
+ "sanity.imageAsset"
1844
+ ],
1845
+ "type": "string",
1846
+ "default": "sanity.imageAsset"
1847
+ },
1848
+ "mimeType": {
1849
+ "type": "string"
1850
+ },
1851
+ "originalFilename": {
1852
+ "type": "string"
1853
+ },
1854
+ "sanityId": {
1855
+ "type": "string"
1856
+ },
1857
+ "url": {
1858
+ "type": "string"
1859
+ }
1860
+ }
1861
+ },
1862
+ "slug": {
1863
+ "type": "object",
1864
+ "properties": {
1865
+ "sanityType": {
1866
+ "enum": [
1867
+ "slug"
1868
+ ],
1869
+ "type": "string",
1870
+ "default": "slug"
1871
+ },
1872
+ "current": {
1873
+ "type": "string"
1874
+ },
1875
+ "source": {
1876
+ "type": "string"
1877
+ }
1878
+ }
1879
+ }
1880
+ },
1881
+ "securitySchemes": {
1882
+ "Implicit": {
1883
+ "type": "oauth2",
1884
+ "flows": {
1885
+ "implicit": {
1886
+ "authorizationUrl": "https://login.microsoftonline.com/81a4f38d-6712-4b65-868b-c3771f9ba91e/oauth2/v2.0/authorize",
1887
+ "tokenUrl": "https://login.microsoftonline.com/81a4f38d-6712-4b65-868b-c3771f9ba91e/oauth2/v2.0/token",
1888
+ "refreshUrl": "https://login.microsoftonline.com/81a4f38d-6712-4b65-868b-c3771f9ba91e/oauth2/v2.0/token",
1889
+ "scopes": {
1890
+ "api://b9f9de6f-132f-4a9a-a583-e9054a46f2fa/.default": "Default function scope"
1891
+ }
1892
+ }
1893
+ }
1894
+ }
1895
+ }
1896
+ }
39
1897
  }