@snokam/mcp-api 2.44.0 → 2.46.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,7 +33,2135 @@
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://050da74a-523f-48ba-a9de-e5c8d6805a93/.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://050da74a-523f-48ba-a9de-e5c8d6805a93/.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://050da74a-523f-48ba-a9de-e5c8d6805a93/.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://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
247
+ ]
248
+ }
249
+ ]
250
+ }
251
+ },
252
+ "/v1.0/protected/candidates/{id}/onboard/{system}": {
253
+ "post": {
254
+ "tags": [
255
+ "Candidates"
256
+ ],
257
+ "summary": "Trigger automated onboarding for a given system",
258
+ "description": "Dispatches to the right onboarding handler based on the system slug. Microsoft 365 is the primary target; other systems report 'not implemented' until their handler lands.",
259
+ "operationId": "OnboardCandidateSystem",
260
+ "parameters": [
261
+ {
262
+ "name": "id",
263
+ "in": "path",
264
+ "required": true,
265
+ "schema": {
266
+ "type": "string"
267
+ },
268
+ "x-ms-summary": "Candidate Sanity id"
269
+ },
270
+ {
271
+ "name": "system",
272
+ "in": "path",
273
+ "required": true,
274
+ "schema": {
275
+ "type": "string"
276
+ },
277
+ "x-ms-summary": "System slug (e.g. 'microsoft-365')"
278
+ }
279
+ ],
280
+ "responses": {
281
+ "200": {
282
+ "description": "Uniform onboarding result with status + message",
283
+ "content": {
284
+ "application/json": {
285
+ "schema": {
286
+ "$ref": "#/components/schemas/onboardingResult"
287
+ }
288
+ }
289
+ },
290
+ "x-ms-summary": "Success"
291
+ },
292
+ "400": {
293
+ "description": "Payload of Object",
294
+ "content": {
295
+ "application/json": {
296
+ "schema": {
297
+ "type": "object"
298
+ }
299
+ }
300
+ },
301
+ "x-ms-summary": "Bad Request"
302
+ },
303
+ "401": {
304
+ "description": "No description",
305
+ "x-ms-summary": "Unauthorized"
306
+ },
307
+ "404": {
308
+ "description": "No description",
309
+ "x-ms-summary": "Not Found"
310
+ }
311
+ },
312
+ "security": [
313
+ {
314
+ "Implicit": [
315
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
316
+ ]
317
+ }
318
+ ]
319
+ }
320
+ },
321
+ "/v1.0/protected/candidates/{id}/reject": {
322
+ "post": {
323
+ "tags": [
324
+ "Candidates"
325
+ ],
326
+ "summary": "Reject a candidate",
327
+ "description": "Sets status=REJECTED. Convenience wrapper over PatchCandidate so UIs have a single-action reject button.",
328
+ "operationId": "RejectCandidate",
329
+ "parameters": [
330
+ {
331
+ "name": "id",
332
+ "in": "path",
333
+ "required": true,
334
+ "schema": {
335
+ "type": "string"
336
+ },
337
+ "x-ms-summary": "Candidate Sanity id"
338
+ }
339
+ ],
340
+ "responses": {
341
+ "200": {
342
+ "description": "Payload of SanityCandidate",
343
+ "content": {
344
+ "application/json": {
345
+ "schema": {
346
+ "$ref": "#/components/schemas/sanityCandidate"
347
+ }
348
+ }
349
+ },
350
+ "x-ms-summary": "Success"
351
+ },
352
+ "401": {
353
+ "description": "No description",
354
+ "x-ms-summary": "Unauthorized"
355
+ },
356
+ "404": {
357
+ "description": "No description",
358
+ "x-ms-summary": "Not Found"
359
+ }
360
+ },
361
+ "security": [
362
+ {
363
+ "Implicit": [
364
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
365
+ ]
366
+ }
367
+ ]
368
+ }
369
+ },
370
+ "/v1.0/protected/job-positions": {
371
+ "get": {
372
+ "tags": [
373
+ "JobPositions"
374
+ ],
375
+ "summary": "List published job positions",
376
+ "description": "Returns every job position document. Used by the admin stillinger page.",
377
+ "operationId": "ListJobPositions",
378
+ "responses": {
379
+ "200": {
380
+ "description": "Payload of Array of SanityJobPosition",
381
+ "content": {
382
+ "application/json": {
383
+ "schema": {
384
+ "type": "array",
385
+ "items": {
386
+ "$ref": "#/components/schemas/sanityJobPosition"
387
+ }
388
+ }
389
+ }
390
+ },
391
+ "x-ms-summary": "Success"
392
+ },
393
+ "401": {
394
+ "description": "No description",
395
+ "x-ms-summary": "Unauthorized"
396
+ }
397
+ },
398
+ "security": [
399
+ {
400
+ "Implicit": [
401
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
402
+ ]
403
+ }
404
+ ]
405
+ }
406
+ },
407
+ "/v1.0/protected/systems": {
408
+ "get": {
409
+ "tags": [
410
+ "Systems"
411
+ ],
412
+ "summary": "List systems used for onboarding checklists",
413
+ "description": "Returns every system document. Used by the candidate detail and systems library pages.",
414
+ "operationId": "ListSystems",
415
+ "responses": {
416
+ "200": {
417
+ "description": "Payload of Array of SanitySystemsInner",
418
+ "content": {
419
+ "application/json": {
420
+ "schema": {
421
+ "type": "array",
422
+ "items": {
423
+ "$ref": "#/components/schemas/sanitySystemsInner"
424
+ }
425
+ }
426
+ }
427
+ },
428
+ "x-ms-summary": "Success"
429
+ },
430
+ "401": {
431
+ "description": "No description",
432
+ "x-ms-summary": "Unauthorized"
433
+ }
434
+ },
435
+ "security": [
436
+ {
437
+ "Implicit": [
438
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
439
+ ]
440
+ }
441
+ ]
442
+ },
443
+ "post": {
444
+ "tags": [
445
+ "Systems"
446
+ ],
447
+ "summary": "Create a system",
448
+ "description": "Adds a new system to the onboarding/offboarding system library.",
449
+ "operationId": "CreateSystem",
450
+ "requestBody": {
451
+ "content": {
452
+ "application/json": {
453
+ "schema": {
454
+ "$ref": "#/components/schemas/sanityCreateSystem"
455
+ }
456
+ }
457
+ },
458
+ "required": true
459
+ },
460
+ "responses": {
461
+ "200": {
462
+ "description": "Payload of SanitySystemsInner",
463
+ "content": {
464
+ "application/json": {
465
+ "schema": {
466
+ "$ref": "#/components/schemas/sanitySystemsInner"
467
+ }
468
+ }
469
+ },
470
+ "x-ms-summary": "Success"
471
+ },
472
+ "400": {
473
+ "description": "Payload of Object",
474
+ "content": {
475
+ "application/json": {
476
+ "schema": {
477
+ "type": "object"
478
+ }
479
+ }
480
+ },
481
+ "x-ms-summary": "Bad Request"
482
+ },
483
+ "401": {
484
+ "description": "No description",
485
+ "x-ms-summary": "Unauthorized"
486
+ }
487
+ },
488
+ "security": [
489
+ {
490
+ "Implicit": [
491
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
492
+ ]
493
+ }
494
+ ]
495
+ }
496
+ },
497
+ "/v1.0/protected/onboarding-tasks": {
498
+ "get": {
499
+ "tags": [
500
+ "Tasks"
501
+ ],
502
+ "summary": "List every onboarding task",
503
+ "description": "Returns all onboarding tasks with their Portable Text description so the admin can render an editable checklist with contextual notes.",
504
+ "operationId": "ListOnboardingTasks",
505
+ "responses": {
506
+ "200": {
507
+ "description": "Payload of Array of SanityTask",
508
+ "content": {
509
+ "application/json": {
510
+ "schema": {
511
+ "type": "array",
512
+ "items": {
513
+ "$ref": "#/components/schemas/sanityTask"
514
+ }
515
+ }
516
+ }
517
+ },
518
+ "x-ms-summary": "Success"
519
+ },
520
+ "401": {
521
+ "description": "No description",
522
+ "x-ms-summary": "Unauthorized"
523
+ }
524
+ },
525
+ "security": [
526
+ {
527
+ "Implicit": [
528
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
529
+ ]
530
+ }
531
+ ]
532
+ }
533
+ },
534
+ "/v1.0/protected/offboarding-tasks": {
535
+ "get": {
536
+ "tags": [
537
+ "Tasks"
538
+ ],
539
+ "summary": "List every offboarding task",
540
+ "description": "Returns all offboarding tasks with their Portable Text description for the admin offboarding checklist.",
541
+ "operationId": "ListOffboardingTasks",
542
+ "responses": {
543
+ "200": {
544
+ "description": "Payload of Array of SanityTask",
545
+ "content": {
546
+ "application/json": {
547
+ "schema": {
548
+ "type": "array",
549
+ "items": {
550
+ "$ref": "#/components/schemas/sanityTask"
551
+ }
552
+ }
553
+ }
554
+ },
555
+ "x-ms-summary": "Success"
556
+ },
557
+ "401": {
558
+ "description": "No description",
559
+ "x-ms-summary": "Unauthorized"
560
+ }
561
+ },
562
+ "security": [
563
+ {
564
+ "Implicit": [
565
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
566
+ ]
567
+ }
568
+ ]
569
+ }
570
+ },
571
+ "/v1.0/protected/onboarding-tasks/with-reminder": {
572
+ "get": {
573
+ "tags": [
574
+ "Tasks"
575
+ ],
576
+ "summary": "List onboarding tasks with a Slack reminder",
577
+ "description": "Returns onboarding tasks that have reminderWeeksBefore + reminderSlackChannel set. Used by the admin oppgaver page.",
578
+ "operationId": "ListOnboardingTasksWithReminder",
579
+ "responses": {
580
+ "200": {
581
+ "description": "Payload of Array of SanityOnboardingTask",
582
+ "content": {
583
+ "application/json": {
584
+ "schema": {
585
+ "type": "array",
586
+ "items": {
587
+ "$ref": "#/components/schemas/sanityOnboardingTask"
588
+ }
589
+ }
590
+ }
591
+ },
592
+ "x-ms-summary": "Success"
593
+ },
594
+ "401": {
595
+ "description": "No description",
596
+ "x-ms-summary": "Unauthorized"
597
+ }
598
+ },
599
+ "security": [
600
+ {
601
+ "Implicit": [
602
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
603
+ ]
604
+ }
605
+ ]
606
+ }
607
+ },
608
+ "/v1.0/protected/tasks": {
609
+ "post": {
610
+ "tags": [
611
+ "Tasks"
612
+ ],
613
+ "summary": "Create an onboarding or offboarding task",
614
+ "description": "Adds a new task document to the library with optional Portable Text description and Slack reminder settings.",
615
+ "operationId": "CreateTask",
616
+ "requestBody": {
617
+ "content": {
618
+ "application/json": {
619
+ "schema": {
620
+ "$ref": "#/components/schemas/sanityCreateTask"
621
+ }
622
+ }
623
+ },
624
+ "required": true
625
+ },
626
+ "responses": {
627
+ "200": {
628
+ "description": "Payload of SanityTask",
629
+ "content": {
630
+ "application/json": {
631
+ "schema": {
632
+ "$ref": "#/components/schemas/sanityTask"
633
+ }
634
+ }
635
+ },
636
+ "x-ms-summary": "Success"
637
+ },
638
+ "400": {
639
+ "description": "Payload of Object",
640
+ "content": {
641
+ "application/json": {
642
+ "schema": {
643
+ "type": "object"
644
+ }
645
+ }
646
+ },
647
+ "x-ms-summary": "Bad Request"
648
+ },
649
+ "401": {
650
+ "description": "No description",
651
+ "x-ms-summary": "Unauthorized"
652
+ }
653
+ },
654
+ "security": [
655
+ {
656
+ "Implicit": [
657
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
658
+ ]
659
+ }
660
+ ]
661
+ }
662
+ },
663
+ "/v1.0/protected/tasks/{id}": {
664
+ "patch": {
665
+ "tags": [
666
+ "Tasks"
667
+ ],
668
+ "summary": "Update an onboarding or offboarding task",
669
+ "description": "Partially updates a task. Omitted fields are left unchanged; pass null to clear an optional field.",
670
+ "operationId": "PatchTask",
671
+ "parameters": [
672
+ {
673
+ "name": "id",
674
+ "in": "path",
675
+ "required": true,
676
+ "schema": {
677
+ "type": "string"
678
+ }
679
+ }
680
+ ],
681
+ "requestBody": {
682
+ "content": {
683
+ "application/json": {
684
+ "schema": {
685
+ "$ref": "#/components/schemas/sanityPatchTask"
686
+ }
687
+ }
688
+ },
689
+ "required": true
690
+ },
691
+ "responses": {
692
+ "200": {
693
+ "description": "Payload of SanityTask",
694
+ "content": {
695
+ "application/json": {
696
+ "schema": {
697
+ "$ref": "#/components/schemas/sanityTask"
698
+ }
699
+ }
700
+ },
701
+ "x-ms-summary": "Success"
702
+ },
703
+ "400": {
704
+ "description": "Payload of Object",
705
+ "content": {
706
+ "application/json": {
707
+ "schema": {
708
+ "type": "object"
709
+ }
710
+ }
711
+ },
712
+ "x-ms-summary": "Bad Request"
713
+ },
714
+ "401": {
715
+ "description": "No description",
716
+ "x-ms-summary": "Unauthorized"
717
+ },
718
+ "404": {
719
+ "description": "No description",
720
+ "x-ms-summary": "Not Found"
721
+ }
722
+ },
723
+ "security": [
724
+ {
725
+ "Implicit": [
726
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
727
+ ]
728
+ }
729
+ ]
730
+ },
731
+ "delete": {
732
+ "tags": [
733
+ "Tasks"
734
+ ],
735
+ "summary": "Delete a task",
736
+ "description": "Removes a task from the library. Does not touch candidate checklists that reference it.",
737
+ "operationId": "DeleteTask",
738
+ "parameters": [
739
+ {
740
+ "name": "id",
741
+ "in": "path",
742
+ "required": true,
743
+ "schema": {
744
+ "type": "string"
745
+ }
746
+ }
747
+ ],
748
+ "responses": {
749
+ "200": {
750
+ "description": "Payload of SanityTask",
751
+ "content": {
752
+ "application/json": {
753
+ "schema": {
754
+ "$ref": "#/components/schemas/sanityTask"
755
+ }
756
+ }
757
+ },
758
+ "x-ms-summary": "Success"
759
+ },
760
+ "401": {
761
+ "description": "No description",
762
+ "x-ms-summary": "Unauthorized"
763
+ },
764
+ "404": {
765
+ "description": "No description",
766
+ "x-ms-summary": "Not Found"
767
+ }
768
+ },
769
+ "security": [
770
+ {
771
+ "Implicit": [
772
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
773
+ ]
774
+ }
775
+ ]
776
+ }
777
+ },
778
+ "/v1.0/protected/systems/{id}": {
779
+ "patch": {
780
+ "tags": [
781
+ "Systems"
782
+ ],
783
+ "summary": "Update a system",
784
+ "operationId": "PatchSystem",
785
+ "parameters": [
786
+ {
787
+ "name": "id",
788
+ "in": "path",
789
+ "required": true,
790
+ "schema": {
791
+ "type": "string"
792
+ }
793
+ }
794
+ ],
795
+ "requestBody": {
796
+ "content": {
797
+ "application/json": {
798
+ "schema": {
799
+ "$ref": "#/components/schemas/sanityPatchSystem"
800
+ }
801
+ }
802
+ },
803
+ "required": true
804
+ },
805
+ "responses": {
806
+ "200": {
807
+ "description": "Payload of SanitySystemsInner",
808
+ "content": {
809
+ "application/json": {
810
+ "schema": {
811
+ "$ref": "#/components/schemas/sanitySystemsInner"
812
+ }
813
+ }
814
+ },
815
+ "x-ms-summary": "Success"
816
+ },
817
+ "400": {
818
+ "description": "Payload of Object",
819
+ "content": {
820
+ "application/json": {
821
+ "schema": {
822
+ "type": "object"
823
+ }
824
+ }
825
+ },
826
+ "x-ms-summary": "Bad Request"
827
+ },
828
+ "401": {
829
+ "description": "No description",
830
+ "x-ms-summary": "Unauthorized"
831
+ },
832
+ "404": {
833
+ "description": "No description",
834
+ "x-ms-summary": "Not Found"
835
+ }
836
+ },
837
+ "security": [
838
+ {
839
+ "Implicit": [
840
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
841
+ ]
842
+ }
843
+ ]
844
+ },
845
+ "delete": {
846
+ "tags": [
847
+ "Systems"
848
+ ],
849
+ "summary": "Delete a system",
850
+ "operationId": "DeleteSystem",
851
+ "parameters": [
852
+ {
853
+ "name": "id",
854
+ "in": "path",
855
+ "required": true,
856
+ "schema": {
857
+ "type": "string"
858
+ }
859
+ }
860
+ ],
861
+ "responses": {
862
+ "200": {
863
+ "description": "Payload of SanitySystemsInner",
864
+ "content": {
865
+ "application/json": {
866
+ "schema": {
867
+ "$ref": "#/components/schemas/sanitySystemsInner"
868
+ }
869
+ }
870
+ },
871
+ "x-ms-summary": "Success"
872
+ },
873
+ "401": {
874
+ "description": "No description",
875
+ "x-ms-summary": "Unauthorized"
876
+ },
877
+ "404": {
878
+ "description": "No description",
879
+ "x-ms-summary": "Not Found"
880
+ }
881
+ },
882
+ "security": [
883
+ {
884
+ "Implicit": [
885
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
886
+ ]
887
+ }
888
+ ]
889
+ }
890
+ },
891
+ "/v1.0/protected/employees": {
892
+ "get": {
893
+ "tags": [
894
+ "Employees"
895
+ ],
896
+ "summary": "List employees for buddy/recruiter assignment",
897
+ "description": "Lightweight employee list used by the candidate detail page's buddy and recruiter dropdowns.",
898
+ "operationId": "ListRecruitmentEmployees",
899
+ "responses": {
900
+ "200": {
901
+ "description": "Payload of Array of SanityBasicEmployee",
902
+ "content": {
903
+ "application/json": {
904
+ "schema": {
905
+ "type": "array",
906
+ "items": {
907
+ "$ref": "#/components/schemas/sanityBasicEmployee"
908
+ }
909
+ }
910
+ }
911
+ },
912
+ "x-ms-summary": "Success"
913
+ },
914
+ "401": {
915
+ "description": "No description",
916
+ "x-ms-summary": "Unauthorized"
917
+ }
918
+ },
919
+ "security": [
920
+ {
921
+ "Implicit": [
922
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
923
+ ]
924
+ }
925
+ ]
926
+ }
36
927
  }
