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