@snokam/mcp-api 0.5.1

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,1867 @@
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.test.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://0ea58964-d892-4c79-a404-de76df0c45e6/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://0ea58964-d892-4c79-a404-de76df0c45e6/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://0ea58964-d892-4c79-a404-de76df0c45e6/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://0ea58964-d892-4c79-a404-de76df0c45e6/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://0ea58964-d892-4c79-a404-de76df0c45e6/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
+ "commissionTierReference": {
316
+ "type": "object",
317
+ "properties": {
318
+ "sanityType": {
319
+ "enum": [
320
+ "reference"
321
+ ],
322
+ "type": "string",
323
+ "default": "reference"
324
+ },
325
+ "sanityWeak": {
326
+ "type": "boolean"
327
+ },
328
+ "sanityRef": {
329
+ "type": "string"
330
+ }
331
+ }
332
+ },
333
+ "componentBlocksInnerOneOfChildrenInner": {
334
+ "type": "object",
335
+ "properties": {
336
+ "sanityType": {
337
+ "enum": [
338
+ "span"
339
+ ],
340
+ "type": "string",
341
+ "default": "span"
342
+ },
343
+ "sanityKey": {
344
+ "type": "string"
345
+ },
346
+ "text": {
347
+ "type": "string"
348
+ },
349
+ "marks": {
350
+ "type": "array",
351
+ "items": {
352
+ "type": "string"
353
+ }
354
+ }
355
+ }
356
+ },
357
+ "componentBlocksInnerOneOfMarkDefsInner": {
358
+ "type": "object",
359
+ "properties": {
360
+ "sanityType": {
361
+ "enum": [
362
+ "link"
363
+ ],
364
+ "type": "string",
365
+ "default": "link"
366
+ },
367
+ "sanityKey": {
368
+ "type": "string"
369
+ },
370
+ "href": {
371
+ "type": "string"
372
+ }
373
+ }
374
+ },
375
+ "componentGalleryMediaInner": {
376
+ "type": "object",
377
+ "properties": {
378
+ "actualInstance": {
379
+ "type": "object"
380
+ },
381
+ "isNullable": {
382
+ "type": "boolean"
383
+ },
384
+ "schemaType": {
385
+ "type": "string"
386
+ }
387
+ }
388
+ },
389
+ "employeeReference": {
390
+ "type": "object",
391
+ "properties": {
392
+ "sanityType": {
393
+ "enum": [
394
+ "reference"
395
+ ],
396
+ "type": "string",
397
+ "default": "reference"
398
+ },
399
+ "sanityWeak": {
400
+ "type": "boolean"
401
+ },
402
+ "sanityRef": {
403
+ "type": "string"
404
+ }
405
+ }
406
+ },
407
+ "feedback": {
408
+ "type": "object",
409
+ "properties": {
410
+ "message": {
411
+ "type": "string"
412
+ }
413
+ }
414
+ },
415
+ "gadgetBudget": {
416
+ "type": "object",
417
+ "properties": {
418
+ "sanityType": {
419
+ "enum": [
420
+ "gadget"
421
+ ],
422
+ "type": "string",
423
+ "default": "gadget"
424
+ },
425
+ "yearlyBudgets": {
426
+ "type": "array",
427
+ "items": {
428
+ "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInner"
429
+ }
430
+ },
431
+ "employee": {
432
+ "$ref": "#/components/schemas/sanityOrderEmployee"
433
+ },
434
+ "sanityRev": {
435
+ "type": "string"
436
+ },
437
+ "sanityUpdatedAt": {
438
+ "type": "string"
439
+ },
440
+ "sanityCreatedAt": {
441
+ "type": "string"
442
+ },
443
+ "sanityId": {
444
+ "type": "string"
445
+ }
446
+ }
447
+ },
448
+ "geopoint": {
449
+ "type": "object",
450
+ "properties": {
451
+ "sanityType": {
452
+ "enum": [
453
+ "geopoint"
454
+ ],
455
+ "type": "string",
456
+ "default": "geopoint"
457
+ },
458
+ "alt": {
459
+ "type": "number",
460
+ "format": "double"
461
+ },
462
+ "lng": {
463
+ "type": "number",
464
+ "format": "double"
465
+ },
466
+ "lat": {
467
+ "type": "number",
468
+ "format": "double"
469
+ }
470
+ }
471
+ },
472
+ "patchEmployee": {
473
+ "type": "object",
474
+ "properties": {
475
+ "sanityType": {
476
+ "enum": [
477
+ "employee"
478
+ ],
479
+ "type": "string",
480
+ "default": "employee",
481
+ "nullable": true
482
+ },
483
+ "gender": {
484
+ "enum": [
485
+ "male",
486
+ "female",
487
+ "These are not the genders you are looking for"
488
+ ],
489
+ "type": "string",
490
+ "default": "male",
491
+ "nullable": true
492
+ },
493
+ "maritalStatus": {
494
+ "enum": [
495
+ "single",
496
+ "married",
497
+ "cohabitant"
498
+ ],
499
+ "type": "string",
500
+ "default": "single",
501
+ "nullable": true
502
+ },
503
+ "name": {
504
+ "type": "string"
505
+ },
506
+ "email": {
507
+ "type": "string"
508
+ },
509
+ "equipment": {
510
+ "type": "array",
511
+ "items": {
512
+ "$ref": "#/components/schemas/sanityCreateEmployeeEquipmentInner"
513
+ }
514
+ },
515
+ "image": {
516
+ "$ref": "#/components/schemas/sanityPatchOkrIcon"
517
+ },
518
+ "slug": {
519
+ "$ref": "#/components/schemas/slug"
520
+ },
521
+ "media": {
522
+ "type": "array",
523
+ "items": {
524
+ "$ref": "#/components/schemas/componentGalleryMediaInner"
525
+ }
526
+ },
527
+ "active": {
528
+ "type": "boolean",
529
+ "nullable": true
530
+ },
531
+ "manager": {
532
+ "$ref": "#/components/schemas/employeeReference"
533
+ },
534
+ "address": {
535
+ "type": "string"
536
+ },
537
+ "birth_date": {
538
+ "type": "string"
539
+ },
540
+ "start_date": {
541
+ "type": "string"
542
+ },
543
+ "tags": {
544
+ "type": "array",
545
+ "items": {
546
+ "$ref": "#/components/schemas/sanityCreateEmployeeTagsInner"
547
+ }
548
+ },
549
+ "technologies": {
550
+ "type": "array",
551
+ "items": {
552
+ "$ref": "#/components/schemas/sanityCreateEmployeeTechnologiesInner"
553
+ }
554
+ },
555
+ "blurred_image": {
556
+ "$ref": "#/components/schemas/sanityPatchOkrIcon"
557
+ },
558
+ "telephone": {
559
+ "type": "string"
560
+ },
561
+ "graduationYear": {
562
+ "type": "number",
563
+ "format": "double",
564
+ "nullable": true
565
+ },
566
+ "allergies": {
567
+ "type": "array",
568
+ "items": {
569
+ "type": "string"
570
+ }
571
+ },
572
+ "nextOfKin": {
573
+ "type": "array",
574
+ "items": {
575
+ "$ref": "#/components/schemas/sanityEmployeeNextOfKinInner"
576
+ }
577
+ },
578
+ "nrOfChildren": {
579
+ "type": "number",
580
+ "format": "double",
581
+ "nullable": true
582
+ },
583
+ "position": {
584
+ "type": "string"
585
+ },
586
+ "education": {
587
+ "type": "string"
588
+ },
589
+ "about": {
590
+ "type": "string"
591
+ },
592
+ "satisfaction": {
593
+ "type": "number",
594
+ "format": "double",
595
+ "nullable": true
596
+ },
597
+ "groups": {
598
+ "type": "array",
599
+ "items": {
600
+ "$ref": "#/components/schemas/sanityCreateEmployeeGroupsInner"
601
+ }
602
+ },
603
+ "cliftonStrengths": {
604
+ "type": "array",
605
+ "items": {
606
+ "$ref": "#/components/schemas/sanityCreateEmployeeCliftonStrengthsInner"
607
+ }
608
+ },
609
+ "innovativeSalary": {
610
+ "type": "boolean",
611
+ "nullable": true
612
+ },
613
+ "innovativeSalaryPercentage": {
614
+ "type": "number",
615
+ "format": "double",
616
+ "nullable": true
617
+ },
618
+ "coinbaseAccountEmail": {
619
+ "type": "string"
620
+ },
621
+ "appRedemptionCode": {
622
+ "type": "string"
623
+ },
624
+ "boardMember": {
625
+ "type": "boolean",
626
+ "nullable": true
627
+ },
628
+ "commissionTier": {
629
+ "$ref": "#/components/schemas/commissionTierReference"
630
+ },
631
+ "additionalProperties": {
632
+ "type": "object",
633
+ "additionalProperties": {
634
+ "type": "object"
635
+ }
636
+ }
637
+ }
638
+ },
639
+ "protectedEmployee": {
640
+ "type": "object",
641
+ "properties": {
642
+ "started": {
643
+ "type": "boolean",
644
+ "nullable": true
645
+ },
646
+ "maritalStatus": {
647
+ "enum": [
648
+ "cohabitant",
649
+ "married",
650
+ "single"
651
+ ],
652
+ "type": "string",
653
+ "default": "cohabitant",
654
+ "nullable": true
655
+ },
656
+ "gender": {
657
+ "enum": [
658
+ "female",
659
+ "male",
660
+ "These are not the genders you are looking for"
661
+ ],
662
+ "type": "string",
663
+ "default": "female"
664
+ },
665
+ "sanityType": {
666
+ "enum": [
667
+ "employee"
668
+ ],
669
+ "type": "string",
670
+ "default": "employee"
671
+ },
672
+ "commissionTier": {
673
+ "$ref": "#/components/schemas/sanityEmployeeCommissionTier"
674
+ },
675
+ "boardMember": {
676
+ "type": "boolean"
677
+ },
678
+ "appRedemptionCode": {
679
+ "type": "string"
680
+ },
681
+ "coinbaseAccountEmail": {
682
+ "type": "string"
683
+ },
684
+ "innovativeSalaryPercentage": {
685
+ "type": "number",
686
+ "format": "double"
687
+ },
688
+ "innovativeSalary": {
689
+ "type": "boolean"
690
+ },
691
+ "cliftonStrengths": {
692
+ "type": "array",
693
+ "items": {
694
+ "$ref": "#/components/schemas/sanityEmployeeCliftonStrengthsInner"
695
+ }
696
+ },
697
+ "media": {
698
+ "type": "array",
699
+ "items": {
700
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInner"
701
+ }
702
+ },
703
+ "equipment": {
704
+ "type": "array",
705
+ "items": {
706
+ "$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
707
+ }
708
+ },
709
+ "groups": {
710
+ "type": "array",
711
+ "items": {
712
+ "$ref": "#/components/schemas/sanityEmployeeGroupsInner"
713
+ }
714
+ },
715
+ "satisfaction": {
716
+ "type": "number",
717
+ "format": "double"
718
+ },
719
+ "about": {
720
+ "type": "string"
721
+ },
722
+ "education": {
723
+ "type": "string"
724
+ },
725
+ "position": {
726
+ "type": "string"
727
+ },
728
+ "nrOfChildren": {
729
+ "type": "number",
730
+ "format": "double"
731
+ },
732
+ "nextOfKin": {
733
+ "type": "array",
734
+ "items": {
735
+ "$ref": "#/components/schemas/sanityEmployeeNextOfKinInner"
736
+ }
737
+ },
738
+ "allergies": {
739
+ "type": "array",
740
+ "items": {
741
+ "type": "string"
742
+ }
743
+ },
744
+ "graduationYear": {
745
+ "type": "number",
746
+ "format": "double"
747
+ },
748
+ "email": {
749
+ "type": "string"
750
+ },
751
+ "telephone": {
752
+ "type": "string"
753
+ },
754
+ "blurred_image": {
755
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
756
+ },
757
+ "image": {
758
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
759
+ },
760
+ "technologies": {
761
+ "type": "array",
762
+ "items": {
763
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInner"
764
+ }
765
+ },
766
+ "tags": {
767
+ "type": "array",
768
+ "items": {
769
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
770
+ }
771
+ },
772
+ "start_date": {
773
+ "type": "string"
774
+ },
775
+ "birth_date": {
776
+ "type": "string"
777
+ },
778
+ "address": {
779
+ "type": "string"
780
+ },
781
+ "manager": {
782
+ "$ref": "#/components/schemas/sanityEmployeeManager"
783
+ },
784
+ "slug": {
785
+ "$ref": "#/components/schemas/slug"
786
+ },
787
+ "name": {
788
+ "type": "string"
789
+ },
790
+ "active": {
791
+ "type": "boolean"
792
+ },
793
+ "sanityRev": {
794
+ "type": "string"
795
+ },
796
+ "sanityUpdatedAt": {
797
+ "type": "string"
798
+ },
799
+ "sanityCreatedAt": {
800
+ "type": "string"
801
+ },
802
+ "sanityId": {
803
+ "type": "string"
804
+ }
805
+ }
806
+ },
807
+ "publicEmployee": {
808
+ "type": "object",
809
+ "properties": {
810
+ "sanityId": {
811
+ "type": "string"
812
+ },
813
+ "sanityType": {
814
+ "type": "string"
815
+ },
816
+ "active": {
817
+ "type": "boolean",
818
+ "nullable": true
819
+ },
820
+ "image": {
821
+ "$ref": "#/components/schemas/sanityImage"
822
+ },
823
+ "tags": {
824
+ "type": "array",
825
+ "items": {
826
+ "$ref": "#/components/schemas/tag"
827
+ }
828
+ },
829
+ "technologies": {
830
+ "type": "array",
831
+ "items": {
832
+ "$ref": "#/components/schemas/technology"
833
+ }
834
+ },
835
+ "started": {
836
+ "type": "boolean"
837
+ },
838
+ "media": {
839
+ "type": "array",
840
+ "items": {
841
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInner"
842
+ }
843
+ },
844
+ "name": {
845
+ "type": "string"
846
+ },
847
+ "slug": {
848
+ "$ref": "#/components/schemas/slug"
849
+ },
850
+ "gender": {
851
+ "type": "string"
852
+ },
853
+ "email": {
854
+ "type": "string"
855
+ },
856
+ "telephone": {
857
+ "type": "string"
858
+ },
859
+ "position": {
860
+ "type": "string"
861
+ },
862
+ "education": {
863
+ "type": "string"
864
+ },
865
+ "about": {
866
+ "type": "string"
867
+ },
868
+ "birthDate": {
869
+ "type": "string",
870
+ "format": "date-time",
871
+ "nullable": true
872
+ },
873
+ "startDate": {
874
+ "type": "string"
875
+ },
876
+ "appRedemptionCode": {
877
+ "type": "string"
878
+ }
879
+ }
880
+ },
881
+ "sanityAssetSourceData": {
882
+ "type": "object",
883
+ "properties": {
884
+ "sanityType": {
885
+ "enum": [
886
+ "sanity.assetSourceData"
887
+ ],
888
+ "type": "string",
889
+ "default": "sanity.assetSourceData"
890
+ },
891
+ "url": {
892
+ "type": "string"
893
+ },
894
+ "id": {
895
+ "type": "string"
896
+ },
897
+ "name": {
898
+ "type": "string"
899
+ }
900
+ }
901
+ },
902
+ "sanityCreateEmployeeCliftonStrengthsInner": {
903
+ "type": "object",
904
+ "properties": {
905
+ "sanityType": {
906
+ "enum": [
907
+ "reference"
908
+ ],
909
+ "type": "string",
910
+ "default": "reference"
911
+ },
912
+ "sanityWeak": {
913
+ "type": "boolean"
914
+ },
915
+ "sanityRef": {
916
+ "type": "string"
917
+ },
918
+ "sanityKey": {
919
+ "type": "string"
920
+ }
921
+ }
922
+ },
923
+ "sanityCreateEmployeeEquipmentInner": {
924
+ "type": "object",
925
+ "properties": {
926
+ "sanityType": {
927
+ "enum": [
928
+ "reference"
929
+ ],
930
+ "type": "string",
931
+ "default": "reference"
932
+ },
933
+ "sanityWeak": {
934
+ "type": "boolean"
935
+ },
936
+ "sanityRef": {
937
+ "type": "string"
938
+ },
939
+ "sanityKey": {
940
+ "type": "string"
941
+ }
942
+ }
943
+ },
944
+ "sanityCreateEmployeeGroupsInner": {
945
+ "type": "object",
946
+ "properties": {
947
+ "sanityType": {
948
+ "enum": [
949
+ "reference"
950
+ ],
951
+ "type": "string",
952
+ "default": "reference"
953
+ },
954
+ "sanityWeak": {
955
+ "type": "boolean"
956
+ },
957
+ "sanityRef": {
958
+ "type": "string"
959
+ },
960
+ "sanityKey": {
961
+ "type": "string"
962
+ }
963
+ }
964
+ },
965
+ "sanityCreateEmployeeTagsInner": {
966
+ "type": "object",
967
+ "properties": {
968
+ "sanityType": {
969
+ "enum": [
970
+ "reference"
971
+ ],
972
+ "type": "string",
973
+ "default": "reference"
974
+ },
975
+ "sanityWeak": {
976
+ "type": "boolean"
977
+ },
978
+ "sanityRef": {
979
+ "type": "string"
980
+ },
981
+ "sanityKey": {
982
+ "type": "string"
983
+ }
984
+ }
985
+ },
986
+ "sanityCreateEmployeeTechnologiesInner": {
987
+ "type": "object",
988
+ "properties": {
989
+ "sanityType": {
990
+ "enum": [
991
+ "reference"
992
+ ],
993
+ "type": "string",
994
+ "default": "reference"
995
+ },
996
+ "sanityWeak": {
997
+ "type": "boolean"
998
+ },
999
+ "sanityRef": {
1000
+ "type": "string"
1001
+ },
1002
+ "sanityKey": {
1003
+ "type": "string"
1004
+ }
1005
+ }
1006
+ },
1007
+ "sanityEmployeeCliftonStrengthsInner": {
1008
+ "type": "object",
1009
+ "properties": {
1010
+ "domain": {
1011
+ "enum": [
1012
+ "executing",
1013
+ "influencing",
1014
+ "relationship_building",
1015
+ "strategic_thinking"
1016
+ ],
1017
+ "type": "string",
1018
+ "default": "executing",
1019
+ "nullable": true
1020
+ },
1021
+ "sanityType": {
1022
+ "enum": [
1023
+ "cliftonStrength"
1024
+ ],
1025
+ "type": "string",
1026
+ "default": "cliftonStrength"
1027
+ },
1028
+ "strength": {
1029
+ "type": "string"
1030
+ },
1031
+ "sanityRev": {
1032
+ "type": "string"
1033
+ },
1034
+ "sanityUpdatedAt": {
1035
+ "type": "string"
1036
+ },
1037
+ "sanityCreatedAt": {
1038
+ "type": "string"
1039
+ },
1040
+ "sanityId": {
1041
+ "type": "string"
1042
+ }
1043
+ }
1044
+ },
1045
+ "sanityEmployeeCommissionTier": {
1046
+ "type": "object",
1047
+ "properties": {
1048
+ "sanityType": {
1049
+ "enum": [
1050
+ "commissionTier"
1051
+ ],
1052
+ "type": "string",
1053
+ "default": "commissionTier"
1054
+ },
1055
+ "commission": {
1056
+ "type": "number",
1057
+ "format": "double"
1058
+ },
1059
+ "title": {
1060
+ "type": "string"
1061
+ },
1062
+ "sanityRev": {
1063
+ "type": "string"
1064
+ },
1065
+ "sanityUpdatedAt": {
1066
+ "type": "string"
1067
+ },
1068
+ "sanityCreatedAt": {
1069
+ "type": "string"
1070
+ },
1071
+ "sanityId": {
1072
+ "type": "string"
1073
+ }
1074
+ }
1075
+ },
1076
+ "sanityEmployeeEquipmentInner": {
1077
+ "type": "object",
1078
+ "properties": {
1079
+ "sanityType": {
1080
+ "enum": [
1081
+ "equipment"
1082
+ ],
1083
+ "type": "string",
1084
+ "default": "equipment"
1085
+ },
1086
+ "images": {
1087
+ "type": "array",
1088
+ "items": {
1089
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1090
+ }
1091
+ },
1092
+ "image": {
1093
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
1094
+ },
1095
+ "description": {
1096
+ "type": "array",
1097
+ "items": {
1098
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
1099
+ }
1100
+ },
1101
+ "title": {
1102
+ "type": "string"
1103
+ },
1104
+ "sanityId": {
1105
+ "type": "string"
1106
+ }
1107
+ }
1108
+ },
1109
+ "sanityEmployeeGroupsInner": {
1110
+ "type": "object",
1111
+ "properties": {
1112
+ "sanityType": {
1113
+ "enum": [
1114
+ "group"
1115
+ ],
1116
+ "type": "string",
1117
+ "default": "group"
1118
+ },
1119
+ "image": {
1120
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1121
+ },
1122
+ "leaders": {
1123
+ "type": "array",
1124
+ "items": {
1125
+ "$ref": "#/components/schemas/sanityEmployeeGroupsInnerLeadersInner"
1126
+ }
1127
+ },
1128
+ "description": {
1129
+ "type": "array",
1130
+ "items": {
1131
+ "$ref": "#/components/schemas/sanitySystemsInnerDescriptionInner"
1132
+ }
1133
+ },
1134
+ "name": {
1135
+ "type": "string"
1136
+ },
1137
+ "sanityRev": {
1138
+ "type": "string"
1139
+ },
1140
+ "sanityUpdatedAt": {
1141
+ "type": "string"
1142
+ },
1143
+ "sanityCreatedAt": {
1144
+ "type": "string"
1145
+ },
1146
+ "sanityId": {
1147
+ "type": "string"
1148
+ }
1149
+ }
1150
+ },
1151
+ "sanityEmployeeGroupsInnerLeadersInner": {
1152
+ "type": "object",
1153
+ "properties": {
1154
+ "sanityType": {
1155
+ "enum": [
1156
+ "reference"
1157
+ ],
1158
+ "type": "string",
1159
+ "default": "reference"
1160
+ },
1161
+ "sanityWeak": {
1162
+ "type": "boolean"
1163
+ },
1164
+ "sanityRef": {
1165
+ "type": "string"
1166
+ },
1167
+ "sanityKey": {
1168
+ "type": "string"
1169
+ }
1170
+ }
1171
+ },
1172
+ "sanityEmployeeManager": {
1173
+ "type": "object",
1174
+ "properties": {
1175
+ "sanityType": {
1176
+ "enum": [
1177
+ "employee"
1178
+ ],
1179
+ "type": "string",
1180
+ "default": "employee"
1181
+ },
1182
+ "tags": {
1183
+ "type": "array",
1184
+ "items": {
1185
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
1186
+ }
1187
+ },
1188
+ "image": {
1189
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1190
+ },
1191
+ "slug": {
1192
+ "$ref": "#/components/schemas/slug"
1193
+ },
1194
+ "email": {
1195
+ "type": "string"
1196
+ },
1197
+ "telephone": {
1198
+ "type": "string"
1199
+ },
1200
+ "name": {
1201
+ "type": "string"
1202
+ },
1203
+ "sanityId": {
1204
+ "type": "string"
1205
+ }
1206
+ }
1207
+ },
1208
+ "sanityEmployeeNextOfKinInner": {
1209
+ "type": "object",
1210
+ "properties": {
1211
+ "sanityType": {
1212
+ "enum": [
1213
+ "nextofkin"
1214
+ ],
1215
+ "type": "string",
1216
+ "default": "nextofkin"
1217
+ },
1218
+ "sanityKey": {
1219
+ "type": "string"
1220
+ },
1221
+ "telephone": {
1222
+ "type": "string"
1223
+ },
1224
+ "name": {
1225
+ "type": "string"
1226
+ }
1227
+ }
1228
+ },
1229
+ "sanityGadgetBudgetYearlyBudgetsInner": {
1230
+ "type": "object",
1231
+ "properties": {
1232
+ "sanityType": {
1233
+ "enum": [
1234
+ "yearlyBudget"
1235
+ ],
1236
+ "type": "string",
1237
+ "default": "yearlyBudget"
1238
+ },
1239
+ "sanityKey": {
1240
+ "type": "string"
1241
+ },
1242
+ "equipmentList": {
1243
+ "type": "array",
1244
+ "items": {
1245
+ "$ref": "#/components/schemas/sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInner"
1246
+ }
1247
+ },
1248
+ "amount": {
1249
+ "type": "number",
1250
+ "format": "double"
1251
+ },
1252
+ "year": {
1253
+ "type": "number",
1254
+ "format": "double"
1255
+ }
1256
+ }
1257
+ },
1258
+ "sanityGadgetBudgetYearlyBudgetsInnerEquipmentListInner": {
1259
+ "type": "object",
1260
+ "properties": {
1261
+ "actualInstance": {
1262
+ "type": "object"
1263
+ },
1264
+ "isNullable": {
1265
+ "type": "boolean"
1266
+ },
1267
+ "schemaType": {
1268
+ "type": "string"
1269
+ }
1270
+ }
1271
+ },
1272
+ "sanityImage": {
1273
+ "type": "object",
1274
+ "properties": {
1275
+ "sanityType": {
1276
+ "enum": [
1277
+ "image"
1278
+ ],
1279
+ "type": "string",
1280
+ "default": "image"
1281
+ },
1282
+ "sanityKey": {
1283
+ "type": "string"
1284
+ },
1285
+ "sanityId": {
1286
+ "type": "string"
1287
+ },
1288
+ "asset": {
1289
+ "$ref": "#/components/schemas/sanityImageAsset"
1290
+ },
1291
+ "additionalProperties": {
1292
+ "type": "object",
1293
+ "additionalProperties": {
1294
+ "type": "object"
1295
+ }
1296
+ }
1297
+ }
1298
+ },
1299
+ "sanityImageAsset": {
1300
+ "type": "object",
1301
+ "properties": {
1302
+ "sanityType": {
1303
+ "enum": [
1304
+ "sanity.imageAsset"
1305
+ ],
1306
+ "type": "string",
1307
+ "default": "sanity.imageAsset"
1308
+ },
1309
+ "sanityId": {
1310
+ "type": "string"
1311
+ },
1312
+ "sanityCreatedAt": {
1313
+ "type": "string"
1314
+ },
1315
+ "sanityUpdatedAt": {
1316
+ "type": "string"
1317
+ },
1318
+ "sanityRev": {
1319
+ "type": "string"
1320
+ },
1321
+ "originalFilename": {
1322
+ "type": "string"
1323
+ },
1324
+ "label": {
1325
+ "type": "string"
1326
+ },
1327
+ "title": {
1328
+ "type": "string"
1329
+ },
1330
+ "description": {
1331
+ "type": "string"
1332
+ },
1333
+ "altText": {
1334
+ "type": "string"
1335
+ },
1336
+ "sha1hash": {
1337
+ "type": "string"
1338
+ },
1339
+ "extension": {
1340
+ "type": "string"
1341
+ },
1342
+ "mimeType": {
1343
+ "type": "string"
1344
+ },
1345
+ "size": {
1346
+ "type": "number",
1347
+ "format": "double"
1348
+ },
1349
+ "assetId": {
1350
+ "type": "string"
1351
+ },
1352
+ "uploadId": {
1353
+ "type": "string"
1354
+ },
1355
+ "path": {
1356
+ "type": "string"
1357
+ },
1358
+ "url": {
1359
+ "type": "string"
1360
+ },
1361
+ "metadata": {
1362
+ "$ref": "#/components/schemas/sanityImageMetadata"
1363
+ },
1364
+ "source": {
1365
+ "$ref": "#/components/schemas/sanityAssetSourceData"
1366
+ },
1367
+ "additionalProperties": {
1368
+ "type": "object",
1369
+ "additionalProperties": {
1370
+ "type": "object"
1371
+ }
1372
+ }
1373
+ }
1374
+ },
1375
+ "sanityImageAssetReference": {
1376
+ "type": "object",
1377
+ "properties": {
1378
+ "sanityType": {
1379
+ "enum": [
1380
+ "reference"
1381
+ ],
1382
+ "type": "string",
1383
+ "default": "reference"
1384
+ },
1385
+ "sanityWeak": {
1386
+ "type": "boolean"
1387
+ },
1388
+ "sanityRef": {
1389
+ "type": "string"
1390
+ }
1391
+ }
1392
+ },
1393
+ "sanityImageCrop": {
1394
+ "type": "object",
1395
+ "properties": {
1396
+ "sanityType": {
1397
+ "enum": [
1398
+ "sanity.imageCrop"
1399
+ ],
1400
+ "type": "string",
1401
+ "default": "sanity.imageCrop"
1402
+ },
1403
+ "right": {
1404
+ "type": "number",
1405
+ "format": "double"
1406
+ },
1407
+ "left": {
1408
+ "type": "number",
1409
+ "format": "double"
1410
+ },
1411
+ "bottom": {
1412
+ "type": "number",
1413
+ "format": "double"
1414
+ },
1415
+ "top": {
1416
+ "type": "number",
1417
+ "format": "double"
1418
+ }
1419
+ }
1420
+ },
1421
+ "sanityImageDimensions": {
1422
+ "type": "object",
1423
+ "properties": {
1424
+ "sanityType": {
1425
+ "enum": [
1426
+ "sanity.imageDimensions"
1427
+ ],
1428
+ "type": "string",
1429
+ "default": "sanity.imageDimensions"
1430
+ },
1431
+ "aspectRatio": {
1432
+ "type": "number",
1433
+ "format": "double"
1434
+ },
1435
+ "width": {
1436
+ "type": "number",
1437
+ "format": "double"
1438
+ },
1439
+ "height": {
1440
+ "type": "number",
1441
+ "format": "double"
1442
+ }
1443
+ }
1444
+ },
1445
+ "sanityImageHotspot": {
1446
+ "type": "object",
1447
+ "properties": {
1448
+ "sanityType": {
1449
+ "enum": [
1450
+ "sanity.imageHotspot"
1451
+ ],
1452
+ "type": "string",
1453
+ "default": "sanity.imageHotspot"
1454
+ },
1455
+ "width": {
1456
+ "type": "number",
1457
+ "format": "double"
1458
+ },
1459
+ "height": {
1460
+ "type": "number",
1461
+ "format": "double"
1462
+ },
1463
+ "y": {
1464
+ "type": "number",
1465
+ "format": "double"
1466
+ },
1467
+ "x": {
1468
+ "type": "number",
1469
+ "format": "double"
1470
+ }
1471
+ }
1472
+ },
1473
+ "sanityImageMetadata": {
1474
+ "type": "object",
1475
+ "properties": {
1476
+ "sanityType": {
1477
+ "enum": [
1478
+ "sanity.imageMetadata"
1479
+ ],
1480
+ "type": "string",
1481
+ "default": "sanity.imageMetadata"
1482
+ },
1483
+ "isOpaque": {
1484
+ "type": "boolean"
1485
+ },
1486
+ "hasAlpha": {
1487
+ "type": "boolean"
1488
+ },
1489
+ "thumbHash": {
1490
+ "type": "string"
1491
+ },
1492
+ "blurHash": {
1493
+ "type": "string"
1494
+ },
1495
+ "lqip": {
1496
+ "type": "string"
1497
+ },
1498
+ "palette": {
1499
+ "$ref": "#/components/schemas/sanityImagePalette"
1500
+ },
1501
+ "dimensions": {
1502
+ "$ref": "#/components/schemas/sanityImageDimensions"
1503
+ },
1504
+ "location": {
1505
+ "$ref": "#/components/schemas/geopoint"
1506
+ }
1507
+ }
1508
+ },
1509
+ "sanityImagePalette": {
1510
+ "type": "object",
1511
+ "properties": {
1512
+ "sanityType": {
1513
+ "enum": [
1514
+ "sanity.imagePalette"
1515
+ ],
1516
+ "type": "string",
1517
+ "default": "sanity.imagePalette"
1518
+ },
1519
+ "muted": {
1520
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
1521
+ },
1522
+ "lightMuted": {
1523
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
1524
+ },
1525
+ "dominant": {
1526
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
1527
+ },
1528
+ "vibrant": {
1529
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
1530
+ },
1531
+ "darkVibrant": {
1532
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
1533
+ },
1534
+ "lightVibrant": {
1535
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
1536
+ },
1537
+ "darkMuted": {
1538
+ "$ref": "#/components/schemas/sanityImagePaletteSwatch"
1539
+ }
1540
+ }
1541
+ },
1542
+ "sanityImagePaletteSwatch": {
1543
+ "type": "object",
1544
+ "properties": {
1545
+ "sanityType": {
1546
+ "enum": [
1547
+ "sanity.imagePaletteSwatch"
1548
+ ],
1549
+ "type": "string",
1550
+ "default": "sanity.imagePaletteSwatch"
1551
+ },
1552
+ "title": {
1553
+ "type": "string"
1554
+ },
1555
+ "population": {
1556
+ "type": "number",
1557
+ "format": "double"
1558
+ },
1559
+ "foreground": {
1560
+ "type": "string"
1561
+ },
1562
+ "background": {
1563
+ "type": "string"
1564
+ }
1565
+ }
1566
+ },
1567
+ "sanityOrderEmployee": {
1568
+ "type": "object",
1569
+ "properties": {
1570
+ "sanityType": {
1571
+ "enum": [
1572
+ "employee"
1573
+ ],
1574
+ "type": "string",
1575
+ "default": "employee"
1576
+ },
1577
+ "tags": {
1578
+ "type": "array",
1579
+ "items": {
1580
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
1581
+ }
1582
+ },
1583
+ "image": {
1584
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
1585
+ },
1586
+ "slug": {
1587
+ "$ref": "#/components/schemas/slug"
1588
+ },
1589
+ "email": {
1590
+ "type": "string"
1591
+ },
1592
+ "telephone": {
1593
+ "type": "string"
1594
+ },
1595
+ "name": {
1596
+ "type": "string"
1597
+ },
1598
+ "sanityId": {
1599
+ "type": "string"
1600
+ }
1601
+ }
1602
+ },
1603
+ "sanityPatchOkrIcon": {
1604
+ "type": "object",
1605
+ "properties": {
1606
+ "sanityType": {
1607
+ "enum": [
1608
+ "image"
1609
+ ],
1610
+ "type": "string",
1611
+ "default": "image"
1612
+ },
1613
+ "crop": {
1614
+ "$ref": "#/components/schemas/sanityImageCrop"
1615
+ },
1616
+ "hotspot": {
1617
+ "$ref": "#/components/schemas/sanityImageHotspot"
1618
+ },
1619
+ "media": {
1620
+ "type": "object"
1621
+ },
1622
+ "asset": {
1623
+ "$ref": "#/components/schemas/sanityImageAssetReference"
1624
+ }
1625
+ }
1626
+ },
1627
+ "sanitySystemsInnerDescriptionInner": {
1628
+ "type": "object",
1629
+ "properties": {
1630
+ "sanityType": {
1631
+ "enum": [
1632
+ "block"
1633
+ ],
1634
+ "type": "string",
1635
+ "default": "block"
1636
+ },
1637
+ "listItem": {
1638
+ "enum": [
1639
+ "bullet",
1640
+ "number"
1641
+ ],
1642
+ "type": "string",
1643
+ "default": "bullet",
1644
+ "nullable": true
1645
+ },
1646
+ "style": {
1647
+ "enum": [
1648
+ "blockquote",
1649
+ "h1",
1650
+ "h2",
1651
+ "h3",
1652
+ "h4",
1653
+ "h5",
1654
+ "h6",
1655
+ "normal"
1656
+ ],
1657
+ "type": "string",
1658
+ "default": "blockquote",
1659
+ "nullable": true
1660
+ },
1661
+ "sanityKey": {
1662
+ "type": "string"
1663
+ },
1664
+ "level": {
1665
+ "type": "number",
1666
+ "format": "double"
1667
+ },
1668
+ "markDefs": {
1669
+ "type": "array",
1670
+ "items": {
1671
+ "$ref": "#/components/schemas/componentBlocksInnerOneOfMarkDefsInner"
1672
+ }
1673
+ },
1674
+ "children": {
1675
+ "type": "array",
1676
+ "items": {
1677
+ "$ref": "#/components/schemas/componentBlocksInnerOneOfChildrenInner"
1678
+ }
1679
+ }
1680
+ }
1681
+ },
1682
+ "sanityTechnologyWithRelationsProjectsInnerTechnologiesInner": {
1683
+ "type": "object",
1684
+ "properties": {
1685
+ "sanityType": {
1686
+ "enum": [
1687
+ "technology"
1688
+ ],
1689
+ "type": "string",
1690
+ "default": "technology"
1691
+ },
1692
+ "parent": {
1693
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
1694
+ },
1695
+ "slug": {
1696
+ "$ref": "#/components/schemas/slug"
1697
+ },
1698
+ "title": {
1699
+ "type": "string"
1700
+ },
1701
+ "sanityId": {
1702
+ "type": "string"
1703
+ }
1704
+ }
1705
+ },
1706
+ "sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent": {
1707
+ "type": "object",
1708
+ "properties": {
1709
+ "sanityType": {
1710
+ "enum": [
1711
+ "tag"
1712
+ ],
1713
+ "type": "string",
1714
+ "default": "tag"
1715
+ },
1716
+ "slug": {
1717
+ "$ref": "#/components/schemas/slug"
1718
+ },
1719
+ "name": {
1720
+ "type": "string"
1721
+ },
1722
+ "sanityId": {
1723
+ "type": "string"
1724
+ }
1725
+ }
1726
+ },
1727
+ "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInner": {
1728
+ "type": "object",
1729
+ "properties": {
1730
+ "actualInstance": {
1731
+ "type": "object"
1732
+ },
1733
+ "isNullable": {
1734
+ "type": "boolean"
1735
+ },
1736
+ "schemaType": {
1737
+ "type": "string"
1738
+ }
1739
+ }
1740
+ },
1741
+ "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo": {
1742
+ "type": "object",
1743
+ "properties": {
1744
+ "sanityType": {
1745
+ "enum": [
1746
+ "image"
1747
+ ],
1748
+ "type": "string",
1749
+ "default": "image"
1750
+ },
1751
+ "asset": {
1752
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
1753
+ }
1754
+ }
1755
+ },
1756
+ "sanityTvCategoryDashboardsInnerBackgroundImage": {
1757
+ "type": "object",
1758
+ "properties": {
1759
+ "sanityType": {
1760
+ "enum": [
1761
+ "image"
1762
+ ],
1763
+ "type": "string",
1764
+ "default": "image"
1765
+ },
1766
+ "asset": {
1767
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
1768
+ }
1769
+ }
1770
+ },
1771
+ "sanityTvCategoryDashboardsInnerBackgroundImageAsset": {
1772
+ "type": "object",
1773
+ "properties": {
1774
+ "sanityType": {
1775
+ "enum": [
1776
+ "sanity.imageAsset"
1777
+ ],
1778
+ "type": "string",
1779
+ "default": "sanity.imageAsset"
1780
+ },
1781
+ "mimeType": {
1782
+ "type": "string"
1783
+ },
1784
+ "originalFilename": {
1785
+ "type": "string"
1786
+ },
1787
+ "url": {
1788
+ "type": "string"
1789
+ },
1790
+ "sanityId": {
1791
+ "type": "string"
1792
+ }
1793
+ }
1794
+ },
1795
+ "slug": {
1796
+ "type": "object",
1797
+ "properties": {
1798
+ "sanityType": {
1799
+ "enum": [
1800
+ "slug"
1801
+ ],
1802
+ "type": "string",
1803
+ "default": "slug"
1804
+ },
1805
+ "source": {
1806
+ "type": "string"
1807
+ },
1808
+ "current": {
1809
+ "type": "string"
1810
+ }
1811
+ }
1812
+ },
1813
+ "tag": {
1814
+ "type": "object",
1815
+ "properties": {
1816
+ "sanityId": {
1817
+ "type": "string"
1818
+ },
1819
+ "sanityType": {
1820
+ "type": "string"
1821
+ },
1822
+ "name": {
1823
+ "type": "string"
1824
+ },
1825
+ "slug": {
1826
+ "$ref": "#/components/schemas/slug"
1827
+ }
1828
+ }
1829
+ },
1830
+ "technology": {
1831
+ "type": "object",
1832
+ "properties": {
1833
+ "sanityId": {
1834
+ "type": "string"
1835
+ },
1836
+ "sanityType": {
1837
+ "type": "string"
1838
+ },
1839
+ "name": {
1840
+ "type": "string"
1841
+ },
1842
+ "slug": {
1843
+ "$ref": "#/components/schemas/slug"
1844
+ },
1845
+ "parent": {
1846
+ "$ref": "#/components/schemas/tag"
1847
+ }
1848
+ }
1849
+ }
1850
+ },
1851
+ "securitySchemes": {
1852
+ "Implicit": {
1853
+ "type": "oauth2",
1854
+ "flows": {
1855
+ "implicit": {
1856
+ "authorizationUrl": "https://login.microsoftonline.com/a8533784-aa3c-403b-a61a-1533ecc6e3ed/oauth2/v2.0/authorize",
1857
+ "tokenUrl": "https://login.microsoftonline.com/a8533784-aa3c-403b-a61a-1533ecc6e3ed/oauth2/v2.0/token",
1858
+ "refreshUrl": "https://login.microsoftonline.com/a8533784-aa3c-403b-a61a-1533ecc6e3ed/oauth2/v2.0/token",
1859
+ "scopes": {
1860
+ "api://0ea58964-d892-4c79-a404-de76df0c45e6/user_impersonation": "Default function scope"
1861
+ }
1862
+ }
1863
+ }
1864
+ }
1865
+ }
1866
+ }
1867
+ }