37
928
  },
38
- "components": {}
929
+ "components": {
930
+ "schemas": {
931
+ "componentBlocksInnerOneOfChildrenInner": {
932
+ "type": "object",
933
+ "properties": {
934
+ "sanityType": {
935
+ "enum": [
936
+ "span"
937
+ ],
938
+ "type": "string",
939
+ "default": "span"
940
+ },
941
+ "marks": {
942
+ "type": "array",
943
+ "items": {
944
+ "type": "string"
945
+ }
946
+ },
947
+ "sanityKey": {
948
+ "type": "string"
949
+ },
950
+ "text": {
951
+ "type": "string"
952
+ }
953
+ }
954
+ },
955
+ "componentBlocksInnerOneOfMarkDefsInner": {
956
+ "type": "object",
957
+ "properties": {
958
+ "sanityType": {
959
+ "enum": [
960
+ "link"
961
+ ],
962
+ "type": "string",
963
+ "default": "link"
964
+ },
965
+ "href": {
966
+ "type": "string"
967
+ },
968
+ "sanityKey": {
969
+ "type": "string"
970
+ }
971
+ }
972
+ },
973
+ "employeeReference": {
974
+ "type": "object",
975
+ "properties": {
976
+ "sanityType": {
977
+ "enum": [
978
+ "reference"
979
+ ],
980
+ "type": "string",
981
+ "default": "reference"
982
+ },
983
+ "sanityRef": {
984
+ "type": "string"
985
+ },
986
+ "sanityWeak": {
987
+ "type": "boolean"
988
+ }
989
+ }
990
+ },
991
+ "onboardingResult": {
992
+ "type": "object",
993
+ "properties": {
994
+ "status": {
995
+ "type": "string"
996
+ },
997
+ "message": {
998
+ "type": "string"
999
+ },
1000
+ "preferredEmail": {
1001
+ "type": "string"
1002
+ },
1003
+ "createdAccountId": {
1004
+ "type": "string"
1005
+ }
1006
+ }
1007
+ },
1008
+ "sanityAssetSourceData": {
1009
+ "type": "object",
1010
+ "properties": {
1011
+ "sanityType": {
1012
+ "enum": [
1013
+ "sanity.assetSourceData"
1014
+ ],
1015
+ "type": "string",
1016
+ "default": "sanity.assetSourceData"
1017
+ },
1018
+ "id": {
1019
+ "type": "string"
1020
+ },
1021
+ "name": {
1022
+ "type": "string"
1023
+ },
1024
+ "url": {
1025
+ "type": "string"
1026
+ }
1027
+ }
1028
+ },
1029
+ "sanityBasicEmployee": {
1030
+ "type": "object",
1031
+ "properties": {
1032
+ "sanityType": {
1033
+ "enum": [
1034
+ "employee"
1035
+ ],
1036
+ "type": "string",
1037
+ "default": "employee"
1038
+ },
1039
+ "email": {
1040
+ "type": "string"
1041
+ },
1042
+ "image": {
1043
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1044
+ },
1045
+ "name": {
1046
+ "type": "string"
1047
+ },
1048
+ "sanityId": {
1049
+ "type": "string"
1050
+ },
1051
+ "slug": {
1052
+ "$ref": "#/components/schemas/slug"
1053
+ },
1054
+ "tags": {
1055
+ "type": "array",
1056
+ "items": {
1057
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
1058
+ }
1059
+ },
1060
+ "telephone": {
1061
+ "type": "string"
1062
+ }
1063
+ }
1064
+ },
1065
+ "sanityCandidate": {
1066
+ "type": "object",
1067
+ "properties": {
1068
+ "sanityType": {
1069
+ "enum": [
1070
+ "candidate"
1071
+ ],
1072
+ "type": "string",
1073
+ "default": "candidate"
1074
+ },
1075
+ "status": {
1076
+ "enum": [
1077
+ "CREATED",
1078
+ "INTRODUCTION",
1079
+ "OFFBOARDING",
1080
+ "OFFER",
1081
+ "ONBOARDING",
1082
+ "REJECTED",
1083
+ "SIGNED",
1084
+ "USER_CREATION_REVIEW"
1085
+ ],
1086
+ "type": "string",
1087
+ "default": "CREATED"
1088
+ },
1089
+ "tShirtSize": {
1090
+ "enum": [
1091
+ "L",
1092
+ "M",
1093
+ "S",
1094
+ "XL",
1095
+ "XS",
1096
+ "XXL"
1097
+ ],
1098
+ "type": "string",
1099
+ "default": "L",
1100
+ "nullable": true
1101
+ },
1102
+ "track": {
1103
+ "enum": [
1104
+ "data_engineer",
1105
+ "developer"
1106
+ ],
1107
+ "type": "string",
1108
+ "default": "data_engineer",
1109
+ "nullable": true
1110
+ },
1111
+ "address": {
1112
+ "$ref": "#/components/schemas/sanityCandidateAddress"
1113
+ },
1114
+ "applicationLetter": {
1115
+ "$ref": "#/components/schemas/sanityCandidateGrades"
1116
+ },
1117
+ "applicationOther": {
1118
+ "type": "string"
1119
+ },
1120
+ "bankAccount": {
1121
+ "type": "string"
1122
+ },
1123
+ "buddy": {
1124
+ "$ref": "#/components/schemas/sanityEmployeeManager"
1125
+ },
1126
+ "candidate": {
1127
+ "type": "string"
1128
+ },
1129
+ "cv": {
1130
+ "$ref": "#/components/schemas/sanityCandidateGrades"
1131
+ },
1132
+ "email": {
1133
+ "type": "string"
1134
+ },
1135
+ "fromApplication": {
1136
+ "type": "boolean"
1137
+ },
1138
+ "grades": {
1139
+ "$ref": "#/components/schemas/sanityCandidateGrades"
1140
+ },
1141
+ "offboardingChecklist": {
1142
+ "type": "array",
1143
+ "items": {
1144
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1145
+ }
1146
+ },
1147
+ "onboardingChecklist": {
1148
+ "type": "array",
1149
+ "items": {
1150
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1151
+ }
1152
+ },
1153
+ "ownership": {
1154
+ "type": "number",
1155
+ "format": "double"
1156
+ },
1157
+ "preferredDisplayName": {
1158
+ "type": "string"
1159
+ },
1160
+ "preferredEmail": {
1161
+ "type": "string"
1162
+ },
1163
+ "profileImage": {
1164
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
1165
+ },
1166
+ "recruiter": {
1167
+ "$ref": "#/components/schemas/sanityEmployeeManager"
1168
+ },
1169
+ "references": {
1170
+ "type": "array",
1171
+ "items": {
1172
+ "$ref": "#/components/schemas/sanityCandidateReferencesInner"
1173
+ }
1174
+ },
1175
+ "sanityCreatedAt": {
1176
+ "type": "string"
1177
+ },
1178
+ "sanityId": {
1179
+ "type": "string"
1180
+ },
1181
+ "sanityRev": {
1182
+ "type": "string"
1183
+ },
1184
+ "sanityUpdatedAt": {
1185
+ "type": "string"
1186
+ },
1187
+ "shortUrl": {
1188
+ "type": "string"
1189
+ },
1190
+ "systemsActive": {
1191
+ "type": "array",
1192
+ "items": {
1193
+ "$ref": "#/components/schemas/sanitySystemsInner"
1194
+ }
1195
+ },
1196
+ "telephone": {
1197
+ "type": "string"
1198
+ },
1199
+ "url": {
1200
+ "type": "string"
1201
+ }
1202
+ }
1203
+ },
1204
+ "sanityCandidateAddress": {
1205
+ "type": "object",
1206
+ "properties": {
1207
+ "city": {
1208
+ "type": "string"
1209
+ },
1210
+ "postalCode": {
1211
+ "type": "string"
1212
+ },
1213
+ "street": {
1214
+ "type": "string"
1215
+ }
1216
+ }
1217
+ },
1218
+ "sanityCandidateGrades": {
1219
+ "type": "object",
1220
+ "properties": {
1221
+ "sanityType": {
1222
+ "enum": [
1223
+ "file"
1224
+ ],
1225
+ "type": "string",
1226
+ "default": "file"
1227
+ },
1228
+ "asset": {
1229
+ "$ref": "#/components/schemas/sanityDocFileAsset"
1230
+ },
1231
+ "media": {
1232
+ "type": "object"
1233
+ }
1234
+ }
1235
+ },
1236
+ "sanityCandidateOffboardingChecklistInner": {
1237
+ "type": "object",
1238
+ "properties": {
1239
+ "sanityType": {
1240
+ "enum": [
1241
+ "reference"
1242
+ ],
1243
+ "type": "string",
1244
+ "default": "reference"
1245
+ },
1246
+ "sanityKey": {
1247
+ "type": "string"
1248
+ },
1249
+ "sanityRef": {
1250
+ "type": "string"
1251
+ },
1252
+ "sanityWeak": {
1253
+ "type": "boolean"
1254
+ }
1255
+ }
1256
+ },
1257
+ "sanityCandidateReferencesInner": {
1258
+ "type": "object",
1259
+ "properties": {
1260
+ "sanityType": {
1261
+ "enum": [
1262
+ "candidateReference"
1263
+ ],
1264
+ "type": "string",
1265
+ "default": "candidateReference"
1266
+ },
1267
+ "details": {
1268
+ "type": "string"
1269
+ },
1270
+ "email": {
1271
+ "type": "string"
1272
+ },
1273
+ "name": {
1274
+ "type": "string"
1275
+ },
1276
+ "phone": {
1277
+ "type": "string"
1278
+ },
1279
+ "sanityKey": {
1280
+ "type": "string"
1281
+ }
1282
+ }
1283
+ },
1284
+ "sanityCreateSystem": {
1285
+ "type": "object",
1286
+ "properties": {
1287
+ "description": {
1288
+ "type": "array",
1289
+ "items": {
1290
+ "type": "object"
1291
+ }
1292
+ },
1293
+ "links": {
1294
+ "type": "array",
1295
+ "items": {
1296
+ "type": "string"
1297
+ }
1298
+ },
1299
+ "title": {
1300
+ "type": "string"
1301
+ },
1302
+ "additionalProperties": {
1303
+ "type": "object",
1304
+ "additionalProperties": {
1305
+ "type": "object"
1306
+ }
1307
+ }
1308
+ }
1309
+ },
1310
+ "sanityCreateTask": {
1311
+ "type": "object",
1312
+ "properties": {
1313
+ "type": {
1314
+ "enum": [
1315
+ "onboarding",
1316
+ "offboarding"
1317
+ ],
1318
+ "type": "string",
1319
+ "default": "onboarding"
1320
+ },
1321
+ "description": {
1322
+ "type": "array",
1323
+ "items": {
1324
+ "type": "object"
1325
+ }
1326
+ },
1327
+ "reminderSlackChannel": {
1328
+ "type": "string"
1329
+ },
1330
+ "reminderWeeksBefore": {
1331
+ "type": "number",
1332
+ "format": "double",
1333
+ "nullable": true
1334
+ },
1335
+ "title": {
1336
+ "type": "string"
1337
+ },
1338
+ "additionalProperties": {
1339
+ "type": "object",
1340
+ "additionalProperties": {
1341
+ "type": "object"
1342
+ }
1343
+ }
1344
+ }
1345
+ },
1346
+ "sanityDocFileAsset": {
1347
+ "type": "object",
1348
+ "properties": {
1349
+ "sanityType": {
1350
+ "enum": [
1351
+ "sanity.fileAsset"
1352
+ ],
1353
+ "type": "string",
1354
+ "default": "sanity.fileAsset"
1355
+ },
1356
+ "altText": {
1357
+ "type": "string"
1358
+ },
1359
+ "assetId": {
1360
+ "type": "string"
1361
+ },
1362
+ "description": {
1363
+ "type": "string"
1364
+ },
1365
+ "extension": {
1366
+ "type": "string"
1367
+ },
1368
+ "label": {
1369
+ "type": "string"
1370
+ },
1371
+ "mimeType": {
1372
+ "type": "string"
1373
+ },
1374
+ "originalFilename": {
1375
+ "type": "string"
1376
+ },
1377
+ "path": {
1378
+ "type": "string"
1379
+ },
1380
+ "sanityCreatedAt": {
1381
+ "type": "string"
1382
+ },
1383
+ "sanityId": {
1384
+ "type": "string"
1385
+ },
1386
+ "sanityRev": {
1387
+ "type": "string"
1388
+ },
1389
+ "sanityUpdatedAt": {
1390
+ "type": "string"
1391
+ },
1392
+ "sha1hash": {
1393
+ "type": "string"
1394
+ },
1395
+ "size": {
1396
+ "type": "number",
1397
+ "format": "double"
1398
+ },
1399
+ "source": {
1400
+ "$ref": "#/components/schemas/sanityAssetSourceData"
1401
+ },
1402
+ "title": {
1403
+ "type": "string"
1404
+ },
1405
+ "uploadId": {
1406
+ "type": "string"
1407
+ },
1408
+ "url": {
1409
+ "type": "string"
1410
+ }
1411
+ }
1412
+ },
1413
+ "sanityEmployeeManager": {
1414
+ "type": "object",
1415
+ "properties": {
1416
+ "sanityType": {
1417
+ "enum": [
1418
+ "employee"
1419
+ ],
1420
+ "type": "string",
1421
+ "default": "employee"
1422
+ },
1423
+ "email": {
1424
+ "type": "string"
1425
+ },
1426
+ "image": {
1427
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1428
+ },
1429
+ "name": {
1430
+ "type": "string"
1431
+ },
1432
+ "sanityId": {
1433
+ "type": "string"
1434
+ },
1435
+ "slug": {
1436
+ "$ref": "#/components/schemas/slug"
1437
+ },
1438
+ "tags": {
1439
+ "type": "array",
1440
+ "items": {
1441
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
1442
+ }
1443
+ },
1444
+ "telephone": {
1445
+ "type": "string"
1446
+ }
1447
+ }
1448
+ },
1449
+ "sanityFileAssetReference": {
1450
+ "type": "object",
1451
+ "properties": {
1452
+ "sanityType": {
1453
+ "enum": [
1454
+ "reference"
1455
+ ],
1456
+ "type": "string",
1457
+ "default": "reference"
1458
+ },
1459
+ "sanityRef": {
1460
+ "type": "string"
1461
+ },
1462
+ "sanityWeak": {
1463
+ "type": "boolean"
1464
+ }
1465
+ }
1466
+ },
1467
+ "sanityImageAssetReference": {
1468
+ "type": "object",
1469
+ "properties": {
1470
+ "sanityType": {
1471
+ "enum": [
1472
+ "reference"
1473
+ ],
1474
+ "type": "string",
1475
+ "default": "reference"
1476
+ },
1477
+ "sanityRef": {
1478
+ "type": "string"
1479
+ },
1480
+ "sanityWeak": {
1481
+ "type": "boolean"
1482
+ }
1483
+ }
1484
+ },
1485
+ "sanityImageCrop": {
1486
+ "type": "object",
1487
+ "properties": {
1488
+ "sanityType": {
1489
+ "enum": [
1490
+ "sanity.imageCrop"
1491
+ ],
1492
+ "type": "string",
1493
+ "default": "sanity.imageCrop"
1494
+ },
1495
+ "bottom": {
1496
+ "type": "number",
1497
+ "format": "double"
1498
+ },
1499
+ "left": {
1500
+ "type": "number",
1501
+ "format": "double"
1502
+ },
1503
+ "right": {
1504
+ "type": "number",
1505
+ "format": "double"
1506
+ },
1507
+ "top": {
1508
+ "type": "number",
1509
+ "format": "double"
1510
+ }
1511
+ }
1512
+ },
1513
+ "sanityImageHotspot": {
1514
+ "type": "object",
1515
+ "properties": {
1516
+ "sanityType": {
1517
+ "enum": [
1518
+ "sanity.imageHotspot"
1519
+ ],
1520
+ "type": "string",
1521
+ "default": "sanity.imageHotspot"
1522
+ },
1523
+ "height": {
1524
+ "type": "number",
1525
+ "format": "double"
1526
+ },
1527
+ "width": {
1528
+ "type": "number",
1529
+ "format": "double"
1530
+ },
1531
+ "x": {
1532
+ "type": "number",
1533
+ "format": "double"
1534
+ },
1535
+ "y": {
1536
+ "type": "number",
1537
+ "format": "double"
1538
+ }
1539
+ }
1540
+ },
1541
+ "sanityJobPosition": {
1542
+ "type": "object",
1543
+ "properties": {
1544
+ "sanityType": {
1545
+ "enum": [
1546
+ "jobPosition"
1547
+ ],
1548
+ "type": "string",
1549
+ "default": "jobPosition"
1550
+ },
1551
+ "askForGrades": {
1552
+ "type": "boolean"
1553
+ },
1554
+ "deadline": {
1555
+ "type": "string"
1556
+ },
1557
+ "description": {
1558
+ "type": "array",
1559
+ "items": {
1560
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
1561
+ }
1562
+ },
1563
+ "image": {
1564
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
1565
+ },
1566
+ "metaDescription": {
1567
+ "type": "string"
1568
+ },
1569
+ "sanityCreatedAt": {
1570
+ "type": "string"
1571
+ },
1572
+ "sanityId": {
1573
+ "type": "string"
1574
+ },
1575
+ "sanityRev": {
1576
+ "type": "string"
1577
+ },
1578
+ "sanityUpdatedAt": {
1579
+ "type": "string"
1580
+ },
1581
+ "slug": {
1582
+ "$ref": "#/components/schemas/slug"
1583
+ },
1584
+ "title": {
1585
+ "type": "string"
1586
+ }
1587
+ }
1588
+ },
1589
+ "sanityOnboardingTask": {
1590
+ "type": "object",
1591
+ "properties": {
1592
+ "type": {
1593
+ "enum": [
1594
+ "onboarding"
1595
+ ],
1596
+ "type": "string",
1597
+ "default": "onboarding"
1598
+ },
1599
+ "reminderSlackChannel": {
1600
+ "type": "string"
1601
+ },
1602
+ "reminderWeeksBefore": {
1603
+ "type": "number",
1604
+ "format": "double"
1605
+ },
1606
+ "sanityCreatedAt": {
1607
+ "type": "string"
1608
+ },
1609
+ "sanityId": {
1610
+ "type": "string"
1611
+ },
1612
+ "sanityRev": {
1613
+ "type": "string"
1614
+ },
1615
+ "sanityType": {
1616
+ "type": "string"
1617
+ },
1618
+ "sanityUpdatedAt": {
1619
+ "type": "string"
1620
+ },
1621
+ "title": {
1622
+ "type": "string"
1623
+ },
1624
+ "additionalProperties": {
1625
+ "type": "object",
1626
+ "additionalProperties": {
1627
+ "type": "object"
1628
+ }
1629
+ }
1630
+ }
1631
+ },
1632
+ "sanityPatchCandidate": {
1633
+ "type": "object",
1634
+ "properties": {
1635
+ "sanityType": {
1636
+ "enum": [
1637
+ "candidate"
1638
+ ],
1639
+ "type": "string",
1640
+ "default": "candidate",
1641
+ "nullable": true
1642
+ },
1643
+ "status": {
1644
+ "enum": [
1645
+ "CREATED",
1646
+ "INTRODUCTION",
1647
+ "OFFER",
1648
+ "SIGNED",
1649
+ "ONBOARDING",
1650
+ "USER_CREATION_REVIEW",
1651
+ "OFFBOARDING",
1652
+ "REJECTED"
1653
+ ],
1654
+ "type": "string",
1655
+ "default": "CREATED",
1656
+ "nullable": true
1657
+ },
1658
+ "tShirtSize": {
1659
+ "enum": [
1660
+ "XS",
1661
+ "S",
1662
+ "M",
1663
+ "L",
1664
+ "XL",
1665
+ "XXL"
1666
+ ],
1667
+ "type": "string",
1668
+ "default": "XS",
1669
+ "nullable": true
1670
+ },
1671
+ "track": {
1672
+ "enum": [
1673
+ "developer",
1674
+ "data_engineer"
1675
+ ],
1676
+ "type": "string",
1677
+ "default": "developer",
1678
+ "nullable": true
1679
+ },
1680
+ "address": {
1681
+ "$ref": "#/components/schemas/sanityPatchCandidateAddress"
1682
+ },
1683
+ "applicationLetter": {
1684
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
1685
+ },
1686
+ "applicationOther": {
1687
+ "type": "string"
1688
+ },
1689
+ "bankAccount": {
1690
+ "type": "string"
1691
+ },
1692
+ "buddy": {
1693
+ "$ref": "#/components/schemas/employeeReference"
1694
+ },
1695
+ "candidate": {
1696
+ "type": "string"
1697
+ },
1698
+ "cv": {
1699
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
1700
+ },
1701
+ "email": {
1702
+ "type": "string"
1703
+ },
1704
+ "fromApplication": {
1705
+ "type": "boolean",
1706
+ "nullable": true
1707
+ },
1708
+ "grades": {
1709
+ "$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
1710
+ },
1711
+ "offboardingChecklist": {
1712
+ "type": "array",
1713
+ "items": {
1714
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1715
+ }
1716
+ },
1717
+ "onboardingChecklist": {
1718
+ "type": "array",
1719
+ "items": {
1720
+ "$ref": "#/components/schemas/sanityCandidateOffboardingChecklistInner"
1721
+ }
1722
+ },
1723
+ "ownership": {
1724
+ "type": "number",
1725
+ "format": "double",
1726
+ "nullable": true
1727
+ },
1728
+ "preferredDisplayName": {
1729
+ "type": "string"
1730
+ },
1731
+ "preferredEmail": {
1732
+ "type": "string"
1733
+ },
1734
+ "profileImage": {
1735
+ "$ref": "#/components/schemas/sanityPatchPageMetaImage"
1736
+ },
1737
+ "recruiter": {
1738
+ "$ref": "#/components/schemas/employeeReference"
1739
+ },
1740
+ "references": {
1741
+ "type": "array",
1742
+ "items": {
1743
+ "$ref": "#/components/schemas/sanityCandidateReferencesInner"
1744
+ }
1745
+ },
1746
+ "shortUrl": {
1747
+ "type": "string"
1748
+ },
1749
+ "systemsActive": {
1750
+ "type": "array",
1751
+ "items": {
1752
+ "$ref": "#/components/schemas/sanityPatchCandidateSystemsActiveInner"
1753
+ }
1754
+ },
1755
+ "telephone": {
1756
+ "type": "string"
1757
+ },
1758
+ "url": {
1759
+ "type": "string"
1760
+ },
1761
+ "additionalProperties": {
1762
+ "type": "object",
1763
+ "additionalProperties": {
1764
+ "type": "object"
1765
+ }
1766
+ }
1767
+ }
1768
+ },
1769
+ "sanityPatchCandidateAddress": {
1770
+ "type": "object",
1771
+ "properties": {
1772
+ "city": {
1773
+ "type": "string"
1774
+ },
1775
+ "postalCode": {
1776
+ "type": "string"
1777
+ },
1778
+ "street": {
1779
+ "type": "string"
1780
+ }
1781
+ }
1782
+ },
1783
+ "sanityPatchCandidateApplicationLetter": {
1784
+ "type": "object",
1785
+ "properties": {
1786
+ "sanityType": {
1787
+ "enum": [
1788
+ "file"
1789
+ ],
1790
+ "type": "string",
1791
+ "default": "file"
1792
+ },
1793
+ "asset": {
1794
+ "$ref": "#/components/schemas/sanityFileAssetReference"
1795
+ },
1796
+ "media": {
1797
+ "type": "object"
1798
+ }
1799
+ }
1800
+ },
1801
+ "sanityPatchCandidateSystemsActiveInner": {
1802
+ "type": "object",
1803
+ "properties": {
1804
+ "sanityType": {
1805
+ "enum": [
1806
+ "reference"
1807
+ ],
1808
+ "type": "string",
1809
+ "default": "reference"
1810
+ },
1811
+ "sanityKey": {
1812
+ "type": "string"
1813
+ },
1814
+ "sanityRef": {
1815
+ "type": "string"
1816
+ },
1817
+ "sanityWeak": {
1818
+ "type": "boolean"
1819
+ }
1820
+ }
1821
+ },
1822
+ "sanityPatchPageMetaImage": {
1823
+ "type": "object",
1824
+ "properties": {
1825
+ "sanityType": {
1826
+ "enum": [
1827
+ "image"
1828
+ ],
1829
+ "type": "string",
1830
+ "default": "image"
1831
+ },
1832
+ "asset": {
1833
+ "$ref": "#/components/schemas/sanityImageAssetReference"
1834
+ },
1835
+ "crop": {
1836
+ "$ref": "#/components/schemas/sanityImageCrop"
1837
+ },
1838
+ "hotspot": {
1839
+ "$ref": "#/components/schemas/sanityImageHotspot"
1840
+ },
1841
+ "media": {
1842
+ "type": "object"
1843
+ }
1844
+ }
1845
+ },
1846
+ "sanityPatchSystem": {
1847
+ "type": "object",
1848
+ "properties": {
1849
+ "description": {
1850
+ "type": "array",
1851
+ "items": {
1852
+ "type": "object"
1853
+ }
1854
+ },
1855
+ "links": {
1856
+ "type": "array",
1857
+ "items": {
1858
+ "type": "string"
1859
+ }
1860
+ },
1861
+ "title": {
1862
+ "type": "string"
1863
+ },
1864
+ "additionalProperties": {
1865
+ "type": "object",
1866
+ "additionalProperties": {
1867
+ "type": "object"
1868
+ }
1869
+ }
1870
+ }
1871
+ },
1872
+ "sanityPatchTask": {
1873
+ "type": "object",
1874
+ "properties": {
1875
+ "type": {
1876
+ "enum": [
1877
+ "onboarding",
1878
+ "offboarding"
1879
+ ],
1880
+ "type": "string",
1881
+ "default": "onboarding",
1882
+ "nullable": true
1883
+ },
1884
+ "description": {
1885
+ "type": "array",
1886
+ "items": {
1887
+ "type": "object"
1888
+ }
1889
+ },
1890
+ "reminderSlackChannel": {
1891
+ "type": "string"
1892
+ },
1893
+ "reminderWeeksBefore": {
1894
+ "type": "number",
1895
+ "format": "double",
1896
+ "nullable": true
1897
+ },
1898
+ "title": {
1899
+ "type": "string"
1900
+ },
1901
+ "additionalProperties": {
1902
+ "type": "object",
1903
+ "additionalProperties": {
1904
+ "type": "object"
1905
+ }
1906
+ }
1907
+ }
1908
+ },
1909
+ "sanitySystemsInner": {
1910
+ "type": "object",
1911
+ "properties": {
1912
+ "sanityType": {
1913
+ "enum": [
1914
+ "system"
1915
+ ],
1916
+ "type": "string",
1917
+ "default": "system"
1918
+ },
1919
+ "description": {
1920
+ "type": "array",
1921
+ "items": {
1922
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
1923
+ }
1924
+ },
1925
+ "image": {
1926
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
1927
+ },
1928
+ "links": {
1929
+ "type": "array",
1930
+ "items": {
1931
+ "type": "string"
1932
+ }
1933
+ },
1934
+ "sanityCreatedAt": {
1935
+ "type": "string"
1936
+ },
1937
+ "sanityId": {
1938
+ "type": "string"
1939
+ },
1940
+ "sanityRev": {
1941
+ "type": "string"
1942
+ },
1943
+ "sanityUpdatedAt": {
1944
+ "type": "string"
1945
+ },
1946
+ "title": {
1947
+ "type": "string"
1948
+ }
1949
+ }
1950
+ },
1951
+ "sanitySystemsInnerDescriptionInner": {
1952
+ "type": "object",
1953
+ "properties": {
1954
+ "listItem": {
1955
+ "enum": [
1956
+ "bullet",
1957
+ "number"
1958
+ ],
1959
+ "type": "string",
1960
+ "default": "bullet",
1961
+ "nullable": true
1962
+ },
1963
+ "sanityType": {
1964
+ "enum": [
1965
+ "block"
1966
+ ],
1967
+ "type": "string",
1968
+ "default": "block"
1969
+ },
1970
+ "style": {
1971
+ "enum": [
1972
+ "blockquote",
1973
+ "h1",
1974
+ "h2",
1975
+ "h3",
1976
+ "h4",
1977
+ "h5",
1978
+ "h6",
1979
+ "normal"
1980
+ ],
1981
+ "type": "string",
1982
+ "default": "blockquote",
1983
+ "nullable": true
1984
+ },
1985
+ "children": {
1986
+ "type": "array",
1987
+ "items": {
1988
+ "$ref": "#/components/schemas/componentBlocksInnerOneOfChildrenInner"
1989
+ }
1990
+ },
1991
+ "level": {
1992
+ "type": "number",
1993
+ "format": "double"
1994
+ },
1995
+ "markDefs": {
1996
+ "type": "array",
1997
+ "items": {
1998
+ "$ref": "#/components/schemas/componentBlocksInnerOneOfMarkDefsInner"
1999
+ }
2000
+ },
2001
+ "sanityKey": {
2002
+ "type": "string"
2003
+ }
2004
+ }
2005
+ },
2006
+ "sanityTask": {
2007
+ "type": "object",
2008
+ "properties": {
2009
+ "type": {
2010
+ "enum": [
2011
+ "onboarding",
2012
+ "offboarding"
2013
+ ],
2014
+ "type": "string",
2015
+ "default": "onboarding"
2016
+ },
2017
+ "description": {
2018
+ "type": "array",
2019
+ "items": {
2020
+ "type": "object"
2021
+ }
2022
+ },
2023
+ "reminderSlackChannel": {
2024
+ "type": "string"
2025
+ },
2026
+ "reminderWeeksBefore": {
2027
+ "type": "number",
2028
+ "format": "double",
2029
+ "nullable": true
2030
+ },
2031
+ "sanityCreatedAt": {
2032
+ "type": "string"
2033
+ },
2034
+ "sanityId": {
2035
+ "type": "string"
2036
+ },
2037
+ "sanityRev": {
2038
+ "type": "string"
2039
+ },
2040
+ "sanityType": {
2041
+ "type": "string"
2042
+ },
2043
+ "sanityUpdatedAt": {
2044
+ "type": "string"
2045
+ },
2046
+ "title": {
2047
+ "type": "string"
2048
+ },
2049
+ "additionalProperties": {
2050
+ "type": "object",
2051
+ "additionalProperties": {
2052
+ "type": "object"
2053
+ }
2054
+ }
2055
+ }
2056
+ },
2057
+ "sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent": {
2058
+ "type": "object",
2059
+ "properties": {
2060
+ "sanityType": {
2061
+ "enum": [
2062
+ "tag"
2063
+ ],
2064
+ "type": "string",
2065
+ "default": "tag"
2066
+ },
2067
+ "name": {
2068
+ "type": "string"
2069
+ },
2070
+ "sanityId": {
2071
+ "type": "string"
2072
+ },
2073
+ "slug": {
2074
+ "$ref": "#/components/schemas/slug"
2075
+ }
2076
+ }
2077
+ },
2078
+ "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo": {
2079
+ "type": "object",
2080
+ "properties": {
2081
+ "sanityType": {
2082
+ "enum": [
2083
+ "image"
2084
+ ],
2085
+ "type": "string",
2086
+ "default": "image"
2087
+ },
2088
+ "asset": {
2089
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
2090
+ }
2091
+ }
2092
+ },
2093
+ "sanityTvCategoryDashboardsInnerBackgroundImage": {
2094
+ "type": "object",
2095
+ "properties": {
2096
+ "sanityType": {
2097
+ "enum": [
2098
+ "image"
2099
+ ],
2100
+ "type": "string",
2101
+ "default": "image"
2102
+ },
2103
+ "asset": {
2104
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
2105
+ }
2106
+ }
2107
+ },
2108
+ "sanityTvCategoryDashboardsInnerBackgroundImageAsset": {
2109
+ "type": "object",
2110
+ "properties": {
2111
+ "sanityType": {
2112
+ "enum": [
2113
+ "sanity.imageAsset"
2114
+ ],
2115
+ "type": "string",
2116
+ "default": "sanity.imageAsset"
2117
+ },
2118
+ "mimeType": {
2119
+ "type": "string"
2120
+ },
2121
+ "originalFilename": {
2122
+ "type": "string"
2123
+ },
2124
+ "sanityId": {
2125
+ "type": "string"
2126
+ },
2127
+ "url": {
2128
+ "type": "string"
2129
+ }
2130
+ }
2131
+ },
2132
+ "slug": {
2133
+ "type": "object",
2134
+ "properties": {
2135
+ "sanityType": {
2136
+ "enum": [
2137
+ "slug"
2138
+ ],
2139
+ "type": "string",
2140
+ "default": "slug"
2141
+ },
2142
+ "current": {
2143
+ "type": "string"
2144
+ },
2145
+ "source": {
2146
+ "type": "string"
2147
+ }
2148
+ }
2149
+ }
2150
+ },
2151
+ "securitySchemes": {
2152
+ "Implicit": {
2153
+ "type": "oauth2",
2154
+ "flows": {
2155
+ "implicit": {
2156
+ "authorizationUrl": "https://login.microsoftonline.com/a8533784-aa3c-403b-a61a-1533ecc6e3ed/oauth2/v2.0/authorize",
2157
+ "tokenUrl": "https://login.microsoftonline.com/a8533784-aa3c-403b-a61a-1533ecc6e3ed/oauth2/v2.0/token",
2158
+ "refreshUrl": "https://login.microsoftonline.com/a8533784-aa3c-403b-a61a-1533ecc6e3ed/oauth2/v2.0/token",
2159
+ "scopes": {
2160
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default": "Default function scope"
2161
+ }
2162
+ }
2163
+ }
2164
+ }
2165
+ }
2166
+ }
39
2167
  }