@snokam/mcp-api 2.31.0 → 2.31.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.
@@ -34,6 +34,180 @@
34
34
  }
35
35
  }
36
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/getArticlesBySlugOrIdResult"
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://e60092d3-3970-4a7c-a62e-19f17c4bca08/.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/getArticlesBySlugOrIdResult"
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://e60092d3-3970-4a7c-a62e-19f17c4bca08/.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/getArticlesBySlugOrIdResult"
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://e60092d3-3970-4a7c-a62e-19f17c4bca08/.default"
206
+ ]
207
+ }
208
+ ]
209
+ }
210
+ },
37
211
  "/v1.0/protected/{slugOrId}/article-invitation-preview": {
38
212
  "get": {
39
213
  "tags": [
@@ -167,6 +341,732 @@
167
341
  }
168
342
  }
169
343
  }
344
+ },
345
+ "articleSeriesReference": {
346
+ "type": "object",
347
+ "properties": {
348
+ "sanityType": {
349
+ "enum": [
350
+ "reference"
351
+ ],
352
+ "type": "string",
353
+ "default": "reference"
354
+ },
355
+ "sanityRef": {
356
+ "type": "string"
357
+ },
358
+ "sanityWeak": {
359
+ "type": "boolean"
360
+ }
361
+ }
362
+ },
363
+ "componentBlocksInner": {
364
+ "type": "object",
365
+ "properties": {
366
+ "actualInstance": {
367
+ "type": "object"
368
+ },
369
+ "isNullable": {
370
+ "type": "boolean"
371
+ },
372
+ "schemaType": {
373
+ "type": "string"
374
+ }
375
+ }
376
+ },
377
+ "componentMedia": {
378
+ "type": "object",
379
+ "properties": {
380
+ "sanityType": {
381
+ "enum": [
382
+ "component.media"
383
+ ],
384
+ "type": "string",
385
+ "default": "component.media"
386
+ },
387
+ "type": {
388
+ "enum": [
389
+ "image",
390
+ "video"
391
+ ],
392
+ "type": "string",
393
+ "default": "image"
394
+ },
395
+ "image": {
396
+ "$ref": "#/components/schemas/componentMediaImage"
397
+ },
398
+ "video": {
399
+ "$ref": "#/components/schemas/muxVideo"
400
+ }
401
+ }
402
+ },
403
+ "componentMediaImage": {
404
+ "type": "object",
405
+ "properties": {
406
+ "sanityType": {
407
+ "enum": [
408
+ "image"
409
+ ],
410
+ "type": "string",
411
+ "default": "image"
412
+ },
413
+ "asset": {
414
+ "$ref": "#/components/schemas/sanityImageAssetReference"
415
+ },
416
+ "crop": {
417
+ "$ref": "#/components/schemas/sanityImageCrop"
418
+ },
419
+ "hotspot": {
420
+ "$ref": "#/components/schemas/sanityImageHotspot"
421
+ },
422
+ "media": {
423
+ "type": "object"
424
+ }
425
+ }
426
+ },
427
+ "customerReference": {
428
+ "type": "object",
429
+ "properties": {
430
+ "sanityType": {
431
+ "enum": [
432
+ "reference"
433
+ ],
434
+ "type": "string",
435
+ "default": "reference"
436
+ },
437
+ "sanityRef": {
438
+ "type": "string"
439
+ },
440
+ "sanityWeak": {
441
+ "type": "boolean"
442
+ }
443
+ }
444
+ },
445
+ "getArticlesBySlugOrIdResult": {
446
+ "type": "object",
447
+ "properties": {
448
+ "sanityType": {
449
+ "enum": [
450
+ "article"
451
+ ],
452
+ "type": "string",
453
+ "default": "article"
454
+ },
455
+ "active": {
456
+ "type": "boolean"
457
+ },
458
+ "articleSeries": {
459
+ "$ref": "#/components/schemas/getArticlesBySlugOrIdResultArticleSeries"
460
+ },
461
+ "authors": {
462
+ "type": "array",
463
+ "items": {
464
+ "$ref": "#/components/schemas/sanityOrderEmployee"
465
+ }
466
+ },
467
+ "content": {
468
+ "type": "array",
469
+ "items": {
470
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInner"
471
+ }
472
+ },
473
+ "customer": {
474
+ "$ref": "#/components/schemas/customerReference"
475
+ },
476
+ "live": {
477
+ "type": "string"
478
+ },
479
+ "media": {
480
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsArticlesInnerMedia"
481
+ },
482
+ "metaDescription": {
483
+ "type": "string"
484
+ },
485
+ "nextArticle": {
486
+ "$ref": "#/components/schemas/getArticlesBySlugOrIdResultNextArticle"
487
+ },
488
+ "preview": {
489
+ "type": "string"
490
+ },
491
+ "previousArticle": {
492
+ "$ref": "#/components/schemas/getArticlesBySlugOrIdResultNextArticle"
493
+ },
494
+ "publishedAt": {
495
+ "type": "string"
496
+ },
497
+ "sanityCreatedAt": {
498
+ "type": "string"
499
+ },
500
+ "sanityId": {
501
+ "type": "string"
502
+ },
503
+ "sanityRev": {
504
+ "type": "string"
505
+ },
506
+ "sanityUpdatedAt": {
507
+ "type": "string"
508
+ },
509
+ "slug": {
510
+ "$ref": "#/components/schemas/slug"
511
+ },
512
+ "subscribersNotified": {
513
+ "type": "boolean"
514
+ },
515
+ "technologies": {
516
+ "type": "array",
517
+ "items": {
518
+ "$ref": "#/components/schemas/getArticlesBySlugOrIdResultTechnologiesInner"
519
+ }
520
+ },
521
+ "title": {
522
+ "type": "string"
523
+ }
524
+ }
525
+ },
526
+ "getArticlesBySlugOrIdResultArticleSeries": {
527
+ "type": "object",
528
+ "properties": {
529
+ "sanityType": {
530
+ "enum": [
531
+ "articleSeries"
532
+ ],
533
+ "type": "string",
534
+ "default": "articleSeries"
535
+ },
536
+ "sanityCreatedAt": {
537
+ "type": "string"
538
+ },
539
+ "sanityId": {
540
+ "type": "string"
541
+ },
542
+ "sanityRev": {
543
+ "type": "string"
544
+ },
545
+ "sanityUpdatedAt": {
546
+ "type": "string"
547
+ },
548
+ "slug": {
549
+ "$ref": "#/components/schemas/slug"
550
+ },
551
+ "title": {
552
+ "type": "string"
553
+ }
554
+ }
555
+ },
556
+ "getArticlesBySlugOrIdResultNextArticle": {
557
+ "type": "object",
558
+ "properties": {
559
+ "sanityType": {
560
+ "enum": [
561
+ "article"
562
+ ],
563
+ "type": "string",
564
+ "default": "article"
565
+ },
566
+ "content": {
567
+ "type": "array",
568
+ "items": {
569
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsArticlesInnerContentInner"
570
+ }
571
+ },
572
+ "media": {
573
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsArticlesInnerMedia"
574
+ },
575
+ "sanityId": {
576
+ "type": "string"
577
+ },
578
+ "slug": {
579
+ "$ref": "#/components/schemas/slug"
580
+ },
581
+ "title": {
582
+ "type": "string"
583
+ }
584
+ }
585
+ },
586
+ "getArticlesBySlugOrIdResultTechnologiesInner": {
587
+ "type": "object",
588
+ "properties": {
589
+ "sanityType": {
590
+ "enum": [
591
+ "technology"
592
+ ],
593
+ "type": "string",
594
+ "default": "technology"
595
+ },
596
+ "description": {
597
+ "type": "array",
598
+ "items": {
599
+ "$ref": "#/components/schemas/componentBlocksInner"
600
+ }
601
+ },
602
+ "parent": {
603
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
604
+ },
605
+ "sanityCreatedAt": {
606
+ "type": "string"
607
+ },
608
+ "sanityId": {
609
+ "type": "string"
610
+ },
611
+ "sanityRev": {
612
+ "type": "string"
613
+ },
614
+ "sanityUpdatedAt": {
615
+ "type": "string"
616
+ },
617
+ "slug": {
618
+ "$ref": "#/components/schemas/slug"
619
+ },
620
+ "title": {
621
+ "type": "string"
622
+ }
623
+ }
624
+ },
625
+ "muxVideo": {
626
+ "type": "object",
627
+ "properties": {
628
+ "sanityType": {
629
+ "enum": [
630
+ "mux.video"
631
+ ],
632
+ "type": "string",
633
+ "default": "mux.video"
634
+ },
635
+ "asset": {
636
+ "$ref": "#/components/schemas/muxVideoAssetReference"
637
+ }
638
+ }
639
+ },
640
+ "muxVideoAssetReference": {
641
+ "type": "object",
642
+ "properties": {
643
+ "sanityType": {
644
+ "enum": [
645
+ "reference"
646
+ ],
647
+ "type": "string",
648
+ "default": "reference"
649
+ },
650
+ "sanityRef": {
651
+ "type": "string"
652
+ },
653
+ "sanityWeak": {
654
+ "type": "boolean"
655
+ }
656
+ }
657
+ },
658
+ "pageEmployeeOrderInner": {
659
+ "type": "object",
660
+ "properties": {
661
+ "sanityType": {
662
+ "enum": [
663
+ "reference"
664
+ ],
665
+ "type": "string",
666
+ "default": "reference"
667
+ },
668
+ "sanityKey": {
669
+ "type": "string"
670
+ },
671
+ "sanityRef": {
672
+ "type": "string"
673
+ },
674
+ "sanityWeak": {
675
+ "type": "boolean"
676
+ }
677
+ }
678
+ },
679
+ "sanityCreateArticle": {
680
+ "type": "object",
681
+ "properties": {
682
+ "sanityType": {
683
+ "enum": [
684
+ "article"
685
+ ],
686
+ "type": "string",
687
+ "default": "article"
688
+ },
689
+ "active": {
690
+ "type": "boolean"
691
+ },
692
+ "articleSeries": {
693
+ "$ref": "#/components/schemas/articleSeriesReference"
694
+ },
695
+ "authors": {
696
+ "type": "array",
697
+ "items": {
698
+ "$ref": "#/components/schemas/pageEmployeeOrderInner"
699
+ }
700
+ },
701
+ "content": {
702
+ "type": "array",
703
+ "items": {
704
+ "$ref": "#/components/schemas/componentBlocksInner"
705
+ }
706
+ },
707
+ "customer": {
708
+ "$ref": "#/components/schemas/customerReference"
709
+ },
710
+ "live": {
711
+ "type": "string"
712
+ },
713
+ "media": {
714
+ "$ref": "#/components/schemas/componentMedia"
715
+ },
716
+ "metaDescription": {
717
+ "type": "string"
718
+ },
719
+ "preview": {
720
+ "type": "string"
721
+ },
722
+ "publishedAt": {
723
+ "type": "string"
724
+ },
725
+ "slug": {
726
+ "$ref": "#/components/schemas/slug"
727
+ },
728
+ "subscribersNotified": {
729
+ "type": "boolean"
730
+ },
731
+ "technologies": {
732
+ "type": "array",
733
+ "items": {
734
+ "$ref": "#/components/schemas/sanityCreateEmployeeTechnologiesInner"
735
+ }
736
+ },
737
+ "title": {
738
+ "type": "string"
739
+ },
740
+ "additionalProperties": {
741
+ "type": "object",
742
+ "additionalProperties": {
743
+ "type": "object"
744
+ }
745
+ }
746
+ }
747
+ },
748
+ "sanityCreateEmployeeTechnologiesInner": {
749
+ "type": "object",
750
+ "properties": {
751
+ "sanityType": {
752
+ "enum": [
753
+ "reference"
754
+ ],
755
+ "type": "string",
756
+ "default": "reference"
757
+ },
758
+ "sanityKey": {
759
+ "type": "string"
760
+ },
761
+ "sanityRef": {
762
+ "type": "string"
763
+ },
764
+ "sanityWeak": {
765
+ "type": "boolean"
766
+ }
767
+ }
768
+ },
769
+ "sanityImageAssetReference": {
770
+ "type": "object",
771
+ "properties": {
772
+ "sanityType": {
773
+ "enum": [
774
+ "reference"
775
+ ],
776
+ "type": "string",
777
+ "default": "reference"
778
+ },
779
+ "sanityRef": {
780
+ "type": "string"
781
+ },
782
+ "sanityWeak": {
783
+ "type": "boolean"
784
+ }
785
+ }
786
+ },
787
+ "sanityImageCrop": {
788
+ "type": "object",
789
+ "properties": {
790
+ "sanityType": {
791
+ "enum": [
792
+ "sanity.imageCrop"
793
+ ],
794
+ "type": "string",
795
+ "default": "sanity.imageCrop"
796
+ },
797
+ "bottom": {
798
+ "type": "number",
799
+ "format": "double"
800
+ },
801
+ "left": {
802
+ "type": "number",
803
+ "format": "double"
804
+ },
805
+ "right": {
806
+ "type": "number",
807
+ "format": "double"
808
+ },
809
+ "top": {
810
+ "type": "number",
811
+ "format": "double"
812
+ }
813
+ }
814
+ },
815
+ "sanityImageHotspot": {
816
+ "type": "object",
817
+ "properties": {
818
+ "sanityType": {
819
+ "enum": [
820
+ "sanity.imageHotspot"
821
+ ],
822
+ "type": "string",
823
+ "default": "sanity.imageHotspot"
824
+ },
825
+ "height": {
826
+ "type": "number",
827
+ "format": "double"
828
+ },
829
+ "width": {
830
+ "type": "number",
831
+ "format": "double"
832
+ },
833
+ "x": {
834
+ "type": "number",
835
+ "format": "double"
836
+ },
837
+ "y": {
838
+ "type": "number",
839
+ "format": "double"
840
+ }
841
+ }
842
+ },
843
+ "sanityOrderEmployee": {
844
+ "type": "object",
845
+ "properties": {
846
+ "sanityType": {
847
+ "enum": [
848
+ "employee"
849
+ ],
850
+ "type": "string",
851
+ "default": "employee"
852
+ },
853
+ "email": {
854
+ "type": "string"
855
+ },
856
+ "image": {
857
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
858
+ },
859
+ "name": {
860
+ "type": "string"
861
+ },
862
+ "sanityId": {
863
+ "type": "string"
864
+ },
865
+ "slug": {
866
+ "$ref": "#/components/schemas/slug"
867
+ },
868
+ "tags": {
869
+ "type": "array",
870
+ "items": {
871
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
872
+ }
873
+ },
874
+ "telephone": {
875
+ "type": "string"
876
+ }
877
+ }
878
+ },
879
+ "sanityPatchArticle": {
880
+ "type": "object",
881
+ "properties": {
882
+ "sanityType": {
883
+ "enum": [
884
+ "article"
885
+ ],
886
+ "type": "string",
887
+ "default": "article",
888
+ "nullable": true
889
+ },
890
+ "active": {
891
+ "type": "boolean",
892
+ "nullable": true
893
+ },
894
+ "articleSeries": {
895
+ "$ref": "#/components/schemas/articleSeriesReference"
896
+ },
897
+ "authors": {
898
+ "type": "array",
899
+ "items": {
900
+ "$ref": "#/components/schemas/pageEmployeeOrderInner"
901
+ }
902
+ },
903
+ "content": {
904
+ "type": "array",
905
+ "items": {
906
+ "$ref": "#/components/schemas/componentBlocksInner"
907
+ }
908
+ },
909
+ "customer": {
910
+ "$ref": "#/components/schemas/customerReference"
911
+ },
912
+ "live": {
913
+ "type": "string"
914
+ },
915
+ "media": {
916
+ "$ref": "#/components/schemas/componentMedia"
917
+ },
918
+ "metaDescription": {
919
+ "type": "string"
920
+ },
921
+ "preview": {
922
+ "type": "string"
923
+ },
924
+ "publishedAt": {
925
+ "type": "string"
926
+ },
927
+ "slug": {
928
+ "$ref": "#/components/schemas/slug"
929
+ },
930
+ "subscribersNotified": {
931
+ "type": "boolean",
932
+ "nullable": true
933
+ },
934
+ "technologies": {
935
+ "type": "array",
936
+ "items": {
937
+ "$ref": "#/components/schemas/sanityCreateEmployeeTechnologiesInner"
938
+ }
939
+ },
940
+ "title": {
941
+ "type": "string"
942
+ },
943
+ "additionalProperties": {
944
+ "type": "object",
945
+ "additionalProperties": {
946
+ "type": "object"
947
+ }
948
+ }
949
+ }
950
+ },
951
+ "sanityTechnologyWithRelationsArticlesInnerContentInner": {
952
+ "type": "object",
953
+ "properties": {
954
+ "actualInstance": {
955
+ "type": "object"
956
+ },
957
+ "isNullable": {
958
+ "type": "boolean"
959
+ },
960
+ "schemaType": {
961
+ "type": "string"
962
+ }
963
+ }
964
+ },
965
+ "sanityTechnologyWithRelationsArticlesInnerMedia": {
966
+ "type": "object",
967
+ "properties": {
968
+ "actualInstance": {
969
+ "type": "object"
970
+ },
971
+ "isNullable": {
972
+ "type": "boolean"
973
+ },
974
+ "schemaType": {
975
+ "type": "string"
976
+ }
977
+ }
978
+ },
979
+ "sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent": {
980
+ "type": "object",
981
+ "properties": {
982
+ "sanityType": {
983
+ "enum": [
984
+ "tag"
985
+ ],
986
+ "type": "string",
987
+ "default": "tag"
988
+ },
989
+ "name": {
990
+ "type": "string"
991
+ },
992
+ "sanityId": {
993
+ "type": "string"
994
+ },
995
+ "slug": {
996
+ "$ref": "#/components/schemas/slug"
997
+ }
998
+ }
999
+ },
1000
+ "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInner": {
1001
+ "type": "object",
1002
+ "properties": {
1003
+ "actualInstance": {
1004
+ "type": "object"
1005
+ },
1006
+ "isNullable": {
1007
+ "type": "boolean"
1008
+ },
1009
+ "schemaType": {
1010
+ "type": "string"
1011
+ }
1012
+ }
1013
+ },
1014
+ "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo": {
1015
+ "type": "object",
1016
+ "properties": {
1017
+ "sanityType": {
1018
+ "enum": [
1019
+ "image"
1020
+ ],
1021
+ "type": "string",
1022
+ "default": "image"
1023
+ },
1024
+ "asset": {
1025
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
1026
+ }
1027
+ }
1028
+ },
1029
+ "sanityTvCategoryDashboardsInnerBackgroundImageAsset": {
1030
+ "type": "object",
1031
+ "properties": {
1032
+ "sanityType": {
1033
+ "enum": [
1034
+ "sanity.imageAsset"
1035
+ ],
1036
+ "type": "string",
1037
+ "default": "sanity.imageAsset"
1038
+ },
1039
+ "mimeType": {
1040
+ "type": "string"
1041
+ },
1042
+ "originalFilename": {
1043
+ "type": "string"
1044
+ },
1045
+ "sanityId": {
1046
+ "type": "string"
1047
+ },
1048
+ "url": {
1049
+ "type": "string"
1050
+ }
1051
+ }
1052
+ },
1053
+ "slug": {
1054
+ "type": "object",
1055
+ "properties": {
1056
+ "sanityType": {
1057
+ "enum": [
1058
+ "slug"
1059
+ ],
1060
+ "type": "string",
1061
+ "default": "slug"
1062
+ },
1063
+ "current": {
1064
+ "type": "string"
1065
+ },
1066
+ "source": {
1067
+ "type": "string"
1068
+ }
1069
+ }
170
1070
  }
171
1071
  },
172
1072
  "securitySchemes": {