@snokam/mcp-api 0.58.0 → 0.60.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.
@@ -0,0 +1,2865 @@
1
+ {
2
+ "openapi": "3.0.1",
3
+ "info": {
4
+ "title": "Employees API",
5
+ "description": "Employee management service",
6
+ "version": "v1.0.0"
7
+ },
8
+ "servers": [
9
+ {
10
+ "url": "https://employees.api.test.snokam.no"
11
+ }
12
+ ],
13
+ "paths": {
14
+ "/v1.0/cvs": {
15
+ "get": {
16
+ "tags": [
17
+ "CV"
18
+ ],
19
+ "summary": "Gets CV data for all consultants",
20
+ "description": "Retrieves CV data for all consultants from CvPartner, including technologies, roles, about, and CV text.",
21
+ "operationId": "GetEmployeesCv",
22
+ "responses": {
23
+ "200": {
24
+ "description": "List of consultant CV profiles retrieved successfully",
25
+ "content": {
26
+ "application/json": {
27
+ "schema": {
28
+ "type": "array",
29
+ "items": {
30
+ "$ref": "#/components/schemas/consultantCv"
31
+ }
32
+ }
33
+ }
34
+ },
35
+ "x-ms-summary": "Success"
36
+ },
37
+ "401": {
38
+ "description": "User is not authorized",
39
+ "x-ms-summary": "Unauthorized"
40
+ }
41
+ },
42
+ "security": [
43
+ {
44
+ "Implicit": [
45
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
46
+ ]
47
+ }
48
+ ]
49
+ }
50
+ },
51
+ "/v1.0/cvs/my-cv": {
52
+ "get": {
53
+ "tags": [
54
+ "CV"
55
+ ],
56
+ "summary": "Gets CV data for the authenticated user",
57
+ "description": "Retrieves CV data for the currently authenticated consultant from CvPartner.",
58
+ "operationId": "GetMyCv",
59
+ "responses": {
60
+ "200": {
61
+ "description": "Authenticated user's CV profile retrieved successfully",
62
+ "content": {
63
+ "application/json": {
64
+ "schema": {
65
+ "$ref": "#/components/schemas/consultantCv"
66
+ }
67
+ }
68
+ },
69
+ "x-ms-summary": "Success"
70
+ },
71
+ "401": {
72
+ "description": "User is not authorized",
73
+ "x-ms-summary": "Unauthorized"
74
+ },
75
+ "404": {
76
+ "description": "Employee not found in CvPartner",
77
+ "x-ms-summary": "Not Found"
78
+ }
79
+ },
80
+ "security": [
81
+ {
82
+ "Implicit": [
83
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
84
+ ]
85
+ }
86
+ ]
87
+ }
88
+ },
89
+ "/v1.0/cvs/{slug}": {
90
+ "get": {
91
+ "tags": [
92
+ "CV"
93
+ ],
94
+ "summary": "Gets CV data for a specific employee by slug",
95
+ "description": "Retrieves CV data for a specific consultant from CvPartner by their Sanity slug (e.g. 'hakon-grotte').",
96
+ "operationId": "GetEmployeeCvBySlug",
97
+ "parameters": [
98
+ {
99
+ "name": "slug",
100
+ "in": "path",
101
+ "required": true,
102
+ "schema": {
103
+ "type": "string"
104
+ }
105
+ }
106
+ ],
107
+ "responses": {
108
+ "200": {
109
+ "description": "Payload of ConsultantCv",
110
+ "content": {
111
+ "application/json": {
112
+ "schema": {
113
+ "$ref": "#/components/schemas/consultantCv"
114
+ }
115
+ }
116
+ }
117
+ },
118
+ "404": {
119
+ "description": "No description"
120
+ }
121
+ },
122
+ "security": [
123
+ {
124
+ "Implicit": [
125
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
126
+ ]
127
+ }
128
+ ]
129
+ }
130
+ },
131
+ "/v1.0/me/cv/pdf": {
132
+ "get": {
133
+ "tags": [
134
+ "CV"
135
+ ],
136
+ "summary": "Downloads the authenticated user's CV as PDF",
137
+ "operationId": "GetMyCvPdf",
138
+ "responses": {
139
+ "200": {
140
+ "description": "Payload of Array of Byte",
141
+ "content": {
142
+ "application/pdf": {
143
+ "schema": {
144
+ "type": "string",
145
+ "format": "binary"
146
+ }
147
+ }
148
+ }
149
+ },
150
+ "401": {
151
+ "description": "No description"
152
+ },
153
+ "404": {
154
+ "description": "No description"
155
+ }
156
+ },
157
+ "security": [
158
+ {
159
+ "Implicit": [
160
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
161
+ ]
162
+ }
163
+ ]
164
+ }
165
+ },
166
+ "/v1.0/cvs/{slug}/pdf": {
167
+ "get": {
168
+ "tags": [
169
+ "CV"
170
+ ],
171
+ "summary": "Downloads a specific consultant's CV as PDF by slug",
172
+ "operationId": "GetEmployeeCvPdfBySlug",
173
+ "parameters": [
174
+ {
175
+ "name": "slug",
176
+ "in": "path",
177
+ "required": true,
178
+ "schema": {
179
+ "type": "string"
180
+ }
181
+ }
182
+ ],
183
+ "responses": {
184
+ "200": {
185
+ "description": "Payload of Array of Byte",
186
+ "content": {
187
+ "application/pdf": {
188
+ "schema": {
189
+ "type": "string",
190
+ "format": "binary"
191
+ }
192
+ }
193
+ }
194
+ },
195
+ "401": {
196
+ "description": "No description"
197
+ },
198
+ "404": {
199
+ "description": "No description"
200
+ }
201
+ },
202
+ "security": [
203
+ {
204
+ "Implicit": [
205
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
206
+ ]
207
+ }
208
+ ]
209
+ }
210
+ },
211
+ "/v1.0/proposals": {
212
+ "post": {
213
+ "tags": [
214
+ "Proposals"
215
+ ],
216
+ "summary": "Create a Flowcase proposal",
217
+ "operationId": "CreateProposal",
218
+ "requestBody": {
219
+ "content": {
220
+ "application/json": {
221
+ "schema": {
222
+ "$ref": "#/components/schemas/createProposalRequest"
223
+ }
224
+ }
225
+ },
226
+ "required": true
227
+ },
228
+ "responses": {
229
+ "201": {
230
+ "description": "Payload of FlowcaseProposal",
231
+ "content": {
232
+ "application/json": {
233
+ "schema": {
234
+ "$ref": "#/components/schemas/flowcaseProposal"
235
+ }
236
+ }
237
+ }
238
+ }
239
+ },
240
+ "security": [
241
+ {
242
+ "Implicit": [
243
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
244
+ ]
245
+ }
246
+ ]
247
+ }
248
+ },
249
+ "/v1.0/proposals/{proposalId}": {
250
+ "get": {
251
+ "tags": [
252
+ "Proposals"
253
+ ],
254
+ "summary": "Get a Flowcase proposal by id",
255
+ "operationId": "GetProposal",
256
+ "parameters": [
257
+ {
258
+ "name": "proposalId",
259
+ "in": "path",
260
+ "required": true,
261
+ "schema": {
262
+ "type": "string"
263
+ }
264
+ }
265
+ ],
266
+ "responses": {
267
+ "200": {
268
+ "description": "Payload of FlowcaseProposal",
269
+ "content": {
270
+ "application/json": {
271
+ "schema": {
272
+ "$ref": "#/components/schemas/flowcaseProposal"
273
+ }
274
+ }
275
+ }
276
+ },
277
+ "404": {
278
+ "description": "No description"
279
+ }
280
+ },
281
+ "security": [
282
+ {
283
+ "Implicit": [
284
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
285
+ ]
286
+ }
287
+ ]
288
+ },
289
+ "patch": {
290
+ "tags": [
291
+ "Proposals"
292
+ ],
293
+ "summary": "Update / patch a Flowcase proposal",
294
+ "operationId": "UpdateProposal",
295
+ "parameters": [
296
+ {
297
+ "name": "proposalId",
298
+ "in": "path",
299
+ "required": true,
300
+ "schema": {
301
+ "type": "string"
302
+ }
303
+ }
304
+ ],
305
+ "requestBody": {
306
+ "content": {
307
+ "application/json": {
308
+ "schema": {
309
+ "$ref": "#/components/schemas/updateProposalRequest"
310
+ }
311
+ }
312
+ },
313
+ "required": true
314
+ },
315
+ "responses": {
316
+ "200": {
317
+ "description": "Payload of FlowcaseProposal",
318
+ "content": {
319
+ "application/json": {
320
+ "schema": {
321
+ "$ref": "#/components/schemas/flowcaseProposal"
322
+ }
323
+ }
324
+ }
325
+ }
326
+ },
327
+ "security": [
328
+ {
329
+ "Implicit": [
330
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
331
+ ]
332
+ }
333
+ ]
334
+ },
335
+ "delete": {
336
+ "tags": [
337
+ "Proposals"
338
+ ],
339
+ "summary": "Archive a proposal — Flowcase has no hard-delete; we PUT archived=true.",
340
+ "operationId": "ArchiveProposal",
341
+ "parameters": [
342
+ {
343
+ "name": "proposalId",
344
+ "in": "path",
345
+ "required": true,
346
+ "schema": {
347
+ "type": "string"
348
+ }
349
+ }
350
+ ],
351
+ "responses": {
352
+ "200": {
353
+ "description": "Payload of FlowcaseProposal",
354
+ "content": {
355
+ "application/json": {
356
+ "schema": {
357
+ "$ref": "#/components/schemas/flowcaseProposal"
358
+ }
359
+ }
360
+ }
361
+ }
362
+ },
363
+ "security": [
364
+ {
365
+ "Implicit": [
366
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
367
+ ]
368
+ }
369
+ ]
370
+ }
371
+ },
372
+ "/v1.0/proposals/{proposalId}/cvs": {
373
+ "post": {
374
+ "tags": [
375
+ "Proposals"
376
+ ],
377
+ "summary": "Attach a consultant's CV to a proposal; Flowcase copies the default CV into an editable tailored CV.",
378
+ "operationId": "AttachCvToProposal",
379
+ "parameters": [
380
+ {
381
+ "name": "proposalId",
382
+ "in": "path",
383
+ "required": true,
384
+ "schema": {
385
+ "type": "string"
386
+ }
387
+ }
388
+ ],
389
+ "requestBody": {
390
+ "content": {
391
+ "application/json": {
392
+ "schema": {
393
+ "$ref": "#/components/schemas/addCvToProposalRequest"
394
+ }
395
+ }
396
+ },
397
+ "required": true
398
+ },
399
+ "responses": {
400
+ "201": {
401
+ "description": "Payload of FlowcaseTailoredCv",
402
+ "content": {
403
+ "application/json": {
404
+ "schema": {
405
+ "$ref": "#/components/schemas/flowcaseTailoredCv"
406
+ }
407
+ }
408
+ }
409
+ }
410
+ },
411
+ "security": [
412
+ {
413
+ "Implicit": [
414
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
415
+ ]
416
+ }
417
+ ]
418
+ }
419
+ },
420
+ "/v1.0/proposals/{proposalId}/cvs/{tailoredCvId}": {
421
+ "delete": {
422
+ "tags": [
423
+ "Proposals"
424
+ ],
425
+ "summary": "Remove a tailored CV from a proposal.",
426
+ "operationId": "DetachCvFromProposal",
427
+ "parameters": [
428
+ {
429
+ "name": "proposalId",
430
+ "in": "path",
431
+ "required": true,
432
+ "schema": {
433
+ "type": "string"
434
+ }
435
+ },
436
+ {
437
+ "name": "tailoredCvId",
438
+ "in": "path",
439
+ "required": true,
440
+ "schema": {
441
+ "type": "string"
442
+ }
443
+ }
444
+ ],
445
+ "responses": {
446
+ "204": {
447
+ "description": "No description"
448
+ }
449
+ },
450
+ "security": [
451
+ {
452
+ "Implicit": [
453
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
454
+ ]
455
+ }
456
+ ]
457
+ }
458
+ },
459
+ "/v1.0/cvs/users/{userId}/{cvId}/pdf": {
460
+ "get": {
461
+ "tags": [
462
+ "Proposals"
463
+ ],
464
+ "summary": "Download any CV (including tailored CVs) as PDF by user_id + cv_id.",
465
+ "operationId": "DownloadTailoredCvPdf",
466
+ "parameters": [
467
+ {
468
+ "name": "userId",
469
+ "in": "path",
470
+ "required": true,
471
+ "schema": {
472
+ "type": "string"
473
+ }
474
+ },
475
+ {
476
+ "name": "cvId",
477
+ "in": "path",
478
+ "required": true,
479
+ "schema": {
480
+ "type": "string"
481
+ }
482
+ }
483
+ ],
484
+ "responses": {
485
+ "200": {
486
+ "description": "Payload of Array of Byte",
487
+ "content": {
488
+ "application/pdf": {
489
+ "schema": {
490
+ "type": "string",
491
+ "format": "binary"
492
+ }
493
+ }
494
+ }
495
+ },
496
+ "404": {
497
+ "description": "No description"
498
+ }
499
+ },
500
+ "security": [
501
+ {
502
+ "Implicit": [
503
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
504
+ ]
505
+ }
506
+ ]
507
+ }
508
+ },
509
+ "/v1.0/cvs/users/{userId}/{cvId}/sections/{sectionType}/{sectionId}": {
510
+ "put": {
511
+ "tags": [
512
+ "CV"
513
+ ],
514
+ "summary": "Edit a single CV section (PUT /v3/cvs/{user}/{cv}/{section_type}/{section_id}).",
515
+ "operationId": "UpdateCvSection",
516
+ "parameters": [
517
+ {
518
+ "name": "userId",
519
+ "in": "path",
520
+ "required": true,
521
+ "schema": {
522
+ "type": "string"
523
+ }
524
+ },
525
+ {
526
+ "name": "cvId",
527
+ "in": "path",
528
+ "required": true,
529
+ "schema": {
530
+ "type": "string"
531
+ }
532
+ },
533
+ {
534
+ "name": "sectionType",
535
+ "in": "path",
536
+ "required": true,
537
+ "schema": {
538
+ "type": "string"
539
+ }
540
+ },
541
+ {
542
+ "name": "sectionId",
543
+ "in": "path",
544
+ "required": true,
545
+ "schema": {
546
+ "type": "string"
547
+ }
548
+ }
549
+ ],
550
+ "requestBody": {
551
+ "description": "Section body — shape depends on section_type (see Flowcase CV API).",
552
+ "content": {
553
+ "application/json": {
554
+ "schema": {
555
+ "type": "object"
556
+ }
557
+ }
558
+ },
559
+ "required": true
560
+ },
561
+ "responses": {
562
+ "204": {
563
+ "description": "No description"
564
+ }
565
+ },
566
+ "security": [
567
+ {
568
+ "Implicit": [
569
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
570
+ ]
571
+ }
572
+ ]
573
+ }
574
+ },
575
+ "/v1.0/protected": {
576
+ "get": {
577
+ "tags": [
578
+ "Protected"
579
+ ],
580
+ "summary": "Gets all protected employees",
581
+ "description": "Retrieves a list of all protected employees.",
582
+ "operationId": "GetEmployeesProtected",
583
+ "responses": {
584
+ "200": {
585
+ "description": "List of protected employees retrieved successfully",
586
+ "content": {
587
+ "application/json": {
588
+ "schema": {
589
+ "type": "array",
590
+ "items": {
591
+ "$ref": "#/components/schemas/protectedEmployee"
592
+ }
593
+ }
594
+ }
595
+ },
596
+ "x-ms-summary": "Success"
597
+ },
598
+ "401": {
599
+ "description": "User is not authorized",
600
+ "x-ms-summary": "Unauthorized"
601
+ }
602
+ },
603
+ "security": [
604
+ {
605
+ "Implicit": [
606
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
607
+ ]
608
+ }
609
+ ]
610
+ }
611
+ },
612
+ "/v1.0/protected/me": {
613
+ "get": {
614
+ "tags": [
615
+ "Protected"
616
+ ],
617
+ "summary": "Gets the authenticated user's protected employee data",
618
+ "description": "Retrieves the protected employee data for the authenticated user.",
619
+ "operationId": "GetMeProtected",
620
+ "responses": {
621
+ "200": {
622
+ "description": "Authenticated user's protected employee data retrieved successfully",
623
+ "content": {
624
+ "application/json": {
625
+ "schema": {
626
+ "$ref": "#/components/schemas/protectedEmployee"
627
+ }
628
+ }
629
+ },
630
+ "x-ms-summary": "Success"
631
+ },
632
+ "401": {
633
+ "description": "User is not authorized",
634
+ "x-ms-summary": "Unauthorized"
635
+ },
636
+ "404": {
637
+ "description": "Employee not found",
638
+ "x-ms-summary": "Not Found"
639
+ }
640
+ },
641
+ "security": [
642
+ {
643
+ "Implicit": [
644
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
645
+ ]
646
+ }
647
+ ]
648
+ },
649
+ "put": {
650
+ "tags": [
651
+ "Protected"
652
+ ],
653
+ "summary": "Updates the authenticated user's protected employee data",
654
+ "description": "Updates the protected employee data for the authenticated user.",
655
+ "operationId": "PatchMeProtected",
656
+ "requestBody": {
657
+ "description": "Employee data to update",
658
+ "content": {
659
+ "application/json": {
660
+ "schema": {
661
+ "$ref": "#/components/schemas/patchEmployee"
662
+ }
663
+ }
664
+ },
665
+ "required": true
666
+ },
667
+ "responses": {
668
+ "200": {
669
+ "description": "Authenticated user's protected employee data updated successfully",
670
+ "content": {
671
+ "application/json": {
672
+ "schema": {
673
+ "$ref": "#/components/schemas/protectedEmployee"
674
+ }
675
+ }
676
+ },
677
+ "x-ms-summary": "Success"
678
+ },
679
+ "401": {
680
+ "description": "User is not authorized",
681
+ "x-ms-summary": "Unauthorized"
682
+ }
683
+ },
684
+ "security": [
685
+ {
686
+ "Implicit": [
687
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
688
+ ]
689
+ }
690
+ ]
691
+ }
692
+ },
693
+ "/v1.0/protected/{id}": {
694
+ "put": {
695
+ "tags": [
696
+ "Protected"
697
+ ],
698
+ "summary": "Updates protected employee data by id or email",
699
+ "description": "Updates protected employee data for a specified employee id or email.",
700
+ "operationId": "PatchEmployeeProtected",
701
+ "parameters": [
702
+ {
703
+ "name": "id",
704
+ "in": "path",
705
+ "description": "Sanity id or employee email",
706
+ "required": true,
707
+ "schema": {
708
+ "type": "string"
709
+ },
710
+ "x-ms-summary": "The employee id or email"
711
+ }
712
+ ],
713
+ "requestBody": {
714
+ "description": "Employee data to update",
715
+ "content": {
716
+ "application/json": {
717
+ "schema": {
718
+ "$ref": "#/components/schemas/patchEmployee"
719
+ }
720
+ }
721
+ },
722
+ "required": true
723
+ },
724
+ "responses": {
725
+ "200": {
726
+ "description": "Protected employee data updated successfully",
727
+ "content": {
728
+ "application/json": {
729
+ "schema": {
730
+ "$ref": "#/components/schemas/protectedEmployee"
731
+ }
732
+ }
733
+ },
734
+ "x-ms-summary": "Success"
735
+ },
736
+ "401": {
737
+ "description": "User is not authorized",
738
+ "x-ms-summary": "Unauthorized"
739
+ }
740
+ },
741
+ "security": [
742
+ {
743
+ "Implicit": [
744
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
745
+ ]
746
+ }
747
+ ]
748
+ },
749
+ "get": {
750
+ "tags": [
751
+ "Protected"
752
+ ],
753
+ "summary": "Gets a protected employee by ID",
754
+ "description": "Retrieves a protected employee by their ID.",
755
+ "operationId": "GetEmployeeProtected",
756
+ "parameters": [
757
+ {
758
+ "name": "id",
759
+ "in": "path",
760
+ "description": "The ID of the protected employee to retrieve",
761
+ "required": true,
762
+ "schema": {
763
+ "type": "string"
764
+ },
765
+ "x-ms-summary": "The ID of the employee"
766
+ }
767
+ ],
768
+ "responses": {
769
+ "200": {
770
+ "description": "Protected employee retrieved successfully",
771
+ "content": {
772
+ "application/json": {
773
+ "schema": {
774
+ "$ref": "#/components/schemas/protectedEmployee"
775
+ }
776
+ }
777
+ },
778
+ "x-ms-summary": "Success"
779
+ },
780
+ "401": {
781
+ "description": "User is not authorized",
782
+ "x-ms-summary": "Unauthorized"
783
+ },
784
+ "404": {
785
+ "description": "Employee not found",
786
+ "x-ms-summary": "Not Found"
787
+ }
788
+ },
789
+ "security": [
790
+ {
791
+ "Implicit": [
792
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
793
+ ]
794
+ }
795
+ ]
796
+ }
797
+ },
798
+ "/v1.0/protected/me/gadgetbudget": {
799
+ "get": {
800
+ "tags": [
801
+ "Protected"
802
+ ],
803
+ "summary": "Gets the authenticated user's gadget budget",
804
+ "description": "Retrieves the gadget budget for the authenticated user.",
805
+ "operationId": "GetMyGadgetBudget",
806
+ "responses": {
807
+ "200": {
808
+ "description": "Authenticated user's gadget budget retrieved successfully",
809
+ "content": {
810
+ "application/json": {
811
+ "schema": {
812
+ "$ref": "#/components/schemas/gadgetBudget"
813
+ }
814
+ }
815
+ },
816
+ "x-ms-summary": "Success"
817
+ },
818
+ "401": {
819
+ "description": "User is not authorized",
820
+ "x-ms-summary": "Unauthorized"
821
+ }
822
+ },
823
+ "security": [
824
+ {
825
+ "Implicit": [
826
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default"
827
+ ]
828
+ }
829
+ ]
830
+ }
831
+ },
832
+ "/v1.0/public/{slugOrId}": {
833
+ "get": {
834
+ "tags": [
835
+ "Public"
836
+ ],
837
+ "summary": "Gets a public employee by slug or id",
838
+ "description": "Retrieves a public employee by their slug or id.",
839
+ "operationId": "GetEmployeePublic",
840
+ "parameters": [
841
+ {
842
+ "name": "slugOrId",
843
+ "in": "path",
844
+ "description": "The slug or id of the public employee to retrieve",
845
+ "required": true,
846
+ "schema": {
847
+ "type": "string"
848
+ },
849
+ "x-ms-summary": "The slug or id of the employee"
850
+ }
851
+ ],
852
+ "responses": {
853
+ "200": {
854
+ "description": "Public employee retrieved successfully",
855
+ "content": {
856
+ "application/json": {
857
+ "schema": {
858
+ "$ref": "#/components/schemas/publicEmployee"
859
+ }
860
+ }
861
+ },
862
+ "x-ms-summary": "Success"
863
+ },
864
+ "404": {
865
+ "description": "Employee not found",
866
+ "x-ms-summary": "Not Found"
867
+ }
868
+ }
869
+ }
870
+ },
871
+ "/v1.0/public": {
872
+ "get": {
873
+ "tags": [
874
+ "Public"
875
+ ],
876
+ "summary": "Gets all public employees",
877
+ "description": "Retrieves a list of all public employees.",
878
+ "operationId": "GetEmployeesPublic",
879
+ "responses": {
880
+ "200": {
881
+ "description": "List of public employees retrieved successfully",
882
+ "content": {
883
+ "application/json": {
884
+ "schema": {
885
+ "type": "array",
886
+ "items": {
887
+ "$ref": "#/components/schemas/publicEmployee"
888
+ }
889
+ }
890
+ }
891
+ },
892
+ "x-ms-summary": "Success"
893
+ }
894
+ }
895
+ }
896
+ },
897
+ "/v1.0/feedback": {
898
+ "post": {
899
+ "tags": [
900
+ "Public"
901
+ ],
902
+ "summary": "Submit anonymous feedback",
903
+ "description": "Allows anyone to send anonymous text feedback.",
904
+ "operationId": "PostAnonymousFeedback",
905
+ "requestBody": {
906
+ "description": "Feedback payload",
907
+ "content": {
908
+ "application/json": {
909
+ "schema": {
910
+ "$ref": "#/components/schemas/feedback"
911
+ }
912
+ }
913
+ },
914
+ "required": true
915
+ },
916
+ "responses": {
917
+ "200": {
918
+ "description": "Feedback received",
919
+ "x-ms-summary": "Success"
920
+ },
921
+ "400": {
922
+ "description": "Invalid input",
923
+ "x-ms-summary": "Bad Request"
924
+ }
925
+ }
926
+ }
927
+ }
928
+ },
929
+ "components": {
930
+ "schemas": {
931
+ "addCvToProposalRequest": {
932
+ "type": "object",
933
+ "properties": {
934
+ "user_id": {
935
+ "type": "string",
936
+ "nullable": true
937
+ },
938
+ "cv_id": {
939
+ "type": "string",
940
+ "nullable": true
941
+ }
942
+ }
943
+ },
944
+ "commissionTierReference": {
945
+ "type": "object",
946
+ "properties": {
947
+ "sanityType": {
948
+ "enum": [
949
+ "reference"
950
+ ],
951
+ "type": "string",
952
+ "default": "reference"
953
+ },
954
+ "sanityRef": {
955
+ "type": "string"
956
+ },
957
+ "sanityWeak": {
958
+ "type": "boolean"
959
+ }
960
+ }
961
+ },
962
+ "componentBlocksInnerOneOfChildrenInner": {
963
+ "type": "object",
964
+ "properties": {
965
+ "sanityType": {
966
+ "enum": [
967
+ "span"
968
+ ],
969
+ "type": "string",
970
+ "default": "span"
971
+ },
972
+ "marks": {
973
+ "type": "array",
974
+ "items": {
975
+ "type": "string"
976
+ }
977
+ },
978
+ "sanityKey": {
979
+ "type": "string"
980
+ },
981
+ "text": {
982
+ "type": "string"
983
+ }
984
+ }
985
+ },
986
+ "componentBlocksInnerOneOfMarkDefsInner": {
987
+ "type": "object",
988
+ "properties": {
989
+ "sanityType": {
990
+ "enum": [
991
+ "link"
992
+ ],
993
+ "type": "string",
994
+ "default": "link"
995
+ },
996
+ "href": {
997
+ "type": "string"
998
+ },
999
+ "sanityKey": {
1000
+ "type": "string"
1001
+ }
1002
+ }
1003
+ },
1004
+ "componentGalleryMediaInner": {
1005
+ "type": "object",
1006
+ "properties": {
1007
+ "actualInstance": {
1008
+ "type": "object"
1009
+ },
1010
+ "isNullable": {
1011
+ "type": "boolean"
1012
+ },
1013
+ "schemaType": {
1014
+ "type": "string"
1015
+ }
1016
+ }
1017
+ },
1018
+ "consultantCv": {
1019
+ "type": "object",
1020
+ "properties": {
1021
+ "userId": {
1022
+ "type": "string",
1023
+ "nullable": true
1024
+ },
1025
+ "email": {
1026
+ "type": "string",
1027
+ "nullable": true
1028
+ },
1029
+ "name": {
1030
+ "type": "string",
1031
+ "nullable": true
1032
+ },
1033
+ "defaultCvId": {
1034
+ "type": "string",
1035
+ "nullable": true
1036
+ },
1037
+ "technologies": {
1038
+ "type": "array",
1039
+ "items": {
1040
+ "type": "string"
1041
+ },
1042
+ "nullable": true
1043
+ },
1044
+ "roles": {
1045
+ "type": "array",
1046
+ "items": {
1047
+ "type": "string"
1048
+ },
1049
+ "nullable": true
1050
+ },
1051
+ "yearsExperience": {
1052
+ "type": "integer",
1053
+ "format": "int32",
1054
+ "nullable": true
1055
+ },
1056
+ "about": {
1057
+ "type": "string",
1058
+ "nullable": true
1059
+ },
1060
+ "cvText": {
1061
+ "type": "string",
1062
+ "nullable": true
1063
+ },
1064
+ "projectExperiences": {
1065
+ "type": "array",
1066
+ "items": {
1067
+ "$ref": "#/components/schemas/consultantProjectExperience"
1068
+ },
1069
+ "nullable": true
1070
+ },
1071
+ "workExperiences": {
1072
+ "type": "array",
1073
+ "items": {
1074
+ "$ref": "#/components/schemas/consultantWorkExperience"
1075
+ },
1076
+ "nullable": true
1077
+ },
1078
+ "educations": {
1079
+ "type": "array",
1080
+ "items": {
1081
+ "$ref": "#/components/schemas/consultantEducation"
1082
+ },
1083
+ "nullable": true
1084
+ },
1085
+ "cvRoles": {
1086
+ "type": "array",
1087
+ "items": {
1088
+ "$ref": "#/components/schemas/consultantCvRole"
1089
+ },
1090
+ "nullable": true
1091
+ },
1092
+ "keyQualifications": {
1093
+ "type": "array",
1094
+ "items": {
1095
+ "$ref": "#/components/schemas/consultantKeyQualification"
1096
+ },
1097
+ "nullable": true
1098
+ }
1099
+ }
1100
+ },
1101
+ "consultantCvRole": {
1102
+ "type": "object",
1103
+ "properties": {
1104
+ "name": {
1105
+ "type": "string",
1106
+ "nullable": true
1107
+ },
1108
+ "longDescription": {
1109
+ "type": "string",
1110
+ "nullable": true
1111
+ },
1112
+ "tags": {
1113
+ "type": "array",
1114
+ "items": {
1115
+ "type": "string"
1116
+ },
1117
+ "nullable": true
1118
+ }
1119
+ }
1120
+ },
1121
+ "consultantEducation": {
1122
+ "type": "object",
1123
+ "properties": {
1124
+ "school": {
1125
+ "type": "string",
1126
+ "nullable": true
1127
+ },
1128
+ "degree": {
1129
+ "type": "string",
1130
+ "nullable": true
1131
+ },
1132
+ "description": {
1133
+ "type": "string",
1134
+ "nullable": true
1135
+ },
1136
+ "yearFrom": {
1137
+ "type": "integer",
1138
+ "format": "int32",
1139
+ "nullable": true
1140
+ },
1141
+ "yearTo": {
1142
+ "type": "integer",
1143
+ "format": "int32",
1144
+ "nullable": true
1145
+ }
1146
+ }
1147
+ },
1148
+ "consultantKeyQualification": {
1149
+ "type": "object",
1150
+ "properties": {
1151
+ "label": {
1152
+ "type": "string",
1153
+ "nullable": true
1154
+ },
1155
+ "description": {
1156
+ "type": "string",
1157
+ "nullable": true
1158
+ },
1159
+ "tags": {
1160
+ "type": "array",
1161
+ "items": {
1162
+ "type": "string"
1163
+ },
1164
+ "nullable": true
1165
+ }
1166
+ }
1167
+ },
1168
+ "consultantProjectExperience": {
1169
+ "type": "object",
1170
+ "properties": {
1171
+ "customer": {
1172
+ "type": "string",
1173
+ "nullable": true
1174
+ },
1175
+ "description": {
1176
+ "type": "string",
1177
+ "nullable": true
1178
+ },
1179
+ "longDescription": {
1180
+ "type": "string",
1181
+ "nullable": true
1182
+ },
1183
+ "industry": {
1184
+ "type": "string",
1185
+ "nullable": true
1186
+ },
1187
+ "yearFrom": {
1188
+ "type": "integer",
1189
+ "format": "int32",
1190
+ "nullable": true
1191
+ },
1192
+ "monthFrom": {
1193
+ "type": "integer",
1194
+ "format": "int32",
1195
+ "nullable": true
1196
+ },
1197
+ "yearTo": {
1198
+ "type": "integer",
1199
+ "format": "int32",
1200
+ "nullable": true
1201
+ },
1202
+ "monthTo": {
1203
+ "type": "integer",
1204
+ "format": "int32",
1205
+ "nullable": true
1206
+ },
1207
+ "roleTitle": {
1208
+ "type": "string",
1209
+ "nullable": true
1210
+ },
1211
+ "roleDescription": {
1212
+ "type": "string",
1213
+ "nullable": true
1214
+ },
1215
+ "technologies": {
1216
+ "type": "array",
1217
+ "items": {
1218
+ "type": "string"
1219
+ },
1220
+ "nullable": true
1221
+ }
1222
+ }
1223
+ },
1224
+ "consultantWorkExperience": {
1225
+ "type": "object",
1226
+ "properties": {
1227
+ "employer": {
1228
+ "type": "string",
1229
+ "nullable": true
1230
+ },
1231
+ "title": {
1232
+ "type": "string",
1233
+ "nullable": true
1234
+ },
1235
+ "description": {
1236
+ "type": "string",
1237
+ "nullable": true
1238
+ },
1239
+ "yearFrom": {
1240
+ "type": "integer",
1241
+ "format": "int32",
1242
+ "nullable": true
1243
+ },
1244
+ "monthFrom": {
1245
+ "type": "integer",
1246
+ "format": "int32",
1247
+ "nullable": true
1248
+ },
1249
+ "yearTo": {
1250
+ "type": "integer",
1251
+ "format": "int32",
1252
+ "nullable": true
1253
+ },
1254
+ "monthTo": {
1255
+ "type": "integer",
1256
+ "format": "int32",
1257
+ "nullable": true
1258
+ }
1259
+ }
1260
+ },
1261
+ "createProposalRequest": {
1262
+ "type": "object",
1263
+ "properties": {
1264
+ "name": {
1265
+ "type": "string",
1266
+ "nullable": true
1267
+ },
1268
+ "owner_id": {
1269
+ "type": "string",
1270
+ "nullable": true
1271
+ },
1272
+ "status": {
1273
+ "type": "string",
1274
+ "nullable": true
1275
+ }
1276
+ }
1277
+ },
1278
+ "employeeReference": {
1279
+ "type": "object",
1280
+ "properties": {
1281
+ "sanityType": {
1282
+ "enum": [
1283
+ "reference"
1284
+ ],
1285
+ "type": "string",
1286
+ "default": "reference"
1287
+ },
1288
+ "sanityRef": {
1289
+ "type": "string"
1290
+ },
1291
+ "sanityWeak": {
1292
+ "type": "boolean"
1293
+ }
1294
+ }
1295
+ },
1296
+ "feedback": {
1297
+ "type": "object",
1298
+ "properties": {
1299
+ "message": {
1300
+ "type": "string"
1301
+ }
1302
+ }
1303
+ },
1304
+ "flowcaseProposal": {
1305
+ "type": "object",
1306
+ "properties": {
1307
+ "id": {
1308
+ "type": "string",
1309
+ "nullable": true
1310
+ },
1311
+ "name": {
1312
+ "type": "string",
1313
+ "nullable": true
1314
+ },
1315
+ "api_owner_id": {
1316
+ "type": "string",
1317
+ "nullable": true
1318
+ },
1319
+ "api_owner_name": {
1320
+ "type": "string",
1321
+ "nullable": true
1322
+ },
1323
+ "owner_id": {
1324
+ "type": "string",
1325
+ "nullable": true
1326
+ },
1327
+ "owner_name": {
1328
+ "type": "string",
1329
+ "nullable": true
1330
+ },
1331
+ "status": {
1332
+ "type": "string",
1333
+ "nullable": true
1334
+ },
1335
+ "archived": {
1336
+ "type": "boolean",
1337
+ "nullable": true
1338
+ },
1339
+ "created_at": {
1340
+ "type": "string",
1341
+ "format": "date-time",
1342
+ "nullable": true
1343
+ },
1344
+ "updated_at": {
1345
+ "type": "string",
1346
+ "format": "date-time",
1347
+ "nullable": true
1348
+ }
1349
+ }
1350
+ },
1351
+ "flowcaseTailoredCv": {
1352
+ "type": "object",
1353
+ "properties": {
1354
+ "id": {
1355
+ "type": "string",
1356
+ "nullable": true
1357
+ },
1358
+ "user_id": {
1359
+ "type": "string",
1360
+ "nullable": true
1361
+ },
1362
+ "proposal_id": {
1363
+ "type": "string",
1364
+ "nullable": true
1365
+ },
1366
+ "name": {
1367
+ "type": "string",
1368
+ "nullable": true
1369
+ },
1370
+ "email": {
1371
+ "type": "string",
1372
+ "nullable": true
1373
+ },
1374
+ "title": {
1375
+ "type": "string",
1376
+ "nullable": true
1377
+ },
1378
+ "status": {
1379
+ "type": "string",
1380
+ "nullable": true
1381
+ },
1382
+ "created_at": {
1383
+ "type": "string",
1384
+ "format": "date-time",
1385
+ "nullable": true
1386
+ },
1387
+ "updated_at": {
1388
+ "type": "string",
1389
+ "format": "date-time",
1390
+ "nullable": true
1391
+ }
1392
+ }
1393
+ },
1394
+ "gadgetBudget": {
1395
+ "type": "object",
1396
+ "properties": {
1397
+ "sanityType": {
1398
+ "enum": [
1399
+ "gadget"
1400
+ ],
1401
+ "type": "string",
1402
+ "default": "gadget"
1403
+ },
1404
+ "employee": {
1405
+ "$ref": "#/components/schemas/sanityOrderEmployee"
1406
+ },
1407
+ "sanityCreatedAt": {
1408
+ "type": "string"
1409
+ },
1410
+ "sanityId": {
1411
+ "type": "string"
1412
+ },
1413
+ "sanityRev": {
1414
+ "type": "string"
1415
+ },
1416
+ "sanityUpdatedAt": {
1417
+ "type": "string"
1418
+ },
1419
+ "yearlyBudgets": {
1420
+ "type": "array",
1421
+ "items": {
1422
+ "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInner"
1423
+ }
1424
+ }
1425
+ }
1426
+ },
1427
+ "geopoint": {
1428
+ "type": "object",
1429
+ "properties": {
1430
+ "sanityType": {
1431
+ "enum": [
1432
+ "geopoint"
1433
+ ],
1434
+ "type": "string",
1435
+ "default": "geopoint"
1436
+ },
1437
+ "alt": {
1438
+ "type": "number",
1439
+ "format": "double"
1440
+ },
1441
+ "lat": {
1442
+ "type": "number",
1443
+ "format": "double"
1444
+ },
1445
+ "lng": {
1446
+ "type": "number",
1447
+ "format": "double"
1448
+ }
1449
+ }
1450
+ },
1451
+ "pageEmployeeOrderInner": {
1452
+ "type": "object",
1453
+ "properties": {
1454
+ "sanityType": {
1455
+ "enum": [
1456
+ "reference"
1457
+ ],
1458
+ "type": "string",
1459
+ "default": "reference"
1460
+ },
1461
+ "sanityKey": {
1462
+ "type": "string"
1463
+ },
1464
+ "sanityRef": {
1465
+ "type": "string"
1466
+ },
1467
+ "sanityWeak": {
1468
+ "type": "boolean"
1469
+ }
1470
+ }
1471
+ },
1472
+ "pageEquipmentInner": {
1473
+ "type": "object",
1474
+ "properties": {
1475
+ "sanityType": {
1476
+ "enum": [
1477
+ "reference"
1478
+ ],
1479
+ "type": "string",
1480
+ "default": "reference"
1481
+ },
1482
+ "sanityKey": {
1483
+ "type": "string"
1484
+ },
1485
+ "sanityRef": {
1486
+ "type": "string"
1487
+ },
1488
+ "sanityWeak": {
1489
+ "type": "boolean"
1490
+ }
1491
+ }
1492
+ },
1493
+ "patchEmployee": {
1494
+ "type": "object",
1495
+ "properties": {
1496
+ "gender": {
1497
+ "enum": [
1498
+ "male",
1499
+ "female",
1500
+ "These are not the genders you are looking for"
1501
+ ],
1502
+ "type": "string",
1503
+ "default": "male",
1504
+ "nullable": true
1505
+ },
1506
+ "maritalStatus": {
1507
+ "enum": [
1508
+ "single",
1509
+ "married",
1510
+ "cohabitant"
1511
+ ],
1512
+ "type": "string",
1513
+ "default": "single",
1514
+ "nullable": true
1515
+ },
1516
+ "sanityType": {
1517
+ "enum": [
1518
+ "employee"
1519
+ ],
1520
+ "type": "string",
1521
+ "default": "employee",
1522
+ "nullable": true
1523
+ },
1524
+ "about": {
1525
+ "type": "string"
1526
+ },
1527
+ "active": {
1528
+ "type": "boolean",
1529
+ "nullable": true
1530
+ },
1531
+ "address": {
1532
+ "type": "string"
1533
+ },
1534
+ "allergies": {
1535
+ "type": "array",
1536
+ "items": {
1537
+ "type": "string"
1538
+ }
1539
+ },
1540
+ "birth_date": {
1541
+ "type": "string"
1542
+ },
1543
+ "blurred_image": {
1544
+ "$ref": "#/components/schemas/sanityPatchPageMetaImage"
1545
+ },
1546
+ "boardMember": {
1547
+ "type": "boolean",
1548
+ "nullable": true
1549
+ },
1550
+ "cliftonStrengths": {
1551
+ "type": "array",
1552
+ "items": {
1553
+ "$ref": "#/components/schemas/sanityCreateEmployeeCliftonStrengthsInner"
1554
+ }
1555
+ },
1556
+ "coinbaseAccountEmail": {
1557
+ "type": "string"
1558
+ },
1559
+ "commissionTier": {
1560
+ "$ref": "#/components/schemas/commissionTierReference"
1561
+ },
1562
+ "education": {
1563
+ "type": "string"
1564
+ },
1565
+ "email": {
1566
+ "type": "string"
1567
+ },
1568
+ "equipment": {
1569
+ "type": "array",
1570
+ "items": {
1571
+ "$ref": "#/components/schemas/pageEquipmentInner"
1572
+ }
1573
+ },
1574
+ "graduationYear": {
1575
+ "type": "number",
1576
+ "format": "double",
1577
+ "nullable": true
1578
+ },
1579
+ "groups": {
1580
+ "type": "array",
1581
+ "items": {
1582
+ "$ref": "#/components/schemas/sanityCreateEmployeeGroupsInner"
1583
+ }
1584
+ },
1585
+ "image": {
1586
+ "$ref": "#/components/schemas/sanityPatchPageMetaImage"
1587
+ },
1588
+ "innovativeSalary": {
1589
+ "type": "boolean",
1590
+ "nullable": true
1591
+ },
1592
+ "innovativeSalaryPercentage": {
1593
+ "type": "number",
1594
+ "format": "double",
1595
+ "nullable": true
1596
+ },
1597
+ "isBot": {
1598
+ "type": "boolean",
1599
+ "nullable": true
1600
+ },
1601
+ "isSeekingProject": {
1602
+ "type": "boolean",
1603
+ "nullable": true
1604
+ },
1605
+ "manager": {
1606
+ "$ref": "#/components/schemas/employeeReference"
1607
+ },
1608
+ "media": {
1609
+ "type": "array",
1610
+ "items": {
1611
+ "$ref": "#/components/schemas/componentGalleryMediaInner"
1612
+ }
1613
+ },
1614
+ "name": {
1615
+ "type": "string"
1616
+ },
1617
+ "nextOfKin": {
1618
+ "type": "array",
1619
+ "items": {
1620
+ "$ref": "#/components/schemas/sanityEmployeeNextOfKinInner"
1621
+ }
1622
+ },
1623
+ "nrOfChildren": {
1624
+ "type": "number",
1625
+ "format": "double",
1626
+ "nullable": true
1627
+ },
1628
+ "personalProjectRequirements": {
1629
+ "type": "string"
1630
+ },
1631
+ "position": {
1632
+ "type": "string"
1633
+ },
1634
+ "slug": {
1635
+ "$ref": "#/components/schemas/slug"
1636
+ },
1637
+ "start_date": {
1638
+ "type": "string"
1639
+ },
1640
+ "tags": {
1641
+ "type": "array",
1642
+ "items": {
1643
+ "$ref": "#/components/schemas/sanityCreateEmployeeTagsInner"
1644
+ }
1645
+ },
1646
+ "technologies": {
1647
+ "type": "array",
1648
+ "items": {
1649
+ "$ref": "#/components/schemas/sanityCreateEmployeeTechnologiesInner"
1650
+ }
1651
+ },
1652
+ "telephone": {
1653
+ "type": "string"
1654
+ },
1655
+ "additionalProperties": {
1656
+ "type": "object",
1657
+ "additionalProperties": {
1658
+ "type": "object"
1659
+ }
1660
+ }
1661
+ }
1662
+ },
1663
+ "protectedEmployee": {
1664
+ "type": "object",
1665
+ "properties": {
1666
+ "started": {
1667
+ "type": "boolean",
1668
+ "nullable": true
1669
+ },
1670
+ "gender": {
1671
+ "enum": [
1672
+ "female",
1673
+ "male",
1674
+ "These are not the genders you are looking for"
1675
+ ],
1676
+ "type": "string",
1677
+ "default": "female"
1678
+ },
1679
+ "maritalStatus": {
1680
+ "enum": [
1681
+ "cohabitant",
1682
+ "married",
1683
+ "single"
1684
+ ],
1685
+ "type": "string",
1686
+ "default": "cohabitant",
1687
+ "nullable": true
1688
+ },
1689
+ "sanityType": {
1690
+ "enum": [
1691
+ "employee"
1692
+ ],
1693
+ "type": "string",
1694
+ "default": "employee"
1695
+ },
1696
+ "about": {
1697
+ "type": "string"
1698
+ },
1699
+ "active": {
1700
+ "type": "boolean"
1701
+ },
1702
+ "address": {
1703
+ "type": "string"
1704
+ },
1705
+ "allergies": {
1706
+ "type": "array",
1707
+ "items": {
1708
+ "type": "string"
1709
+ }
1710
+ },
1711
+ "birth_date": {
1712
+ "type": "string"
1713
+ },
1714
+ "blurred_image": {
1715
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1716
+ },
1717
+ "boardMember": {
1718
+ "type": "boolean"
1719
+ },
1720
+ "cliftonStrengths": {
1721
+ "type": "array",
1722
+ "items": {
1723
+ "$ref": "#/components/schemas/sanityEmployeeCliftonStrengthsInner"
1724
+ }
1725
+ },
1726
+ "coinbaseAccountEmail": {
1727
+ "type": "string"
1728
+ },
1729
+ "commissionTier": {
1730
+ "$ref": "#/components/schemas/sanityEmployeeCommissionTier"
1731
+ },
1732
+ "education": {
1733
+ "type": "string"
1734
+ },
1735
+ "email": {
1736
+ "type": "string"
1737
+ },
1738
+ "equipment": {
1739
+ "type": "array",
1740
+ "items": {
1741
+ "$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
1742
+ }
1743
+ },
1744
+ "graduationYear": {
1745
+ "type": "number",
1746
+ "format": "double"
1747
+ },
1748
+ "groups": {
1749
+ "type": "array",
1750
+ "items": {
1751
+ "$ref": "#/components/schemas/sanityEmployeeGroupsInner"
1752
+ }
1753
+ },
1754
+ "image": {
1755
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1756
+ },
1757
+ "innovativeSalary": {
1758
+ "type": "boolean"
1759
+ },
1760
+ "innovativeSalaryPercentage": {
1761
+ "type": "number",
1762
+ "format": "double"
1763
+ },
1764
+ "isBot": {
1765
+ "type": "boolean"
1766
+ },
1767
+ "isSeekingProject": {
1768
+ "type": "boolean"
1769
+ },
1770
+ "manager": {
1771
+ "$ref": "#/components/schemas/sanityEmployeeManager"
1772
+ },
1773
+ "media": {
1774
+ "type": "array",
1775
+ "items": {
1776
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInner"
1777
+ }
1778
+ },
1779
+ "name": {
1780
+ "type": "string"
1781
+ },
1782
+ "nextOfKin": {
1783
+ "type": "array",
1784
+ "items": {
1785
+ "$ref": "#/components/schemas/sanityEmployeeNextOfKinInner"
1786
+ }
1787
+ },
1788
+ "nrOfChildren": {
1789
+ "type": "number",
1790
+ "format": "double"
1791
+ },
1792
+ "personalProjectRequirements": {
1793
+ "type": "string"
1794
+ },
1795
+ "position": {
1796
+ "type": "string"
1797
+ },
1798
+ "sanityCreatedAt": {
1799
+ "type": "string"
1800
+ },
1801
+ "sanityId": {
1802
+ "type": "string"
1803
+ },
1804
+ "sanityRev": {
1805
+ "type": "string"
1806
+ },
1807
+ "sanityUpdatedAt": {
1808
+ "type": "string"
1809
+ },
1810
+ "slug": {
1811
+ "$ref": "#/components/schemas/slug"
1812
+ },
1813
+ "start_date": {
1814
+ "type": "string"
1815
+ },
1816
+ "tags": {
1817
+ "type": "array",
1818
+ "items": {
1819
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
1820
+ }
1821
+ },
1822
+ "technologies": {
1823
+ "type": "array",
1824
+ "items": {
1825
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInner"
1826
+ }
1827
+ },
1828
+ "telephone": {
1829
+ "type": "string"
1830
+ }
1831
+ }
1832
+ },
1833
+ "publicEmployee": {
1834
+ "type": "object",
1835
+ "properties": {
1836
+ "sanityId": {
1837
+ "type": "string"
1838
+ },
1839
+ "sanityType": {
1840
+ "type": "string"
1841
+ },
1842
+ "active": {
1843
+ "type": "boolean",
1844
+ "nullable": true
1845
+ },
1846
+ "image": {
1847
+ "$ref": "#/components/schemas/sanityImage"
1848
+ },
1849
+ "tags": {
1850
+ "type": "array",
1851
+ "items": {
1852
+ "$ref": "#/components/schemas/tag"
1853
+ }
1854
+ },
1855
+ "technologies": {
1856
+ "type": "array",
1857
+ "items": {
1858
+ "$ref": "#/components/schemas/technology"
1859
+ }
1860
+ },
1861
+ "started": {
1862
+ "type": "boolean"
1863
+ },
1864
+ "media": {
1865
+ "type": "array",
1866
+ "items": {
1867
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInner"
1868
+ }
1869
+ },
1870
+ "name": {
1871
+ "type": "string"
1872
+ },
1873
+ "slug": {
1874
+ "$ref": "#/components/schemas/slug"
1875
+ },
1876
+ "gender": {
1877
+ "type": "string"
1878
+ },
1879
+ "email": {
1880
+ "type": "string"
1881
+ },
1882
+ "telephone": {
1883
+ "type": "string"
1884
+ },
1885
+ "position": {
1886
+ "type": "string"
1887
+ },
1888
+ "education": {
1889
+ "type": "string"
1890
+ },
1891
+ "about": {
1892
+ "type": "string"
1893
+ },
1894
+ "birthDate": {
1895
+ "type": "string",
1896
+ "format": "date-time",
1897
+ "nullable": true
1898
+ },
1899
+ "startDate": {
1900
+ "type": "string"
1901
+ }
1902
+ }
1903
+ },
1904
+ "sanityAssetSourceData": {
1905
+ "type": "object",
1906
+ "properties": {
1907
+ "sanityType": {
1908
+ "enum": [
1909
+ "sanity.assetSourceData"
1910
+ ],
1911
+ "type": "string",
1912
+ "default": "sanity.assetSourceData"
1913
+ },
1914
+ "id": {
1915
+ "type": "string"
1916
+ },
1917
+ "name": {
1918
+ "type": "string"
1919
+ },
1920
+ "url": {
1921
+ "type": "string"
1922
+ }
1923
+ }
1924
+ },
1925
+ "sanityCreateEmployeeCliftonStrengthsInner": {
1926
+ "type": "object",
1927
+ "properties": {
1928
+ "sanityType": {
1929
+ "enum": [
1930
+ "reference"
1931
+ ],
1932
+ "type": "string",
1933
+ "default": "reference"
1934
+ },
1935
+ "sanityKey": {
1936
+ "type": "string"
1937
+ },
1938
+ "sanityRef": {
1939
+ "type": "string"
1940
+ },
1941
+ "sanityWeak": {
1942
+ "type": "boolean"
1943
+ }
1944
+ }
1945
+ },
1946
+ "sanityCreateEmployeeGroupsInner": {
1947
+ "type": "object",
1948
+ "properties": {
1949
+ "sanityType": {
1950
+ "enum": [
1951
+ "reference"
1952
+ ],
1953
+ "type": "string",
1954
+ "default": "reference"
1955
+ },
1956
+ "sanityKey": {
1957
+ "type": "string"
1958
+ },
1959
+ "sanityRef": {
1960
+ "type": "string"
1961
+ },
1962
+ "sanityWeak": {
1963
+ "type": "boolean"
1964
+ }
1965
+ }
1966
+ },
1967
+ "sanityCreateEmployeeTagsInner": {
1968
+ "type": "object",
1969
+ "properties": {
1970
+ "sanityType": {
1971
+ "enum": [
1972
+ "reference"
1973
+ ],
1974
+ "type": "string",
1975
+ "default": "reference"
1976
+ },
1977
+ "sanityKey": {
1978
+ "type": "string"
1979
+ },
1980
+ "sanityRef": {
1981
+ "type": "string"
1982
+ },
1983
+ "sanityWeak": {
1984
+ "type": "boolean"
1985
+ }
1986
+ }
1987
+ },
1988
+ "sanityCreateEmployeeTechnologiesInner": {
1989
+ "type": "object",
1990
+ "properties": {
1991
+ "sanityType": {
1992
+ "enum": [
1993
+ "reference"
1994
+ ],
1995
+ "type": "string",
1996
+ "default": "reference"
1997
+ },
1998
+ "sanityKey": {
1999
+ "type": "string"
2000
+ },
2001
+ "sanityRef": {
2002
+ "type": "string"
2003
+ },
2004
+ "sanityWeak": {
2005
+ "type": "boolean"
2006
+ }
2007
+ }
2008
+ },
2009
+ "sanityEmployeeCliftonStrengthsInner": {
2010
+ "type": "object",
2011
+ "properties": {
2012
+ "domain": {
2013
+ "enum": [
2014
+ "executing",
2015
+ "influencing",
2016
+ "relationship_building",
2017
+ "strategic_thinking"
2018
+ ],
2019
+ "type": "string",
2020
+ "default": "executing",
2021
+ "nullable": true
2022
+ },
2023
+ "sanityType": {
2024
+ "enum": [
2025
+ "cliftonStrength"
2026
+ ],
2027
+ "type": "string",
2028
+ "default": "cliftonStrength"
2029
+ },
2030
+ "sanityCreatedAt": {
2031
+ "type": "string"
2032
+ },
2033
+ "sanityId": {
2034
+ "type": "string"
2035
+ },
2036
+ "sanityRev": {
2037
+ "type": "string"
2038
+ },
2039
+ "sanityUpdatedAt": {
2040
+ "type": "string"
2041
+ },
2042
+ "strength": {
2043
+ "type": "string"
2044
+ }
2045
+ }
2046
+ },
2047
+ "sanityEmployeeCommissionTier": {
2048
+ "type": "object",
2049
+ "properties": {
2050
+ "sanityType": {
2051
+ "enum": [
2052
+ "commissionTier"
2053
+ ],
2054
+ "type": "string",
2055
+ "default": "commissionTier"
2056
+ },
2057
+ "commission": {
2058
+ "type": "number",
2059
+ "format": "double"
2060
+ },
2061
+ "sanityCreatedAt": {
2062
+ "type": "string"
2063
+ },
2064
+ "sanityId": {
2065
+ "type": "string"
2066
+ },
2067
+ "sanityRev": {
2068
+ "type": "string"
2069
+ },
2070
+ "sanityUpdatedAt": {
2071
+ "type": "string"
2072
+ },
2073
+ "title": {
2074
+ "type": "string"
2075
+ }
2076
+ }
2077
+ },
2078
+ "sanityEmployeeEquipmentInner": {
2079
+ "type": "object",
2080
+ "properties": {
2081
+ "sanityType": {
2082
+ "enum": [
2083
+ "equipment"
2084
+ ],
2085
+ "type": "string",
2086
+ "default": "equipment"
2087
+ },
2088
+ "description": {
2089
+ "type": "array",
2090
+ "items": {
2091
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
2092
+ }
2093
+ },
2094
+ "image": {
2095
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
2096
+ },
2097
+ "images": {
2098
+ "type": "array",
2099
+ "items": {
2100
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
2101
+ }
2102
+ },
2103
+ "sanityId": {
2104
+ "type": "string"
2105
+ },
2106
+ "title": {
2107
+ "type": "string"
2108
+ }
2109
+ }
2110
+ },
2111
+ "sanityEmployeeGroupsInner": {
2112
+ "type": "object",
2113
+ "properties": {
2114
+ "sanityType": {
2115
+ "enum": [
2116
+ "group"
2117
+ ],
2118
+ "type": "string",
2119
+ "default": "group"
2120
+ },
2121
+ "description": {
2122
+ "type": "array",
2123
+ "items": {
2124
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
2125
+ }
2126
+ },
2127
+ "image": {
2128
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
2129
+ },
2130
+ "leaders": {
2131
+ "type": "array",
2132
+ "items": {
2133
+ "$ref": "#/components/schemas/pageEmployeeOrderInner"
2134
+ }
2135
+ },
2136
+ "name": {
2137
+ "type": "string"
2138
+ },
2139
+ "sanityCreatedAt": {
2140
+ "type": "string"
2141
+ },
2142
+ "sanityId": {
2143
+ "type": "string"
2144
+ },
2145
+ "sanityRev": {
2146
+ "type": "string"
2147
+ },
2148
+ "sanityUpdatedAt": {
2149
+ "type": "string"
2150
+ }
2151
+ }
2152
+ },
2153
+ "sanityEmployeeManager": {
2154
+ "type": "object",
2155
+ "properties": {
2156
+ "sanityType": {
2157
+ "enum": [
2158
+ "employee"
2159
+ ],
2160
+ "type": "string",
2161
+ "default": "employee"
2162
+ },
2163
+ "email": {
2164
+ "type": "string"
2165
+ },
2166
+ "image": {
2167
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
2168
+ },
2169
+ "name": {
2170
+ "type": "string"
2171
+ },
2172
+ "sanityId": {
2173
+ "type": "string"
2174
+ },
2175
+ "slug": {
2176
+ "$ref": "#/components/schemas/slug"
2177
+ },
2178
+ "tags": {
2179
+ "type": "array",
2180
+ "items": {
2181
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
2182
+ }
2183
+ },
2184
+ "telephone": {
2185
+ "type": "string"
2186
+ }
2187
+ }
2188
+ },
2189
+ "sanityEmployeeNextOfKinInner": {
2190
+ "type": "object",
2191
+ "properties": {
2192
+ "sanityType": {
2193
+ "enum": [
2194
+ "nextofkin"
2195
+ ],
2196
+ "type": "string",
2197
+ "default": "nextofkin"
2198
+ },
2199
+ "name": {
2200
+ "type": "string"
2201
+ },
2202
+ "sanityKey": {
2203
+ "type": "string"
2204
+ },
2205
+ "telephone": {
2206
+ "type": "string"
2207
+ }
2208
+ }
2209
+ },
2210
+ "sanityGadgetBudgetYearlyBudgetsInner": {
2211
+ "type": "object",
2212
+ "properties": {
2213
+ "sanityType": {
2214
+ "enum": [
2215
+ "yearlyBudget"
2216
+ ],
2217
+ "type": "string",
2218
+ "default": "yearlyBudget"
2219
+ },
2220
+ "amount": {
2221
+ "type": "number",
2222
+ "format": "double"
2223
+ },
2224
+ "equipmentList": {
2225
+ "type": "array",
2226
+ "items": {
2227
+ "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInner"
2228
+ }
2229
+ },
2230
+ "sanityKey": {
2231
+ "type": "string"
2232
+ },
2233
+ "year": {
2234
+ "type": "number",
2235
+ "format": "double"
2236
+ }
2237
+ }
2238
+ },
2239
+ "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInner": {
2240
+ "type": "object",
2241
+ "properties": {
2242
+ "actualInstance": {
2243
+ "type": "object"
2244
+ },
2245
+ "isNullable": {
2246
+ "type": "boolean"
2247
+ },
2248
+ "schemaType": {
2249
+ "type": "string"
2250
+ }
2251
+ }
2252
+ },
2253
+ "sanityImage": {
2254
+ "type": "object",
2255
+ "properties": {
2256
+ "sanityType": {
2257
+ "enum": [
2258
+ "image"
2259
+ ],
2260
+ "type": "string",
2261
+ "default": "image"
2262
+ },
2263
+ "asset": {
2264
+ "$ref": "#/components/schemas/sanityImageAsset"
2265
+ },
2266
+ "sanityId": {
2267
+ "type": "string"
2268
+ },
2269
+ "sanityKey": {
2270
+ "type": "string"
2271
+ },
2272
+ "additionalProperties": {
2273
+ "type": "object",
2274
+ "additionalProperties": {
2275
+ "type": "object"
2276
+ }
2277
+ }
2278
+ }
2279
+ },
2280
+ "sanityImageAsset": {
2281
+ "type": "object",
2282
+ "properties": {
2283
+ "sanityType": {
2284
+ "enum": [
2285
+ "sanity.imageAsset"
2286
+ ],
2287
+ "type": "string",
2288
+ "default": "sanity.imageAsset"
2289
+ },
2290
+ "altText": {
2291
+ "type": "string"
2292
+ },
2293
+ "assetId": {
2294
+ "type": "string"
2295
+ },
2296
+ "description": {
2297
+ "type": "string"
2298
+ },
2299
+ "extension": {
2300
+ "type": "string"
2301
+ },
2302
+ "label": {
2303
+ "type": "string"
2304
+ },
2305
+ "metadata": {
2306
+ "$ref": "#/components/schemas/sanityImageMetadata"
2307
+ },
2308
+ "mimeType": {
2309
+ "type": "string"
2310
+ },
2311
+ "originalFilename": {
2312
+ "type": "string"
2313
+ },
2314
+ "path": {
2315
+ "type": "string"
2316
+ },
2317
+ "sanityCreatedAt": {
2318
+ "type": "string"
2319
+ },
2320
+ "sanityId": {
2321
+ "type": "string"
2322
+ },
2323
+ "sanityRev": {
2324
+ "type": "string"
2325
+ },
2326
+ "sanityUpdatedAt": {
2327
+ "type": "string"
2328
+ },
2329
+ "sha1hash": {
2330
+ "type": "string"
2331
+ },
2332
+ "size": {
2333
+ "type": "number",
2334
+ "format": "double"
2335
+ },
2336
+ "source": {
2337
+ "$ref": "#/components/schemas/sanityAssetSourceData"
2338
+ },
2339
+ "title": {
2340
+ "type": "string"
2341
+ },
2342
+ "uploadId": {
2343
+ "type": "string"
2344
+ },
2345
+ "url": {
2346
+ "type": "string"
2347
+ },
2348
+ "additionalProperties": {
2349
+ "type": "object",
2350
+ "additionalProperties": {
2351
+ "type": "object"
2352
+ }
2353
+ }
2354
+ }
2355
+ },
2356
+ "sanityImageAssetReference": {
2357
+ "type": "object",
2358
+ "properties": {
2359
+ "sanityType": {
2360
+ "enum": [
2361
+ "reference"
2362
+ ],
2363
+ "type": "string",
2364
+ "default": "reference"
2365
+ },
2366
+ "sanityRef": {
2367
+ "type": "string"
2368
+ },
2369
+ "sanityWeak": {
2370
+ "type": "boolean"
2371
+ }
2372
+ }
2373
+ },
2374
+ "sanityImageCrop": {
2375
+ "type": "object",
2376
+ "properties": {
2377
+ "sanityType": {
2378
+ "enum": [
2379
+ "sanity.imageCrop"
2380
+ ],
2381
+ "type": "string",
2382
+ "default": "sanity.imageCrop"
2383
+ },
2384
+ "bottom": {
2385
+ "type": "number",
2386
+ "format": "double"
2387
+ },
2388
+ "left": {
2389
+ "type": "number",
2390
+ "format": "double"
2391
+ },
2392
+ "right": {
2393
+ "type": "number",
2394
+ "format": "double"
2395
+ },
2396
+ "top": {
2397
+ "type": "number",
2398
+ "format": "double"
2399
+ }
2400
+ }
2401
+ },
2402
+ "sanityImageDimensions": {
2403
+ "type": "object",
2404
+ "properties": {
2405
+ "sanityType": {
2406
+ "enum": [
2407
+ "sanity.imageDimensions"
2408
+ ],
2409
+ "type": "string",
2410
+ "default": "sanity.imageDimensions"
2411
+ },
2412
+ "aspectRatio": {
2413
+ "type": "number",
2414
+ "format": "double"
2415
+ },
2416
+ "height": {
2417
+ "type": "number",
2418
+ "format": "double"
2419
+ },
2420
+ "width": {
2421
+ "type": "number",
2422
+ "format": "double"
2423
+ }
2424
+ }
2425
+ },
2426
+ "sanityImageHotspot": {
2427
+ "type": "object",
2428
+ "properties": {
2429
+ "sanityType": {
2430
+ "enum": [
2431
+ "sanity.imageHotspot"
2432
+ ],
2433
+ "type": "string",
2434
+ "default": "sanity.imageHotspot"
2435
+ },
2436
+ "height": {
2437
+ "type": "number",
2438
+ "format": "double"
2439
+ },
2440
+ "width": {
2441
+ "type": "number",
2442
+ "format": "double"
2443
+ },
2444
+ "x": {
2445
+ "type": "number",
2446
+ "format": "double"
2447
+ },
2448
+ "y": {
2449
+ "type": "number",
2450
+ "format": "double"
2451
+ }
2452
+ }
2453
+ },
2454
+ "sanityImageMetadata": {
2455
+ "type": "object",
2456
+ "properties": {
2457
+ "sanityType": {
2458
+ "enum": [
2459
+ "sanity.imageMetadata"
2460
+ ],
2461
+ "type": "string",
2462
+ "default": "sanity.imageMetadata"
2463
+ },
2464
+ "blurHash": {
2465
+ "type": "string"
2466
+ },
2467
+ "dimensions": {
2468
+ "$ref": "#/components/schemas/sanityImageDimensions"
2469
+ },
2470
+ "hasAlpha": {
2471
+ "type": "boolean"
2472
+ },
2473
+ "isOpaque": {
2474
+ "type": "boolean"
2475
+ },
2476
+ "location": {
2477
+ "$ref": "#/components/schemas/geopoint"
2478
+ },
2479
+ "lqip": {
2480
+ "type": "string"
2481
+ },
2482
+ "palette": {
2483
+ "$ref": "#/components/schemas/sanityImagePalette"
2484
+ },
2485
+ "thumbHash": {
2486
+ "type": "string"
2487
+ }
2488
+ }
2489
+ },
2490
+ "sanityImagePalette": {
2491
+ "type": "object",
2492
+ "properties": {
2493
+ "sanityType": {
2494
+ "enum": [
2495
+ "sanity.imagePalette"
2496
+ ],
2497
+ "type": "string",
2498
+ "default": "sanity.imagePalette"
2499
+ },
2500
+ "darkMuted": {
2501
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2502
+ },
2503
+ "darkVibrant": {
2504
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2505
+ },
2506
+ "dominant": {
2507
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2508
+ },
2509
+ "lightMuted": {
2510
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2511
+ },
2512
+ "lightVibrant": {
2513
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2514
+ },
2515
+ "muted": {
2516
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2517
+ },
2518
+ "vibrant": {
2519
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
2520
+ }
2521
+ }
2522
+ },
2523
+ "sanityImagePaletteSwatch": {
2524
+ "type": "object",
2525
+ "properties": {
2526
+ "sanityType": {
2527
+ "enum": [
2528
+ "sanity.imagePaletteSwatch"
2529
+ ],
2530
+ "type": "string",
2531
+ "default": "sanity.imagePaletteSwatch"
2532
+ },
2533
+ "background": {
2534
+ "type": "string"
2535
+ },
2536
+ "foreground": {
2537
+ "type": "string"
2538
+ },
2539
+ "population": {
2540
+ "type": "number",
2541
+ "format": "double"
2542
+ },
2543
+ "title": {
2544
+ "type": "string"
2545
+ }
2546
+ }
2547
+ },
2548
+ "sanityOrderEmployee": {
2549
+ "type": "object",
2550
+ "properties": {
2551
+ "sanityType": {
2552
+ "enum": [
2553
+ "employee"
2554
+ ],
2555
+ "type": "string",
2556
+ "default": "employee"
2557
+ },
2558
+ "email": {
2559
+ "type": "string"
2560
+ },
2561
+ "image": {
2562
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
2563
+ },
2564
+ "name": {
2565
+ "type": "string"
2566
+ },
2567
+ "sanityId": {
2568
+ "type": "string"
2569
+ },
2570
+ "slug": {
2571
+ "$ref": "#/components/schemas/slug"
2572
+ },
2573
+ "tags": {
2574
+ "type": "array",
2575
+ "items": {
2576
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
2577
+ }
2578
+ },
2579
+ "telephone": {
2580
+ "type": "string"
2581
+ }
2582
+ }
2583
+ },
2584
+ "sanityPatchPageMetaImage": {
2585
+ "type": "object",
2586
+ "properties": {
2587
+ "sanityType": {
2588
+ "enum": [
2589
+ "image"
2590
+ ],
2591
+ "type": "string",
2592
+ "default": "image"
2593
+ },
2594
+ "asset": {
2595
+ "$ref": "#/components/schemas/sanityImageAssetReference"
2596
+ },
2597
+ "crop": {
2598
+ "$ref": "#/components/schemas/sanityImageCrop"
2599
+ },
2600
+ "hotspot": {
2601
+ "$ref": "#/components/schemas/sanityImageHotspot"
2602
+ },
2603
+ "media": {
2604
+ "type": "object"
2605
+ }
2606
+ }
2607
+ },
2608
+ "sanitySystemsInnerDescriptionInner": {
2609
+ "type": "object",
2610
+ "properties": {
2611
+ "listItem": {
2612
+ "enum": [
2613
+ "bullet",
2614
+ "number"
2615
+ ],
2616
+ "type": "string",
2617
+ "default": "bullet",
2618
+ "nullable": true
2619
+ },
2620
+ "sanityType": {
2621
+ "enum": [
2622
+ "block"
2623
+ ],
2624
+ "type": "string",
2625
+ "default": "block"
2626
+ },
2627
+ "style": {
2628
+ "enum": [
2629
+ "blockquote",
2630
+ "h1",
2631
+ "h2",
2632
+ "h3",
2633
+ "h4",
2634
+ "h5",
2635
+ "h6",
2636
+ "normal"
2637
+ ],
2638
+ "type": "string",
2639
+ "default": "blockquote",
2640
+ "nullable": true
2641
+ },
2642
+ "children": {
2643
+ "type": "array",
2644
+ "items": {
2645
+ "$ref": "#/components/schemas/componentBlocksInnerOneOfChildrenInner"
2646
+ }
2647
+ },
2648
+ "level": {
2649
+ "type": "number",
2650
+ "format": "double"
2651
+ },
2652
+ "markDefs": {
2653
+ "type": "array",
2654
+ "items": {
2655
+ "$ref": "#/components/schemas/componentBlocksInnerOneOfMarkDefsInner"
2656
+ }
2657
+ },
2658
+ "sanityKey": {
2659
+ "type": "string"
2660
+ }
2661
+ }
2662
+ },
2663
+ "sanityTechnologyWithRelationsProjectsInnerTechnologiesInner": {
2664
+ "type": "object",
2665
+ "properties": {
2666
+ "sanityType": {
2667
+ "enum": [
2668
+ "technology"
2669
+ ],
2670
+ "type": "string",
2671
+ "default": "technology"
2672
+ },
2673
+ "parent": {
2674
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
2675
+ },
2676
+ "sanityId": {
2677
+ "type": "string"
2678
+ },
2679
+ "slug": {
2680
+ "$ref": "#/components/schemas/slug"
2681
+ },
2682
+ "title": {
2683
+ "type": "string"
2684
+ }
2685
+ }
2686
+ },
2687
+ "sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent": {
2688
+ "type": "object",
2689
+ "properties": {
2690
+ "sanityType": {
2691
+ "enum": [
2692
+ "tag"
2693
+ ],
2694
+ "type": "string",
2695
+ "default": "tag"
2696
+ },
2697
+ "name": {
2698
+ "type": "string"
2699
+ },
2700
+ "sanityId": {
2701
+ "type": "string"
2702
+ },
2703
+ "slug": {
2704
+ "$ref": "#/components/schemas/slug"
2705
+ }
2706
+ }
2707
+ },
2708
+ "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInner": {
2709
+ "type": "object",
2710
+ "properties": {
2711
+ "actualInstance": {
2712
+ "type": "object"
2713
+ },
2714
+ "isNullable": {
2715
+ "type": "boolean"
2716
+ },
2717
+ "schemaType": {
2718
+ "type": "string"
2719
+ }
2720
+ }
2721
+ },
2722
+ "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo": {
2723
+ "type": "object",
2724
+ "properties": {
2725
+ "sanityType": {
2726
+ "enum": [
2727
+ "image"
2728
+ ],
2729
+ "type": "string",
2730
+ "default": "image"
2731
+ },
2732
+ "asset": {
2733
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
2734
+ }
2735
+ }
2736
+ },
2737
+ "sanityTvCategoryDashboardsInnerBackgroundImage": {
2738
+ "type": "object",
2739
+ "properties": {
2740
+ "sanityType": {
2741
+ "enum": [
2742
+ "image"
2743
+ ],
2744
+ "type": "string",
2745
+ "default": "image"
2746
+ },
2747
+ "asset": {
2748
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
2749
+ }
2750
+ }
2751
+ },
2752
+ "sanityTvCategoryDashboardsInnerBackgroundImageAsset": {
2753
+ "type": "object",
2754
+ "properties": {
2755
+ "sanityType": {
2756
+ "enum": [
2757
+ "sanity.imageAsset"
2758
+ ],
2759
+ "type": "string",
2760
+ "default": "sanity.imageAsset"
2761
+ },
2762
+ "mimeType": {
2763
+ "type": "string"
2764
+ },
2765
+ "originalFilename": {
2766
+ "type": "string"
2767
+ },
2768
+ "sanityId": {
2769
+ "type": "string"
2770
+ },
2771
+ "url": {
2772
+ "type": "string"
2773
+ }
2774
+ }
2775
+ },
2776
+ "slug": {
2777
+ "type": "object",
2778
+ "properties": {
2779
+ "sanityType": {
2780
+ "enum": [
2781
+ "slug"
2782
+ ],
2783
+ "type": "string",
2784
+ "default": "slug"
2785
+ },
2786
+ "current": {
2787
+ "type": "string"
2788
+ },
2789
+ "source": {
2790
+ "type": "string"
2791
+ }
2792
+ }
2793
+ },
2794
+ "tag": {
2795
+ "type": "object",
2796
+ "properties": {
2797
+ "sanityId": {
2798
+ "type": "string"
2799
+ },
2800
+ "sanityType": {
2801
+ "type": "string"
2802
+ },
2803
+ "name": {
2804
+ "type": "string"
2805
+ },
2806
+ "slug": {
2807
+ "$ref": "#/components/schemas/slug"
2808
+ }
2809
+ }
2810
+ },
2811
+ "technology": {
2812
+ "type": "object",
2813
+ "properties": {
2814
+ "sanityId": {
2815
+ "type": "string"
2816
+ },
2817
+ "sanityType": {
2818
+ "type": "string"
2819
+ },
2820
+ "name": {
2821
+ "type": "string"
2822
+ },
2823
+ "slug": {
2824
+ "$ref": "#/components/schemas/slug"
2825
+ },
2826
+ "parent": {
2827
+ "$ref": "#/components/schemas/tag"
2828
+ }
2829
+ }
2830
+ },
2831
+ "updateProposalRequest": {
2832
+ "type": "object",
2833
+ "properties": {
2834
+ "name": {
2835
+ "type": "string",
2836
+ "nullable": true
2837
+ },
2838
+ "archived": {
2839
+ "type": "boolean",
2840
+ "nullable": true
2841
+ },
2842
+ "status": {
2843
+ "type": "string",
2844
+ "nullable": true
2845
+ }
2846
+ }
2847
+ }
2848
+ },
2849
+ "securitySchemes": {
2850
+ "Implicit": {
2851
+ "type": "oauth2",
2852
+ "flows": {
2853
+ "implicit": {
2854
+ "authorizationUrl": "https://login.microsoftonline.com/a8533784-aa3c-403b-a61a-1533ecc6e3ed/oauth2/v2.0/authorize",
2855
+ "tokenUrl": "https://login.microsoftonline.com/a8533784-aa3c-403b-a61a-1533ecc6e3ed/oauth2/v2.0/token",
2856
+ "refreshUrl": "https://login.microsoftonline.com/a8533784-aa3c-403b-a61a-1533ecc6e3ed/oauth2/v2.0/token",
2857
+ "scopes": {
2858
+ "api://e50e72ca-3b4a-413c-965d-f45ff561d551/.default": "Default function scope"
2859
+ }
2860
+ }
2861
+ }
2862
+ }
2863
+ }
2864
+ }
2865
+ }