@snokam/mcp-api 0.12.0 → 0.14.0

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