@snokam/mcp-api 0.12.0 → 0.14.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,3935 @@
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
+ "post": {
74
+ "tags": [
75
+ "Candidates"
76
+ ],
77
+ "summary": "Create a fresh admin-initiated candidate",
78
+ "description": "Creates a candidate document directly (not via the public application flow). Caller supplies name + status + track.",
79
+ "operationId": "CreateCandidate",
80
+ "requestBody": {
81
+ "description": "Initial candidate fields",
82
+ "content": {
83
+ "application/json": {
84
+ "schema": {
85
+ "$ref": "#/components/schemas/sanityCreateCandidateInput"
86
+ }
87
+ }
88
+ },
89
+ "required": true
90
+ },
91
+ "responses": {
92
+ "201": {
93
+ "description": "The created candidate",
94
+ "content": {
95
+ "application/json": {
96
+ "schema": {
97
+ "$ref": "#/components/schemas/sanityCandidate"
98
+ }
99
+ }
100
+ },
101
+ "x-ms-summary": "Created"
102
+ },
103
+ "400": {
104
+ "description": "Payload of Object",
105
+ "content": {
106
+ "application/json": {
107
+ "schema": {
108
+ "type": "object"
109
+ }
110
+ }
111
+ },
112
+ "x-ms-summary": "Bad Request"
113
+ },
114
+ "401": {
115
+ "description": "No description",
116
+ "x-ms-summary": "Unauthorized"
117
+ }
118
+ },
119
+ "security": [
120
+ {
121
+ "Implicit": [
122
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
123
+ ]
124
+ }
125
+ ]
126
+ }
127
+ },
128
+ "/v1.0/protected/candidates/{id}": {
129
+ "get": {
130
+ "tags": [
131
+ "Candidates"
132
+ ],
133
+ "summary": "Get a candidate by id",
134
+ "description": "Returns a fully-hydrated candidate including references, documents, systems and checklists.",
135
+ "operationId": "GetCandidate",
136
+ "parameters": [
137
+ {
138
+ "name": "id",
139
+ "in": "path",
140
+ "required": true,
141
+ "schema": {
142
+ "type": "string"
143
+ },
144
+ "x-ms-summary": "Candidate Sanity id"
145
+ }
146
+ ],
147
+ "responses": {
148
+ "200": {
149
+ "description": "Payload of SanityCandidate",
150
+ "content": {
151
+ "application/json": {
152
+ "schema": {
153
+ "$ref": "#/components/schemas/sanityCandidate"
154
+ }
155
+ }
156
+ },
157
+ "x-ms-summary": "Success"
158
+ },
159
+ "401": {
160
+ "description": "No description",
161
+ "x-ms-summary": "Unauthorized"
162
+ },
163
+ "404": {
164
+ "description": "No description",
165
+ "x-ms-summary": "Not Found"
166
+ }
167
+ },
168
+ "security": [
169
+ {
170
+ "Implicit": [
171
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
172
+ ]
173
+ }
174
+ ]
175
+ },
176
+ "patch": {
177
+ "tags": [
178
+ "Candidates"
179
+ ],
180
+ "summary": "Patch candidate fields",
181
+ "description": "Updates any subset of candidate fields — status, buddy, recruiter, systems, checklists, contact info.",
182
+ "operationId": "PatchCandidate",
183
+ "parameters": [
184
+ {
185
+ "name": "id",
186
+ "in": "path",
187
+ "required": true,
188
+ "schema": {
189
+ "type": "string"
190
+ },
191
+ "x-ms-summary": "Candidate Sanity id"
192
+ }
193
+ ],
194
+ "requestBody": {
195
+ "description": "Partial candidate fields to update",
196
+ "content": {
197
+ "application/json": {
198
+ "schema": {
199
+ "$ref": "#/components/schemas/sanityPatchCandidate"
200
+ }
201
+ }
202
+ },
203
+ "required": true
204
+ },
205
+ "responses": {
206
+ "200": {
207
+ "description": "The patched candidate",
208
+ "content": {
209
+ "application/json": {
210
+ "schema": {
211
+ "$ref": "#/components/schemas/sanityCandidate"
212
+ }
213
+ }
214
+ },
215
+ "x-ms-summary": "Success"
216
+ },
217
+ "400": {
218
+ "description": "Payload of Object",
219
+ "content": {
220
+ "application/json": {
221
+ "schema": {
222
+ "type": "object"
223
+ }
224
+ }
225
+ },
226
+ "x-ms-summary": "Bad Request"
227
+ },
228
+ "401": {
229
+ "description": "No description",
230
+ "x-ms-summary": "Unauthorized"
231
+ },
232
+ "404": {
233
+ "description": "No description",
234
+ "x-ms-summary": "Not Found"
235
+ }
236
+ },
237
+ "security": [
238
+ {
239
+ "Implicit": [
240
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
241
+ ]
242
+ }
243
+ ]
244
+ }
245
+ },
246
+ "/v1.0/protected/candidates/{id}/promote": {
247
+ "post": {
248
+ "tags": [
249
+ "Candidates"
250
+ ],
251
+ "summary": "Promote a public job application to the pipeline",
252
+ "description": "Flips fromApplication=false and bumps status to INTRODUCTION so the candidate appears in the admin pipeline.",
253
+ "operationId": "PromoteApplication",
254
+ "parameters": [
255
+ {
256
+ "name": "id",
257
+ "in": "path",
258
+ "required": true,
259
+ "schema": {
260
+ "type": "string"
261
+ },
262
+ "x-ms-summary": "Candidate Sanity id"
263
+ }
264
+ ],
265
+ "responses": {
266
+ "200": {
267
+ "description": "The promoted candidate",
268
+ "content": {
269
+ "application/json": {
270
+ "schema": {
271
+ "$ref": "#/components/schemas/sanityCandidate"
272
+ }
273
+ }
274
+ },
275
+ "x-ms-summary": "Success"
276
+ },
277
+ "400": {
278
+ "description": "Candidate is not a public job application",
279
+ "content": {
280
+ "application/json": {
281
+ "schema": {
282
+ "type": "object"
283
+ }
284
+ }
285
+ },
286
+ "x-ms-summary": "Bad Request"
287
+ },
288
+ "401": {
289
+ "description": "No description",
290
+ "x-ms-summary": "Unauthorized"
291
+ },
292
+ "404": {
293
+ "description": "No description",
294
+ "x-ms-summary": "Not Found"
295
+ }
296
+ },
297
+ "security": [
298
+ {
299
+ "Implicit": [
300
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
301
+ ]
302
+ }
303
+ ]
304
+ }
305
+ },
306
+ "/v1.0/protected/candidates/{id}/onboard/{system}": {
307
+ "post": {
308
+ "tags": [
309
+ "Candidates"
310
+ ],
311
+ "summary": "Trigger automated onboarding for a given system",
312
+ "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.",
313
+ "operationId": "OnboardCandidateSystem",
314
+ "parameters": [
315
+ {
316
+ "name": "id",
317
+ "in": "path",
318
+ "required": true,
319
+ "schema": {
320
+ "type": "string"
321
+ },
322
+ "x-ms-summary": "Candidate Sanity id"
323
+ },
324
+ {
325
+ "name": "system",
326
+ "in": "path",
327
+ "required": true,
328
+ "schema": {
329
+ "type": "string"
330
+ },
331
+ "x-ms-summary": "System slug (e.g. 'microsoft-365')"
332
+ }
333
+ ],
334
+ "responses": {
335
+ "200": {
336
+ "description": "Uniform onboarding result with status + message",
337
+ "content": {
338
+ "application/json": {
339
+ "schema": {
340
+ "$ref": "#/components/schemas/onboardingResult"
341
+ }
342
+ }
343
+ },
344
+ "x-ms-summary": "Success"
345
+ },
346
+ "400": {
347
+ "description": "Payload of Object",
348
+ "content": {
349
+ "application/json": {
350
+ "schema": {
351
+ "type": "object"
352
+ }
353
+ }
354
+ },
355
+ "x-ms-summary": "Bad Request"
356
+ },
357
+ "401": {
358
+ "description": "No description",
359
+ "x-ms-summary": "Unauthorized"
360
+ },
361
+ "404": {
362
+ "description": "No description",
363
+ "x-ms-summary": "Not Found"
364
+ }
365
+ },
366
+ "security": [
367
+ {
368
+ "Implicit": [
369
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
370
+ ]
371
+ }
372
+ ]
373
+ }
374
+ },
375
+ "/v1.0/protected/candidates/{id}/onboard-full/stream": {
376
+ "post": {
377
+ "tags": [
378
+ "Candidates"
379
+ ],
380
+ "summary": "Run the onboarding chain with a live SSE event feed",
381
+ "description": "Same chain as /onboard-full but streams Server-Sent Events (`event: step`) as each step starts (`status:running`) and finishes (`succeeded`/`failed`). Closes with `event: done`. Frontend uses fetch streaming so we can pass a Bearer token; EventSource doesn't support custom headers.",
382
+ "operationId": "OnboardCandidateFullStream",
383
+ "parameters": [
384
+ {
385
+ "name": "id",
386
+ "in": "path",
387
+ "required": true,
388
+ "schema": {
389
+ "type": "string"
390
+ }
391
+ }
392
+ ],
393
+ "responses": {
394
+ "200": {
395
+ "description": "No description",
396
+ "x-ms-summary": "SSE stream of OnboardingResult frames"
397
+ }
398
+ },
399
+ "security": [
400
+ {
401
+ "Implicit": [
402
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
403
+ ]
404
+ }
405
+ ]
406
+ }
407
+ },
408
+ "/v1.0/protected/candidates/{id}/onboard-full": {
409
+ "post": {
410
+ "tags": [
411
+ "Candidates"
412
+ ],
413
+ "summary": "Run the full automated onboarding chain",
414
+ "description": "Provisions the candidate's Microsoft 365 user, then triggers an Azure AD → Sanity sync to create the matching employee doc. Returns one OnboardingResult row per step so the admin UI can render a live timeline.",
415
+ "operationId": "OnboardCandidateFull",
416
+ "parameters": [
417
+ {
418
+ "name": "id",
419
+ "in": "path",
420
+ "required": true,
421
+ "schema": {
422
+ "type": "string"
423
+ },
424
+ "x-ms-summary": "Candidate Sanity id"
425
+ }
426
+ ],
427
+ "responses": {
428
+ "200": {
429
+ "description": "Per-step results",
430
+ "content": {
431
+ "application/json": {
432
+ "schema": {
433
+ "type": "array",
434
+ "items": {
435
+ "$ref": "#/components/schemas/onboardingResult"
436
+ }
437
+ }
438
+ }
439
+ },
440
+ "x-ms-summary": "Success"
441
+ },
442
+ "401": {
443
+ "description": "No description",
444
+ "x-ms-summary": "Unauthorized"
445
+ },
446
+ "404": {
447
+ "description": "No description",
448
+ "x-ms-summary": "Not Found"
449
+ }
450
+ },
451
+ "security": [
452
+ {
453
+ "Implicit": [
454
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
455
+ ]
456
+ }
457
+ ]
458
+ }
459
+ },
460
+ "/v1.0/protected/candidates/{id}/offboard-full": {
461
+ "post": {
462
+ "tags": [
463
+ "Candidates"
464
+ ],
465
+ "summary": "Run the full automated offboarding chain",
466
+ "description": "Disables the candidate's Microsoft 365 user and triggers an Azure AD → Sanity sync so the employee doc reflects the disabled state.",
467
+ "operationId": "OffboardCandidateFull",
468
+ "parameters": [
469
+ {
470
+ "name": "id",
471
+ "in": "path",
472
+ "required": true,
473
+ "schema": {
474
+ "type": "string"
475
+ }
476
+ }
477
+ ],
478
+ "responses": {
479
+ "200": {
480
+ "description": "Per-step results",
481
+ "content": {
482
+ "application/json": {
483
+ "schema": {
484
+ "type": "array",
485
+ "items": {
486
+ "$ref": "#/components/schemas/onboardingResult"
487
+ }
488
+ }
489
+ }
490
+ },
491
+ "x-ms-summary": "Success"
492
+ },
493
+ "401": {
494
+ "description": "No description",
495
+ "x-ms-summary": "Unauthorized"
496
+ },
497
+ "404": {
498
+ "description": "No description",
499
+ "x-ms-summary": "Not Found"
500
+ }
501
+ },
502
+ "security": [
503
+ {
504
+ "Implicit": [
505
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
506
+ ]
507
+ }
508
+ ]
509
+ }
510
+ },
511
+ "/v1.0/protected/candidates/{id}/offboard-full/stream": {
512
+ "post": {
513
+ "tags": [
514
+ "Candidates"
515
+ ],
516
+ "summary": "Offboarding chain with a live SSE event feed",
517
+ "description": "Streams the offboarding chain step-by-step as Server-Sent Events. Mirrors /onboard-full/stream.",
518
+ "operationId": "OffboardCandidateFullStream",
519
+ "parameters": [
520
+ {
521
+ "name": "id",
522
+ "in": "path",
523
+ "required": true,
524
+ "schema": {
525
+ "type": "string"
526
+ }
527
+ }
528
+ ],
529
+ "responses": {
530
+ "200": {
531
+ "description": "No description",
532
+ "x-ms-summary": "SSE stream of OnboardingResult frames"
533
+ }
534
+ },
535
+ "security": [
536
+ {
537
+ "Implicit": [
538
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
539
+ ]
540
+ }
541
+ ]
542
+ }
543
+ },
544
+ "/v1.0/protected/candidates/{id}/reject": {
545
+ "post": {
546
+ "tags": [
547
+ "Candidates"
548
+ ],
549
+ "summary": "Reject a candidate",
550
+ "description": "Sets status=REJECTED. Convenience wrapper over PatchCandidate so UIs have a single-action reject button.",
551
+ "operationId": "RejectCandidate",
552
+ "parameters": [
553
+ {
554
+ "name": "id",
555
+ "in": "path",
556
+ "required": true,
557
+ "schema": {
558
+ "type": "string"
559
+ },
560
+ "x-ms-summary": "Candidate Sanity id"
561
+ }
562
+ ],
563
+ "responses": {
564
+ "200": {
565
+ "description": "Payload of SanityCandidate",
566
+ "content": {
567
+ "application/json": {
568
+ "schema": {
569
+ "$ref": "#/components/schemas/sanityCandidate"
570
+ }
571
+ }
572
+ },
573
+ "x-ms-summary": "Success"
574
+ },
575
+ "401": {
576
+ "description": "No description",
577
+ "x-ms-summary": "Unauthorized"
578
+ },
579
+ "404": {
580
+ "description": "No description",
581
+ "x-ms-summary": "Not Found"
582
+ }
583
+ },
584
+ "security": [
585
+ {
586
+ "Implicit": [
587
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
588
+ ]
589
+ }
590
+ ]
591
+ }
592
+ },
593
+ "/v1.0/protected/job-positions": {
594
+ "get": {
595
+ "tags": [
596
+ "JobPositions"
597
+ ],
598
+ "summary": "List published job positions",
599
+ "description": "Returns every job position document. Used by the admin stillinger page.",
600
+ "operationId": "ListJobPositions",
601
+ "responses": {
602
+ "200": {
603
+ "description": "Payload of Array of SanityJobPosition",
604
+ "content": {
605
+ "application/json": {
606
+ "schema": {
607
+ "type": "array",
608
+ "items": {
609
+ "$ref": "#/components/schemas/sanityJobPosition"
610
+ }
611
+ }
612
+ }
613
+ },
614
+ "x-ms-summary": "Success"
615
+ },
616
+ "401": {
617
+ "description": "No description",
618
+ "x-ms-summary": "Unauthorized"
619
+ }
620
+ },
621
+ "security": [
622
+ {
623
+ "Implicit": [
624
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
625
+ ]
626
+ }
627
+ ]
628
+ }
629
+ },
630
+ "/v1.0/protected/systems": {
631
+ "get": {
632
+ "tags": [
633
+ "Systems"
634
+ ],
635
+ "summary": "List systems used for onboarding checklists",
636
+ "description": "Returns every system document. Used by the candidate detail and systems library pages.",
637
+ "operationId": "ListSystems",
638
+ "responses": {
639
+ "200": {
640
+ "description": "Payload of Array of SanitySystems",
641
+ "content": {
642
+ "application/json": {
643
+ "schema": {
644
+ "type": "array",
645
+ "items": {
646
+ "$ref": "#/components/schemas/sanitySystems"
647
+ }
648
+ }
649
+ }
650
+ },
651
+ "x-ms-summary": "Success"
652
+ },
653
+ "401": {
654
+ "description": "No description",
655
+ "x-ms-summary": "Unauthorized"
656
+ }
657
+ },
658
+ "security": [
659
+ {
660
+ "Implicit": [
661
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
662
+ ]
663
+ }
664
+ ]
665
+ },
666
+ "post": {
667
+ "tags": [
668
+ "Systems"
669
+ ],
670
+ "summary": "Create a system",
671
+ "description": "Adds a new system to the onboarding/offboarding system library.",
672
+ "operationId": "CreateSystem",
673
+ "requestBody": {
674
+ "content": {
675
+ "application/json": {
676
+ "schema": {
677
+ "$ref": "#/components/schemas/sanityCreateSystem"
678
+ }
679
+ }
680
+ },
681
+ "required": true
682
+ },
683
+ "responses": {
684
+ "200": {
685
+ "description": "Payload of SanitySystems",
686
+ "content": {
687
+ "application/json": {
688
+ "schema": {
689
+ "$ref": "#/components/schemas/sanitySystems"
690
+ }
691
+ }
692
+ },
693
+ "x-ms-summary": "Success"
694
+ },
695
+ "400": {
696
+ "description": "Payload of Object",
697
+ "content": {
698
+ "application/json": {
699
+ "schema": {
700
+ "type": "object"
701
+ }
702
+ }
703
+ },
704
+ "x-ms-summary": "Bad Request"
705
+ },
706
+ "401": {
707
+ "description": "No description",
708
+ "x-ms-summary": "Unauthorized"
709
+ }
710
+ },
711
+ "security": [
712
+ {
713
+ "Implicit": [
714
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
715
+ ]
716
+ }
717
+ ]
718
+ }
719
+ },
720
+ "/v1.0/protected/onboarding-chain/automated-system-titles": {
721
+ "get": {
722
+ "tags": [
723
+ "Systems"
724
+ ],
725
+ "summary": "List systems handled end-to-end by the onboarding chain",
726
+ "description": "Returns title + maturity status (stable / beta) so the admin UI can badge systems that need no per-row admin action and flag the experimental ones.",
727
+ "operationId": "GetChainAutomatedSystemTitles",
728
+ "responses": {
729
+ "200": {
730
+ "description": "Payload of Array of ChainAutomatedSystem",
731
+ "content": {
732
+ "application/json": {
733
+ "schema": {
734
+ "type": "array",
735
+ "items": {
736
+ "$ref": "#/components/schemas/chainAutomatedSystem"
737
+ }
738
+ }
739
+ }
740
+ },
741
+ "x-ms-summary": "Success"
742
+ },
743
+ "401": {
744
+ "description": "No description",
745
+ "x-ms-summary": "Unauthorized"
746
+ }
747
+ },
748
+ "security": [
749
+ {
750
+ "Implicit": [
751
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
752
+ ]
753
+ }
754
+ ]
755
+ }
756
+ },
757
+ "/v1.0/protected/onboarding-tasks": {
758
+ "get": {
759
+ "tags": [
760
+ "Tasks"
761
+ ],
762
+ "summary": "List every onboarding task",
763
+ "description": "Returns all onboarding tasks with their Portable Text description so the admin can render an editable checklist with contextual notes.",
764
+ "operationId": "ListOnboardingTasks",
765
+ "responses": {
766
+ "200": {
767
+ "description": "Payload of Array of SanityTask",
768
+ "content": {
769
+ "application/json": {
770
+ "schema": {
771
+ "type": "array",
772
+ "items": {
773
+ "$ref": "#/components/schemas/sanityTask"
774
+ }
775
+ }
776
+ }
777
+ },
778
+ "x-ms-summary": "Success"
779
+ },
780
+ "401": {
781
+ "description": "No description",
782
+ "x-ms-summary": "Unauthorized"
783
+ }
784
+ },
785
+ "security": [
786
+ {
787
+ "Implicit": [
788
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
789
+ ]
790
+ }
791
+ ]
792
+ }
793
+ },
794
+ "/v1.0/protected/offboarding-tasks": {
795
+ "get": {
796
+ "tags": [
797
+ "Tasks"
798
+ ],
799
+ "summary": "List every offboarding task",
800
+ "description": "Returns all offboarding tasks with their Portable Text description for the admin offboarding checklist.",
801
+ "operationId": "ListOffboardingTasks",
802
+ "responses": {
803
+ "200": {
804
+ "description": "Payload of Array of SanityTask",
805
+ "content": {
806
+ "application/json": {
807
+ "schema": {
808
+ "type": "array",
809
+ "items": {
810
+ "$ref": "#/components/schemas/sanityTask"
811
+ }
812
+ }
813
+ }
814
+ },
815
+ "x-ms-summary": "Success"
816
+ },
817
+ "401": {
818
+ "description": "No description",
819
+ "x-ms-summary": "Unauthorized"
820
+ }
821
+ },
822
+ "security": [
823
+ {
824
+ "Implicit": [
825
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
826
+ ]
827
+ }
828
+ ]
829
+ }
830
+ },
831
+ "/v1.0/protected/onboarding-tasks/with-reminder": {
832
+ "get": {
833
+ "tags": [
834
+ "Tasks"
835
+ ],
836
+ "summary": "List onboarding tasks with a Slack reminder",
837
+ "description": "Returns onboarding tasks that have reminderWeeksBefore + reminderSlackChannel set. Used by the admin oppgaver page.",
838
+ "operationId": "ListOnboardingTasksWithReminder",
839
+ "responses": {
840
+ "200": {
841
+ "description": "Payload of Array of SanityOnboardingTask",
842
+ "content": {
843
+ "application/json": {
844
+ "schema": {
845
+ "type": "array",
846
+ "items": {
847
+ "$ref": "#/components/schemas/sanityOnboardingTask"
848
+ }
849
+ }
850
+ }
851
+ },
852
+ "x-ms-summary": "Success"
853
+ },
854
+ "401": {
855
+ "description": "No description",
856
+ "x-ms-summary": "Unauthorized"
857
+ }
858
+ },
859
+ "security": [
860
+ {
861
+ "Implicit": [
862
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
863
+ ]
864
+ }
865
+ ]
866
+ }
867
+ },
868
+ "/v1.0/protected/tasks": {
869
+ "post": {
870
+ "tags": [
871
+ "Tasks"
872
+ ],
873
+ "summary": "Create an onboarding or offboarding task",
874
+ "description": "Adds a new task document to the library with optional Portable Text description and Slack reminder settings.",
875
+ "operationId": "CreateTask",
876
+ "requestBody": {
877
+ "content": {
878
+ "application/json": {
879
+ "schema": {
880
+ "$ref": "#/components/schemas/sanityCreateTask"
881
+ }
882
+ }
883
+ },
884
+ "required": true
885
+ },
886
+ "responses": {
887
+ "200": {
888
+ "description": "Payload of SanityTask",
889
+ "content": {
890
+ "application/json": {
891
+ "schema": {
892
+ "$ref": "#/components/schemas/sanityTask"
893
+ }
894
+ }
895
+ },
896
+ "x-ms-summary": "Success"
897
+ },
898
+ "400": {
899
+ "description": "Payload of Object",
900
+ "content": {
901
+ "application/json": {
902
+ "schema": {
903
+ "type": "object"
904
+ }
905
+ }
906
+ },
907
+ "x-ms-summary": "Bad Request"
908
+ },
909
+ "401": {
910
+ "description": "No description",
911
+ "x-ms-summary": "Unauthorized"
912
+ }
913
+ },
914
+ "security": [
915
+ {
916
+ "Implicit": [
917
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
918
+ ]
919
+ }
920
+ ]
921
+ }
922
+ },
923
+ "/v1.0/protected/tasks/{id}": {
924
+ "patch": {
925
+ "tags": [
926
+ "Tasks"
927
+ ],
928
+ "summary": "Update an onboarding or offboarding task",
929
+ "description": "Partially updates a task. Omitted fields are left unchanged; pass null to clear an optional field.",
930
+ "operationId": "PatchTask",
931
+ "parameters": [
932
+ {
933
+ "name": "id",
934
+ "in": "path",
935
+ "required": true,
936
+ "schema": {
937
+ "type": "string"
938
+ }
939
+ }
940
+ ],
941
+ "requestBody": {
942
+ "content": {
943
+ "application/json": {
944
+ "schema": {
945
+ "$ref": "#/components/schemas/sanityPatchTask"
946
+ }
947
+ }
948
+ },
949
+ "required": true
950
+ },
951
+ "responses": {
952
+ "200": {
953
+ "description": "Payload of SanityTask",
954
+ "content": {
955
+ "application/json": {
956
+ "schema": {
957
+ "$ref": "#/components/schemas/sanityTask"
958
+ }
959
+ }
960
+ },
961
+ "x-ms-summary": "Success"
962
+ },
963
+ "400": {
964
+ "description": "Payload of Object",
965
+ "content": {
966
+ "application/json": {
967
+ "schema": {
968
+ "type": "object"
969
+ }
970
+ }
971
+ },
972
+ "x-ms-summary": "Bad Request"
973
+ },
974
+ "401": {
975
+ "description": "No description",
976
+ "x-ms-summary": "Unauthorized"
977
+ },
978
+ "404": {
979
+ "description": "No description",
980
+ "x-ms-summary": "Not Found"
981
+ }
982
+ },
983
+ "security": [
984
+ {
985
+ "Implicit": [
986
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
987
+ ]
988
+ }
989
+ ]
990
+ },
991
+ "delete": {
992
+ "tags": [
993
+ "Tasks"
994
+ ],
995
+ "summary": "Delete a task",
996
+ "description": "Removes a task from the library. Does not touch candidate checklists that reference it.",
997
+ "operationId": "DeleteTask",
998
+ "parameters": [
999
+ {
1000
+ "name": "id",
1001
+ "in": "path",
1002
+ "required": true,
1003
+ "schema": {
1004
+ "type": "string"
1005
+ }
1006
+ }
1007
+ ],
1008
+ "responses": {
1009
+ "200": {
1010
+ "description": "Payload of SanityTask",
1011
+ "content": {
1012
+ "application/json": {
1013
+ "schema": {
1014
+ "$ref": "#/components/schemas/sanityTask"
1015
+ }
1016
+ }
1017
+ },
1018
+ "x-ms-summary": "Success"
1019
+ },
1020
+ "401": {
1021
+ "description": "No description",
1022
+ "x-ms-summary": "Unauthorized"
1023
+ },
1024
+ "404": {
1025
+ "description": "No description",
1026
+ "x-ms-summary": "Not Found"
1027
+ }
1028
+ },
1029
+ "security": [
1030
+ {
1031
+ "Implicit": [
1032
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
1033
+ ]
1034
+ }
1035
+ ]
1036
+ }
1037
+ },
1038
+ "/v1.0/protected/systems/{id}": {
1039
+ "patch": {
1040
+ "tags": [
1041
+ "Systems"
1042
+ ],
1043
+ "summary": "Update a system",
1044
+ "operationId": "PatchSystem",
1045
+ "parameters": [
1046
+ {
1047
+ "name": "id",
1048
+ "in": "path",
1049
+ "required": true,
1050
+ "schema": {
1051
+ "type": "string"
1052
+ }
1053
+ }
1054
+ ],
1055
+ "requestBody": {
1056
+ "content": {
1057
+ "application/json": {
1058
+ "schema": {
1059
+ "$ref": "#/components/schemas/sanityPatchSystem"
1060
+ }
1061
+ }
1062
+ },
1063
+ "required": true
1064
+ },
1065
+ "responses": {
1066
+ "200": {
1067
+ "description": "Payload of SanitySystems",
1068
+ "content": {
1069
+ "application/json": {
1070
+ "schema": {
1071
+ "$ref": "#/components/schemas/sanitySystems"
1072
+ }
1073
+ }
1074
+ },
1075
+ "x-ms-summary": "Success"
1076
+ },
1077
+ "400": {
1078
+ "description": "Payload of Object",
1079
+ "content": {
1080
+ "application/json": {
1081
+ "schema": {
1082
+ "type": "object"
1083
+ }
1084
+ }
1085
+ },
1086
+ "x-ms-summary": "Bad Request"
1087
+ },
1088
+ "401": {
1089
+ "description": "No description",
1090
+ "x-ms-summary": "Unauthorized"
1091
+ },
1092
+ "404": {
1093
+ "description": "No description",
1094
+ "x-ms-summary": "Not Found"
1095
+ }
1096
+ },
1097
+ "security": [
1098
+ {
1099
+ "Implicit": [
1100
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
1101
+ ]
1102
+ }
1103
+ ]
1104
+ },
1105
+ "delete": {
1106
+ "tags": [
1107
+ "Systems"
1108
+ ],
1109
+ "summary": "Delete a system",
1110
+ "operationId": "DeleteSystem",
1111
+ "parameters": [
1112
+ {
1113
+ "name": "id",
1114
+ "in": "path",
1115
+ "required": true,
1116
+ "schema": {
1117
+ "type": "string"
1118
+ }
1119
+ }
1120
+ ],
1121
+ "responses": {
1122
+ "200": {
1123
+ "description": "Payload of SanitySystems",
1124
+ "content": {
1125
+ "application/json": {
1126
+ "schema": {
1127
+ "$ref": "#/components/schemas/sanitySystems"
1128
+ }
1129
+ }
1130
+ },
1131
+ "x-ms-summary": "Success"
1132
+ },
1133
+ "401": {
1134
+ "description": "No description",
1135
+ "x-ms-summary": "Unauthorized"
1136
+ },
1137
+ "404": {
1138
+ "description": "No description",
1139
+ "x-ms-summary": "Not Found"
1140
+ }
1141
+ },
1142
+ "security": [
1143
+ {
1144
+ "Implicit": [
1145
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
1146
+ ]
1147
+ }
1148
+ ]
1149
+ }
1150
+ },
1151
+ "/v1.0/protected/employees": {
1152
+ "get": {
1153
+ "tags": [
1154
+ "Employees"
1155
+ ],
1156
+ "summary": "List employees for buddy/recruiter assignment",
1157
+ "description": "Lightweight employee list used by the candidate detail page's buddy and recruiter dropdowns.",
1158
+ "operationId": "ListRecruitmentEmployees",
1159
+ "responses": {
1160
+ "200": {
1161
+ "description": "Payload of Array of SanityBasicEmployee",
1162
+ "content": {
1163
+ "application/json": {
1164
+ "schema": {
1165
+ "type": "array",
1166
+ "items": {
1167
+ "$ref": "#/components/schemas/sanityBasicEmployee"
1168
+ }
1169
+ }
1170
+ }
1171
+ },
1172
+ "x-ms-summary": "Success"
1173
+ },
1174
+ "401": {
1175
+ "description": "No description",
1176
+ "x-ms-summary": "Unauthorized"
1177
+ }
1178
+ },
1179
+ "security": [
1180
+ {
1181
+ "Implicit": [
1182
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default"
1183
+ ]
1184
+ }
1185
+ ]
1186
+ }
36
1187
  }
37
1188
  },
38
- "components": {}
1189
+ "components": {
1190
+ "schemas": {
1191
+ "chainAutomatedSystem": {
1192
+ "type": "object",
1193
+ "properties": {
1194
+ "title": {
1195
+ "type": "string"
1196
+ },
1197
+ "status": {
1198
+ "type": "string"
1199
+ }
1200
+ }
1201
+ },
1202
+ "onboardingResult": {
1203
+ "type": "object",
1204
+ "properties": {
1205
+ "step": {
1206
+ "type": "string"
1207
+ },
1208
+ "status": {
1209
+ "type": "string"
1210
+ },
1211
+ "message": {
1212
+ "type": "string"
1213
+ },
1214
+ "preferredEmail": {
1215
+ "type": "string"
1216
+ },
1217
+ "createdAccountId": {
1218
+ "type": "string"
1219
+ },
1220
+ "temporaryPassword": {
1221
+ "type": "string"
1222
+ }
1223
+ }
1224
+ },
1225
+ "sanityAssetSourceData": {
1226
+ "type": "object",
1227
+ "properties": {
1228
+ "additionalData": {
1229
+ "type": "object",
1230
+ "additionalProperties": {
1231
+ "type": "object"
1232
+ }
1233
+ },
1234
+ "id": {
1235
+ "type": "string"
1236
+ },
1237
+ "name": {
1238
+ "type": "string"
1239
+ },
1240
+ "sanityType": {
1241
+ "enum": [
1242
+ 0
1243
+ ],
1244
+ "type": "integer",
1245
+ "format": "int32",
1246
+ "default": 0,
1247
+ "nullable": true
1248
+ },
1249
+ "url": {
1250
+ "type": "string"
1251
+ }
1252
+ }
1253
+ },
1254
+ "sanityBasicEmployee": {
1255
+ "type": "object",
1256
+ "properties": {
1257
+ "additionalData": {
1258
+ "type": "object",
1259
+ "additionalProperties": {
1260
+ "type": "object"
1261
+ }
1262
+ },
1263
+ "email": {
1264
+ "type": "string"
1265
+ },
1266
+ "image": {
1267
+ "$ref": "#/components/schemas/sanityBasicEmployee_image"
1268
+ },
1269
+ "name": {
1270
+ "type": "string"
1271
+ },
1272
+ "sanityId": {
1273
+ "type": "string"
1274
+ },
1275
+ "sanityType": {
1276
+ "enum": [
1277
+ 0
1278
+ ],
1279
+ "type": "integer",
1280
+ "format": "int32",
1281
+ "default": 0,
1282
+ "nullable": true
1283
+ },
1284
+ "slug": {
1285
+ "$ref": "#/components/schemas/sanitySlug"
1286
+ },
1287
+ "tags": {
1288
+ "type": "array",
1289
+ "items": {
1290
+ "$ref": "#/components/schemas/sanityBasicEmployee_tags"
1291
+ }
1292
+ },
1293
+ "telephone": {
1294
+ "type": "string"
1295
+ }
1296
+ }
1297
+ },
1298
+ "sanityBasicEmployee_image": {
1299
+ "type": "object",
1300
+ "properties": {
1301
+ "additionalData": {
1302
+ "type": "object",
1303
+ "additionalProperties": {
1304
+ "type": "object"
1305
+ }
1306
+ },
1307
+ "asset": {
1308
+ "$ref": "#/components/schemas/sanityBasicEmployee_image_asset"
1309
+ },
1310
+ "sanityType": {
1311
+ "enum": [
1312
+ 0
1313
+ ],
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"
1332
+ },
1333
+ "originalFilename": {
1334
+ "type": "string"
1335
+ },
1336
+ "sanityId": {
1337
+ "type": "string"
1338
+ },
1339
+ "sanityType": {
1340
+ "enum": [
1341
+ 0
1342
+ ],
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"
1364
+ },
1365
+ "sanityId": {
1366
+ "type": "string"
1367
+ },
1368
+ "sanityType": {
1369
+ "enum": [
1370
+ 0
1371
+ ],
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
+ }
1390
+ },
1391
+ "address": {
1392
+ "$ref": "#/components/schemas/sanityCandidate_address"
1393
+ },
1394
+ "applicationLetter": {
1395
+ "$ref": "#/components/schemas/sanityCandidate_applicationLetter"
1396
+ },
1397
+ "applicationOther": {
1398
+ "type": "string"
1399
+ },
1400
+ "bankAccount": {
1401
+ "type": "string"
1402
+ },
1403
+ "buddy": {
1404
+ "$ref": "#/components/schemas/sanityCandidate_buddy"
1405
+ },
1406
+ "candidate": {
1407
+ "type": "string"
1408
+ },
1409
+ "cv": {
1410
+ "$ref": "#/components/schemas/sanityCandidate_cv"
1411
+ },
1412
+ "email": {
1413
+ "type": "string"
1414
+ },
1415
+ "employee": {
1416
+ "$ref": "#/components/schemas/sanityCandidate_employee"
1417
+ },
1418
+ "fromApplication": {
1419
+ "type": "boolean",
1420
+ "nullable": true
1421
+ },
1422
+ "githubUsername": {
1423
+ "type": "string"
1424
+ },
1425
+ "grades": {
1426
+ "$ref": "#/components/schemas/sanityCandidate_grades"
1427
+ },
1428
+ "offboardingChecklist": {
1429
+ "type": "array",
1430
+ "items": {
1431
+ "$ref": "#/components/schemas/sanityCandidate_offboardingChecklist"
1432
+ }
1433
+ },
1434
+ "onboardingChecklist": {
1435
+ "type": "array",
1436
+ "items": {
1437
+ "$ref": "#/components/schemas/sanityCandidate_onboardingChecklist"
1438
+ }
1439
+ },
1440
+ "ownership": {
1441
+ "type": "number",
1442
+ "format": "double",
1443
+ "nullable": true
1444
+ },
1445
+ "preferredDisplayName": {
1446
+ "type": "string"
1447
+ },
1448
+ "preferredEmail": {
1449
+ "type": "string"
1450
+ },
1451
+ "profileImage": {
1452
+ "$ref": "#/components/schemas/sanityCandidate_profileImage"
1453
+ },
1454
+ "recruiter": {
1455
+ "$ref": "#/components/schemas/sanityCandidate_recruiter"
1456
+ },
1457
+ "references": {
1458
+ "type": "array",
1459
+ "items": {
1460
+ "$ref": "#/components/schemas/sanityCandidate_references"
1461
+ }
1462
+ },
1463
+ "sanityCreatedAt": {
1464
+ "type": "string"
1465
+ },
1466
+ "sanityId": {
1467
+ "type": "string"
1468
+ },
1469
+ "sanityRev": {
1470
+ "type": "string"
1471
+ },
1472
+ "sanityType": {
1473
+ "enum": [
1474
+ 0
1475
+ ],
1476
+ "type": "integer",
1477
+ "format": "int32",
1478
+ "default": 0,
1479
+ "nullable": true
1480
+ },
1481
+ "sanityUpdatedAt": {
1482
+ "type": "string"
1483
+ },
1484
+ "shortUrl": {
1485
+ "type": "string"
1486
+ },
1487
+ "startDate": {
1488
+ "type": "string"
1489
+ },
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
+ "systemsActive": {
1507
+ "type": "array",
1508
+ "items": {
1509
+ "$ref": "#/components/schemas/sanityCandidate_systemsActive"
1510
+ }
1511
+ },
1512
+ "telephone": {
1513
+ "type": "string"
1514
+ },
1515
+ "track": {
1516
+ "enum": [
1517
+ 0,
1518
+ 1
1519
+ ],
1520
+ "type": "integer",
1521
+ "format": "int32",
1522
+ "default": 0,
1523
+ "nullable": true
1524
+ },
1525
+ "url": {
1526
+ "type": "string"
1527
+ }
1528
+ }
1529
+ },
1530
+ "sanityCandidate_address": {
1531
+ "type": "object",
1532
+ "properties": {
1533
+ "additionalData": {
1534
+ "type": "object",
1535
+ "additionalProperties": {
1536
+ "type": "object"
1537
+ }
1538
+ },
1539
+ "city": {
1540
+ "type": "string"
1541
+ },
1542
+ "postalCode": {
1543
+ "type": "string"
1544
+ },
1545
+ "street": {
1546
+ "type": "string"
1547
+ }
1548
+ }
1549
+ },
1550
+ "sanityCandidate_applicationLetter": {
1551
+ "type": "object",
1552
+ "properties": {
1553
+ "additionalData": {
1554
+ "type": "object",
1555
+ "additionalProperties": {
1556
+ "type": "object"
1557
+ }
1558
+ },
1559
+ "asset": {
1560
+ "$ref": "#/components/schemas/sanityCandidate_applicationLetter_asset"
1561
+ },
1562
+ "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
1573
+ }
1574
+ }
1575
+ },
1576
+ "sanityCandidate_applicationLetter_asset": {
1577
+ "type": "object",
1578
+ "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"
1611
+ },
1612
+ "sanityId": {
1613
+ "type": "string"
1614
+ },
1615
+ "sanityRev": {
1616
+ "type": "string"
1617
+ },
1618
+ "sanityType": {
1619
+ "enum": [
1620
+ 0
1621
+ ],
1622
+ "type": "integer",
1623
+ "format": "int32",
1624
+ "default": 0,
1625
+ "nullable": true
1626
+ },
1627
+ "sanityUpdatedAt": {
1628
+ "type": "string"
1629
+ },
1630
+ "sha1hash": {
1631
+ "type": "string"
1632
+ },
1633
+ "size": {
1634
+ "type": "number",
1635
+ "format": "double",
1636
+ "nullable": true
1637
+ },
1638
+ "source": {
1639
+ "$ref": "#/components/schemas/sanityAssetSourceData"
1640
+ },
1641
+ "title": {
1642
+ "type": "string"
1643
+ },
1644
+ "uploadId": {
1645
+ "type": "string"
1646
+ },
1647
+ "url": {
1648
+ "type": "string"
1649
+ }
1650
+ }
1651
+ },
1652
+ "sanityCandidate_buddy": {
1653
+ "type": "object",
1654
+ "properties": {
1655
+ "additionalData": {
1656
+ "type": "object",
1657
+ "additionalProperties": {
1658
+ "type": "object"
1659
+ }
1660
+ },
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": {
1686
+ "type": "array",
1687
+ "items": {
1688
+ "$ref": "#/components/schemas/sanityCandidate_buddy_tags"
1689
+ }
1690
+ },
1691
+ "telephone": {
1692
+ "type": "string"
1693
+ }
1694
+ }
1695
+ },
1696
+ "sanityCandidate_buddy_image": {
1697
+ "type": "object",
1698
+ "properties": {
1699
+ "additionalData": {
1700
+ "type": "object",
1701
+ "additionalProperties": {
1702
+ "type": "object"
1703
+ }
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
+ }
1717
+ }
1718
+ },
1719
+ "sanityCandidate_buddy_image_asset": {
1720
+ "type": "object",
1721
+ "properties": {
1722
+ "additionalData": {
1723
+ "type": "object",
1724
+ "additionalProperties": {
1725
+ "type": "object"
1726
+ }
1727
+ },
1728
+ "mimeType": {
1729
+ "type": "string"
1730
+ },
1731
+ "originalFilename": {
1732
+ "type": "string"
1733
+ },
1734
+ "sanityId": {
1735
+ "type": "string"
1736
+ },
1737
+ "sanityType": {
1738
+ "enum": [
1739
+ 0
1740
+ ],
1741
+ "type": "integer",
1742
+ "format": "int32",
1743
+ "default": 0,
1744
+ "nullable": true
1745
+ },
1746
+ "url": {
1747
+ "type": "string"
1748
+ }
1749
+ }
1750
+ },
1751
+ "sanityCandidate_buddy_tags": {
1752
+ "type": "object",
1753
+ "properties": {
1754
+ "additionalData": {
1755
+ "type": "object",
1756
+ "additionalProperties": {
1757
+ "type": "object"
1758
+ }
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
+ }
1778
+ }
1779
+ },
1780
+ "sanityCandidate_cv": {
1781
+ "type": "object",
1782
+ "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
+ "sanityType": {
1796
+ "enum": [
1797
+ 0
1798
+ ],
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
+ }
1814
+ },
1815
+ "altText": {
1816
+ "type": "string"
1817
+ },
1818
+ "assetId": {
1819
+ "type": "string"
1820
+ },
1821
+ "description": {
1822
+ "type": "string"
1823
+ },
1824
+ "extension": {
1825
+ "type": "string"
1826
+ },
1827
+ "label": {
1828
+ "type": "string"
1829
+ },
1830
+ "mimeType": {
1831
+ "type": "string"
1832
+ },
1833
+ "originalFilename": {
1834
+ "type": "string"
1835
+ },
1836
+ "path": {
1837
+ "type": "string"
1838
+ },
1839
+ "sanityCreatedAt": {
1840
+ "type": "string"
1841
+ },
1842
+ "sanityId": {
1843
+ "type": "string"
1844
+ },
1845
+ "sanityRev": {
1846
+ "type": "string"
1847
+ },
1848
+ "sanityType": {
1849
+ "enum": [
1850
+ 0
1851
+ ],
1852
+ "type": "integer",
1853
+ "format": "int32",
1854
+ "default": 0,
1855
+ "nullable": true
1856
+ },
1857
+ "sanityUpdatedAt": {
1858
+ "type": "string"
1859
+ },
1860
+ "sha1hash": {
1861
+ "type": "string"
1862
+ },
1863
+ "size": {
1864
+ "type": "number",
1865
+ "format": "double",
1866
+ "nullable": true
1867
+ },
1868
+ "source": {
1869
+ "$ref": "#/components/schemas/sanityAssetSourceData"
1870
+ },
1871
+ "title": {
1872
+ "type": "string"
1873
+ },
1874
+ "uploadId": {
1875
+ "type": "string"
1876
+ },
1877
+ "url": {
1878
+ "type": "string"
1879
+ }
1880
+ }
1881
+ },
1882
+ "sanityCandidate_employee": {
1883
+ "type": "object",
1884
+ "properties": {
1885
+ "additionalData": {
1886
+ "type": "object",
1887
+ "additionalProperties": {
1888
+ "type": "object"
1889
+ }
1890
+ },
1891
+ "email": {
1892
+ "type": "string"
1893
+ },
1894
+ "image": {
1895
+ "$ref": "#/components/schemas/sanityCandidate_employee_image"
1896
+ },
1897
+ "name": {
1898
+ "type": "string"
1899
+ },
1900
+ "sanityId": {
1901
+ "type": "string"
1902
+ },
1903
+ "sanityType": {
1904
+ "enum": [
1905
+ 0
1906
+ ],
1907
+ "type": "integer",
1908
+ "format": "int32",
1909
+ "default": 0,
1910
+ "nullable": true
1911
+ },
1912
+ "slug": {
1913
+ "$ref": "#/components/schemas/sanitySlug"
1914
+ },
1915
+ "tags": {
1916
+ "type": "array",
1917
+ "items": {
1918
+ "$ref": "#/components/schemas/sanityCandidate_employee_tags"
1919
+ }
1920
+ },
1921
+ "telephone": {
1922
+ "type": "string"
1923
+ }
1924
+ }
1925
+ },
1926
+ "sanityCandidate_employee_image": {
1927
+ "type": "object",
1928
+ "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
+ "sanityType": {
1939
+ "enum": [
1940
+ 0
1941
+ ],
1942
+ "type": "integer",
1943
+ "format": "int32",
1944
+ "default": 0,
1945
+ "nullable": true
1946
+ }
1947
+ }
1948
+ },
1949
+ "sanityCandidate_employee_image_asset": {
1950
+ "type": "object",
1951
+ "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
+ "sanityType": {
1968
+ "enum": [
1969
+ 0
1970
+ ],
1971
+ "type": "integer",
1972
+ "format": "int32",
1973
+ "default": 0,
1974
+ "nullable": true
1975
+ },
1976
+ "url": {
1977
+ "type": "string"
1978
+ }
1979
+ }
1980
+ },
1981
+ "sanityCandidate_employee_tags": {
1982
+ "type": "object",
1983
+ "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
+ "sanityType": {
1997
+ "enum": [
1998
+ 0
1999
+ ],
2000
+ "type": "integer",
2001
+ "format": "int32",
2002
+ "default": 0,
2003
+ "nullable": true
2004
+ },
2005
+ "slug": {
2006
+ "$ref": "#/components/schemas/sanitySlug"
2007
+ }
2008
+ }
2009
+ },
2010
+ "sanityCandidate_grades": {
2011
+ "type": "object",
2012
+ "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
+ "sanityType": {
2026
+ "enum": [
2027
+ 0
2028
+ ],
2029
+ "type": "integer",
2030
+ "format": "int32",
2031
+ "default": 0,
2032
+ "nullable": true
2033
+ }
2034
+ }
2035
+ },
2036
+ "sanityCandidate_grades_asset": {
2037
+ "type": "object",
2038
+ "properties": {
2039
+ "additionalData": {
2040
+ "type": "object",
2041
+ "additionalProperties": {
2042
+ "type": "object"
2043
+ }
2044
+ },
2045
+ "altText": {
2046
+ "type": "string"
2047
+ },
2048
+ "assetId": {
2049
+ "type": "string"
2050
+ },
2051
+ "description": {
2052
+ "type": "string"
2053
+ },
2054
+ "extension": {
2055
+ "type": "string"
2056
+ },
2057
+ "label": {
2058
+ "type": "string"
2059
+ },
2060
+ "mimeType": {
2061
+ "type": "string"
2062
+ },
2063
+ "originalFilename": {
2064
+ "type": "string"
2065
+ },
2066
+ "path": {
2067
+ "type": "string"
2068
+ },
2069
+ "sanityCreatedAt": {
2070
+ "type": "string"
2071
+ },
2072
+ "sanityId": {
2073
+ "type": "string"
2074
+ },
2075
+ "sanityRev": {
2076
+ "type": "string"
2077
+ },
2078
+ "sanityType": {
2079
+ "enum": [
2080
+ 0
2081
+ ],
2082
+ "type": "integer",
2083
+ "format": "int32",
2084
+ "default": 0,
2085
+ "nullable": true
2086
+ },
2087
+ "sanityUpdatedAt": {
2088
+ "type": "string"
2089
+ },
2090
+ "sha1hash": {
2091
+ "type": "string"
2092
+ },
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": {
3081
+ "type": "object",
3082
+ "additionalProperties": {
3083
+ "type": "object"
3084
+ }
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
+ }
3098
+ }
3099
+ },
3100
+ "sanityJobPosition_image_asset": {
3101
+ "type": "object",
3102
+ "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
+ "sanityType": {
3119
+ "enum": [
3120
+ 0
3121
+ ],
3122
+ "type": "integer",
3123
+ "format": "int32",
3124
+ "default": 0,
3125
+ "nullable": true
3126
+ },
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",
3144
+ "nullable": true
3145
+ },
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": {
3165
+ "enum": [
3166
+ 0
3167
+ ],
3168
+ "type": "integer",
3169
+ "format": "int32",
3170
+ "default": 0,
3171
+ "nullable": true
3172
+ }
3173
+ }
3174
+ },
3175
+ "sanityPatchCandidate": {
3176
+ "type": "object",
3177
+ "properties": {
3178
+ "additionalData": {
3179
+ "type": "object",
3180
+ "additionalProperties": {
3181
+ "type": "object"
3182
+ }
3183
+ },
3184
+ "address": {
3185
+ "$ref": "#/components/schemas/sanityPatchCandidate_address"
3186
+ },
3187
+ "applicationLetter": {
3188
+ "$ref": "#/components/schemas/sanityPatchCandidate_applicationLetter"
3189
+ },
3190
+ "applicationOther": {
3191
+ "type": "string"
3192
+ },
3193
+ "bankAccount": {
3194
+ "type": "string"
3195
+ },
3196
+ "buddy": {
3197
+ "$ref": "#/components/schemas/sanityEmployeeReference"
3198
+ },
3199
+ "candidate": {
3200
+ "type": "string"
3201
+ },
3202
+ "cv": {
3203
+ "$ref": "#/components/schemas/sanityPatchCandidate_cv"
3204
+ },
3205
+ "email": {
3206
+ "type": "string"
3207
+ },
3208
+ "employee": {
3209
+ "$ref": "#/components/schemas/sanityEmployeeReference"
3210
+ },
3211
+ "fromApplication": {
3212
+ "type": "boolean",
3213
+ "nullable": true
3214
+ },
3215
+ "githubUsername": {
3216
+ "type": "string"
3217
+ },
3218
+ "grades": {
3219
+ "$ref": "#/components/schemas/sanityPatchCandidate_grades"
3220
+ },
3221
+ "offboardingChecklist": {
3222
+ "type": "array",
3223
+ "items": {
3224
+ "$ref": "#/components/schemas/sanityPatchCandidate_offboardingChecklist"
3225
+ }
3226
+ },
3227
+ "onboardingChecklist": {
3228
+ "type": "array",
3229
+ "items": {
3230
+ "$ref": "#/components/schemas/sanityPatchCandidate_onboardingChecklist"
3231
+ }
3232
+ },
3233
+ "ownership": {
3234
+ "type": "number",
3235
+ "format": "double",
3236
+ "nullable": true
3237
+ },
3238
+ "preferredDisplayName": {
3239
+ "type": "string"
3240
+ },
3241
+ "preferredEmail": {
3242
+ "type": "string"
3243
+ },
3244
+ "profileImage": {
3245
+ "$ref": "#/components/schemas/sanityPatchCandidate_profileImage"
3246
+ },
3247
+ "recruiter": {
3248
+ "$ref": "#/components/schemas/sanityEmployeeReference"
3249
+ },
3250
+ "references": {
3251
+ "type": "array",
3252
+ "items": {
3253
+ "$ref": "#/components/schemas/sanityPatchCandidate_references"
3254
+ }
3255
+ },
3256
+ "sanityType": {
3257
+ "enum": [
3258
+ 0
3259
+ ],
3260
+ "type": "integer",
3261
+ "format": "int32",
3262
+ "default": 0,
3263
+ "nullable": true
3264
+ },
3265
+ "shortUrl": {
3266
+ "type": "string"
3267
+ },
3268
+ "startDate": {
3269
+ "type": "string"
3270
+ },
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
+ "systemsActive": {
3288
+ "type": "array",
3289
+ "items": {
3290
+ "$ref": "#/components/schemas/sanityPatchCandidate_systemsActive"
3291
+ }
3292
+ },
3293
+ "telephone": {
3294
+ "type": "string"
3295
+ },
3296
+ "track": {
3297
+ "enum": [
3298
+ 0,
3299
+ 1
3300
+ ],
3301
+ "type": "integer",
3302
+ "format": "int32",
3303
+ "default": 0,
3304
+ "nullable": true
3305
+ },
3306
+ "url": {
3307
+ "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
+ },
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": {
3387
+ "type": "object",
3388
+ "additionalProperties": {
3389
+ "type": "object"
3390
+ }
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
+ }
3407
+ }
3408
+ },
3409
+ "sanityPatchCandidate_offboardingChecklist": {
3410
+ "type": "object",
3411
+ "properties": {
3412
+ "sanityKey": {
3413
+ "type": "string"
3414
+ },
3415
+ "additionalData": {
3416
+ "type": "object",
3417
+ "additionalProperties": {
3418
+ "type": "object"
3419
+ }
3420
+ },
3421
+ "sanityRef": {
3422
+ "type": "string"
3423
+ },
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": {
3443
+ "type": "string"
3444
+ },
3445
+ "additionalData": {
3446
+ "type": "object",
3447
+ "additionalProperties": {
3448
+ "type": "object"
3449
+ }
3450
+ },
3451
+ "sanityRef": {
3452
+ "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
+ }
3467
+ }
3468
+ },
3469
+ "sanityPatchCandidate_profileImage": {
3470
+ "type": "object",
3471
+ "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
+ "sanityType": {
3491
+ "enum": [
3492
+ 0
3493
+ ],
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"
3521
+ },
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
3533
+ }
3534
+ }
3535
+ },
3536
+ "sanityPatchCandidate_systemsActive": {
3537
+ "type": "object",
3538
+ "properties": {
3539
+ "sanityKey": {
3540
+ "type": "string"
3541
+ },
3542
+ "additionalData": {
3543
+ "type": "object",
3544
+ "additionalProperties": {
3545
+ "type": "object"
3546
+ }
3547
+ },
3548
+ "sanityRef": {
3549
+ "type": "string"
3550
+ },
3551
+ "sanityType": {
3552
+ "enum": [
3553
+ 0
3554
+ ],
3555
+ "type": "integer",
3556
+ "format": "int32",
3557
+ "default": 0,
3558
+ "nullable": true
3559
+ },
3560
+ "sanityWeak": {
3561
+ "type": "boolean",
3562
+ "nullable": true
3563
+ }
3564
+ }
3565
+ },
3566
+ "sanityPatchSystem": {
3567
+ "type": "object",
3568
+ "properties": {
3569
+ "additionalData": {
3570
+ "type": "object",
3571
+ "additionalProperties": {
3572
+ "type": "object"
3573
+ }
3574
+ },
3575
+ "description": {
3576
+ "$ref": "#/components/schemas/untypedNode"
3577
+ },
3578
+ "links": {
3579
+ "type": "array",
3580
+ "items": {
3581
+ "type": "string"
3582
+ }
3583
+ },
3584
+ "title": {
3585
+ "type": "string"
3586
+ }
3587
+ }
3588
+ },
3589
+ "sanityPatchTask": {
3590
+ "type": "object",
3591
+ "properties": {
3592
+ "additionalData": {
3593
+ "type": "object",
3594
+ "additionalProperties": {
3595
+ "type": "object"
3596
+ }
3597
+ },
3598
+ "description": {
3599
+ "$ref": "#/components/schemas/untypedNode"
3600
+ },
3601
+ "reminderSlackChannel": {
3602
+ "type": "string"
3603
+ },
3604
+ "reminderWeeksBefore": {
3605
+ "type": "number",
3606
+ "format": "double",
3607
+ "nullable": true
3608
+ },
3609
+ "title": {
3610
+ "type": "string"
3611
+ },
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": {
3628
+ "type": "object",
3629
+ "additionalProperties": {
3630
+ "type": "object"
3631
+ }
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
+ }
3648
+ }
3649
+ },
3650
+ "sanitySystems": {
3651
+ "type": "object",
3652
+ "properties": {
3653
+ "additionalData": {
3654
+ "type": "object",
3655
+ "additionalProperties": {
3656
+ "type": "object"
3657
+ }
3658
+ },
3659
+ "description": {
3660
+ "type": "array",
3661
+ "items": {
3662
+ "$ref": "#/components/schemas/sanitySystems_description"
3663
+ }
3664
+ },
3665
+ "image": {
3666
+ "$ref": "#/components/schemas/sanitySystems_image"
3667
+ },
3668
+ "links": {
3669
+ "type": "array",
3670
+ "items": {
3671
+ "type": "string"
3672
+ }
3673
+ },
3674
+ "remindDaysBefore": {
3675
+ "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
3691
+ },
3692
+ "sanityCreatedAt": {
3693
+ "type": "string"
3694
+ },
3695
+ "sanityId": {
3696
+ "type": "string"
3697
+ },
3698
+ "sanityRev": {
3699
+ "type": "string"
3700
+ },
3701
+ "sanityType": {
3702
+ "enum": [
3703
+ 0
3704
+ ],
3705
+ "type": "integer",
3706
+ "format": "int32",
3707
+ "default": 0,
3708
+ "nullable": true
3709
+ },
3710
+ "sanityUpdatedAt": {
3711
+ "type": "string"
3712
+ },
3713
+ "title": {
3714
+ "type": "string"
3715
+ }
3716
+ }
3717
+ },
3718
+ "sanitySystems_description": {
3719
+ "type": "object",
3720
+ "properties": {
3721
+ "additionalData": {
3722
+ "type": "object",
3723
+ "additionalProperties": {
3724
+ "type": "object"
3725
+ }
3726
+ },
3727
+ "children": {
3728
+ "type": "array",
3729
+ "items": {
3730
+ "$ref": "#/components/schemas/sanitySystems_description_children"
3731
+ }
3732
+ },
3733
+ "level": {
3734
+ "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
3747
+ },
3748
+ "markDefs": {
3749
+ "type": "array",
3750
+ "items": {
3751
+ "$ref": "#/components/schemas/sanitySystems_description_markDefs"
3752
+ }
3753
+ },
3754
+ "sanityKey": {
3755
+ "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
+ }
3782
+ }
3783
+ },
3784
+ "sanitySystems_description_children": {
3785
+ "type": "object",
3786
+ "properties": {
3787
+ "additionalData": {
3788
+ "type": "object",
3789
+ "additionalProperties": {
3790
+ "type": "object"
3791
+ }
3792
+ },
3793
+ "marks": {
3794
+ "type": "array",
3795
+ "items": {
3796
+ "type": "string"
3797
+ }
3798
+ },
3799
+ "sanityKey": {
3800
+ "type": "string"
3801
+ },
3802
+ "sanityType": {
3803
+ "enum": [
3804
+ 0
3805
+ ],
3806
+ "type": "integer",
3807
+ "format": "int32",
3808
+ "default": 0,
3809
+ "nullable": true
3810
+ },
3811
+ "text": {
3812
+ "type": "string"
3813
+ }
3814
+ }
3815
+ },
3816
+ "sanitySystems_description_markDefs": {
3817
+ "type": "object",
3818
+ "properties": {
3819
+ "additionalData": {
3820
+ "type": "object",
3821
+ "additionalProperties": {
3822
+ "type": "object"
3823
+ }
3824
+ },
3825
+ "href": {
3826
+ "type": "string"
3827
+ },
3828
+ "sanityKey": {
3829
+ "type": "string"
3830
+ },
3831
+ "sanityType": {
3832
+ "enum": [
3833
+ 0
3834
+ ],
3835
+ "type": "integer",
3836
+ "format": "int32",
3837
+ "default": 0,
3838
+ "nullable": true
3839
+ }
3840
+ }
3841
+ },
3842
+ "sanitySystems_image": {
3843
+ "type": "object",
3844
+ "properties": {
3845
+ "additionalData": {
3846
+ "type": "object",
3847
+ "additionalProperties": {
3848
+ "type": "object"
3849
+ }
3850
+ },
3851
+ "asset": {
3852
+ "$ref": "#/components/schemas/sanitySystems_image_asset"
3853
+ },
3854
+ "sanityType": {
3855
+ "enum": [
3856
+ 0
3857
+ ],
3858
+ "type": "integer",
3859
+ "format": "int32",
3860
+ "default": 0,
3861
+ "nullable": true
3862
+ }
3863
+ }
3864
+ },
3865
+ "sanitySystems_image_asset": {
3866
+ "type": "object",
3867
+ "properties": {
3868
+ "additionalData": {
3869
+ "type": "object",
3870
+ "additionalProperties": {
3871
+ "type": "object"
3872
+ }
3873
+ },
3874
+ "mimeType": {
3875
+ "type": "string"
3876
+ },
3877
+ "originalFilename": {
3878
+ "type": "string"
3879
+ },
3880
+ "sanityId": {
3881
+ "type": "string"
3882
+ },
3883
+ "sanityType": {
3884
+ "enum": [
3885
+ 0
3886
+ ],
3887
+ "type": "integer",
3888
+ "format": "int32",
3889
+ "default": 0,
3890
+ "nullable": true
3891
+ },
3892
+ "url": {
3893
+ "type": "string"
3894
+ }
3895
+ }
3896
+ },
3897
+ "sanityTask": {
3898
+ "type": "object",
3899
+ "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
+ "sanityType": {
3927
+ "type": "string"
3928
+ },
3929
+ "sanityUpdatedAt": {
3930
+ "type": "string"
3931
+ },
3932
+ "title": {
3933
+ "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
+ }
3945
+ }
3946
+ },
3947
+ "untypedNode": {
3948
+ "type": "object"
3949
+ }
3950
+ },
3951
+ "securitySchemes": {
3952
+ "Implicit": {
3953
+ "type": "oauth2",
3954
+ "flows": {
3955
+ "implicit": {
3956
+ "authorizationUrl": "https://login.microsoftonline.com/a8533784-aa3c-403b-a61a-1533ecc6e3ed/oauth2/v2.0/authorize",
3957
+ "tokenUrl": "https://login.microsoftonline.com/a8533784-aa3c-403b-a61a-1533ecc6e3ed/oauth2/v2.0/token",
3958
+ "refreshUrl": "https://login.microsoftonline.com/a8533784-aa3c-403b-a61a-1533ecc6e3ed/oauth2/v2.0/token",
3959
+ "scopes": {
3960
+ "api://050da74a-523f-48ba-a9de-e5c8d6805a93/.default": "Default function scope"
3961
+ }
3962
+ }
3963
+ }
3964
+ }
3965
+ }
3966
+ }
39
3967
  }