bsmnt 0.0.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.
Files changed (98) hide show
  1. package/.changeset/2026-02-11-test-patch-bump.md +5 -0
  2. package/.changeset/README.md +10 -0
  3. package/.changeset/config.json +16 -0
  4. package/.cursor/rules/README.md +184 -0
  5. package/.cursor/rules/architecture.mdc +437 -0
  6. package/.cursor/rules/components.mdc +436 -0
  7. package/.cursor/rules/integrations.mdc +447 -0
  8. package/.cursor/rules/main.mdc +278 -0
  9. package/.cursor/rules/styling.mdc +433 -0
  10. package/.github/PULL_REQUEST_TEMPLATE.md +14 -0
  11. package/.github/workflows/.gitkeep +0 -0
  12. package/.github/workflows/ci.yml +37 -0
  13. package/.github/workflows/release.yml +54 -0
  14. package/.tldr/cache/call_graph.json +7 -0
  15. package/.tldr/languages.json +6 -0
  16. package/.tldr/status +1 -0
  17. package/.tldrignore +84 -0
  18. package/.vscode/extensions.json +20 -0
  19. package/.vscode/settings.json +98 -0
  20. package/CHANGELOG.md +13 -0
  21. package/CLAUDE.md +138 -0
  22. package/README.md +176 -0
  23. package/bin/index.js +262 -0
  24. package/biome.json +44 -0
  25. package/bun.lock +496 -0
  26. package/changelog/04-02-26.md +86 -0
  27. package/changelog/05-02-26.md +101 -0
  28. package/changelog/09-02-26.md +83 -0
  29. package/docs/fix-studio-hydration.md +46 -0
  30. package/docs/plans/2026-01-29-sanity-smart-merge-design.md +196 -0
  31. package/docs/plans/2026-01-29-sanity-smart-merge-implementation.md +695 -0
  32. package/docs/sanity-setup-steps.md +199 -0
  33. package/integrations/basehub/README.md +3 -0
  34. package/integrations/sanity/app/api/draft-mode/disable/route.ts +7 -0
  35. package/integrations/sanity/app/api/draft-mode/enable/route.ts +21 -0
  36. package/integrations/sanity/app/api/revalidate/route.ts +37 -0
  37. package/integrations/sanity/app/layout.tsx +111 -0
  38. package/integrations/sanity/app/sitemap.ts +80 -0
  39. package/integrations/sanity/app/studio/[[...tool]]/page.tsx +8 -0
  40. package/integrations/sanity/app/studio/layout.tsx +7 -0
  41. package/integrations/sanity/components/ui/sanity-image/index.tsx +37 -0
  42. package/integrations/sanity/lib/integrations/README.md +58 -0
  43. package/integrations/sanity/lib/integrations/check-integration.ts +62 -0
  44. package/integrations/sanity/lib/integrations/sanity/README.md +144 -0
  45. package/integrations/sanity/lib/integrations/sanity/client.ts +30 -0
  46. package/integrations/sanity/lib/integrations/sanity/components/disable-draft-mode.tsx +29 -0
  47. package/integrations/sanity/lib/integrations/sanity/components/rich-text.tsx +73 -0
  48. package/integrations/sanity/lib/integrations/sanity/env.ts +38 -0
  49. package/integrations/sanity/lib/integrations/sanity/live/index.tsx +34 -0
  50. package/integrations/sanity/lib/integrations/sanity/queries.ts +99 -0
  51. package/integrations/sanity/lib/integrations/sanity/sanity.cli.ts +20 -0
  52. package/integrations/sanity/lib/integrations/sanity/sanity.config.ts +94 -0
  53. package/integrations/sanity/lib/integrations/sanity/sanity.types.ts +337 -0
  54. package/integrations/sanity/lib/integrations/sanity/schema.json +1850 -0
  55. package/integrations/sanity/lib/integrations/sanity/schemas/article.ts +132 -0
  56. package/integrations/sanity/lib/integrations/sanity/schemas/example.ts +203 -0
  57. package/integrations/sanity/lib/integrations/sanity/schemas/index.ts +37 -0
  58. package/integrations/sanity/lib/integrations/sanity/schemas/link.ts +127 -0
  59. package/integrations/sanity/lib/integrations/sanity/schemas/metadata.ts +68 -0
  60. package/integrations/sanity/lib/integrations/sanity/schemas/navigation.ts +39 -0
  61. package/integrations/sanity/lib/integrations/sanity/schemas/page.ts +77 -0
  62. package/integrations/sanity/lib/integrations/sanity/schemas/richText.ts +59 -0
  63. package/integrations/sanity/lib/integrations/sanity/structure.ts +5 -0
  64. package/integrations/sanity/lib/integrations/sanity/utils/image.ts +11 -0
  65. package/integrations/sanity/lib/integrations/sanity/utils/link.ts +61 -0
  66. package/integrations/sanity/lib/scripts/copy-sanity-mcp.ts +23 -0
  67. package/integrations/sanity/lib/scripts/generate-page.ts +310 -0
  68. package/integrations/sanity/lib/utils/metadata.ts +190 -0
  69. package/layers/experiment/components/layout/header/index.tsx +58 -0
  70. package/layers/experiment/components/layout/navigation-menu.tsx +127 -0
  71. package/layers/experiment/lib/constants.ts +12 -0
  72. package/layers/webgl/app/page.tsx +10 -0
  73. package/layers/webgl/components/webgl/canvas/dynamic.tsx +34 -0
  74. package/layers/webgl/components/webgl/canvas/index.tsx +43 -0
  75. package/layers/webgl/components/webgl/components/scene/index.tsx +21 -0
  76. package/layers/webgpu/.gitkeep +0 -0
  77. package/package.json +44 -0
  78. package/plugins/README.md +21 -0
  79. package/plugins/no-anchor-element.grit +11 -0
  80. package/plugins/no-relative-parent-imports.grit +6 -0
  81. package/plugins/no-unnecessary-forwardref.grit +5 -0
  82. package/src/commands/add-integration.js +325 -0
  83. package/src/commands/create.js +415 -0
  84. package/src/commands/setup-sanity.js +426 -0
  85. package/src/commands/worktree.js +805 -0
  86. package/src/mergers/check-integration-merger.js +105 -0
  87. package/src/mergers/config.js +137 -0
  88. package/src/mergers/index.js +355 -0
  89. package/src/mergers/layout-merger.js +223 -0
  90. package/src/mergers/next-config-merger.js +63 -0
  91. package/src/mergers/sitemap-merger.js +121 -0
  92. package/tasks/prd-next-starter-dynamic-layers.md +184 -0
  93. package/tasks/prd.json +153 -0
  94. package/tasks/progress.txt +115 -0
  95. package/template-hooks/use-battery.ts +126 -0
  96. package/template-hooks/use-device-perf.ts +184 -0
  97. package/template-hooks/use-intersection-observer.ts +32 -0
  98. package/template-hooks/use-media.ts +33 -0
@@ -0,0 +1,1850 @@
1
+ [
2
+ {
3
+ "type": "type",
4
+ "name": "sanity.imageAsset.reference",
5
+ "value": {
6
+ "type": "object",
7
+ "attributes": {
8
+ "_ref": {
9
+ "type": "objectAttribute",
10
+ "value": {
11
+ "type": "string"
12
+ }
13
+ },
14
+ "_type": {
15
+ "type": "objectAttribute",
16
+ "value": {
17
+ "type": "string",
18
+ "value": "reference"
19
+ }
20
+ },
21
+ "_weak": {
22
+ "type": "objectAttribute",
23
+ "value": {
24
+ "type": "boolean"
25
+ },
26
+ "optional": true
27
+ }
28
+ },
29
+ "dereferencesTo": "sanity.imageAsset"
30
+ }
31
+ },
32
+ {
33
+ "name": "navigation",
34
+ "type": "document",
35
+ "attributes": {
36
+ "_id": {
37
+ "type": "objectAttribute",
38
+ "value": {
39
+ "type": "string"
40
+ }
41
+ },
42
+ "_type": {
43
+ "type": "objectAttribute",
44
+ "value": {
45
+ "type": "string",
46
+ "value": "navigation"
47
+ }
48
+ },
49
+ "_createdAt": {
50
+ "type": "objectAttribute",
51
+ "value": {
52
+ "type": "string"
53
+ }
54
+ },
55
+ "_updatedAt": {
56
+ "type": "objectAttribute",
57
+ "value": {
58
+ "type": "string"
59
+ }
60
+ },
61
+ "_rev": {
62
+ "type": "objectAttribute",
63
+ "value": {
64
+ "type": "string"
65
+ }
66
+ },
67
+ "title": {
68
+ "type": "objectAttribute",
69
+ "value": {
70
+ "type": "string"
71
+ },
72
+ "optional": true
73
+ },
74
+ "socials": {
75
+ "type": "objectAttribute",
76
+ "value": {
77
+ "type": "array",
78
+ "of": {
79
+ "type": "object",
80
+ "attributes": {
81
+ "logo": {
82
+ "type": "objectAttribute",
83
+ "value": {
84
+ "type": "object",
85
+ "attributes": {
86
+ "asset": {
87
+ "type": "objectAttribute",
88
+ "value": {
89
+ "type": "inline",
90
+ "name": "sanity.imageAsset.reference"
91
+ },
92
+ "optional": true
93
+ },
94
+ "media": {
95
+ "type": "objectAttribute",
96
+ "value": {
97
+ "type": "unknown"
98
+ },
99
+ "optional": true
100
+ },
101
+ "hotspot": {
102
+ "type": "objectAttribute",
103
+ "value": {
104
+ "type": "inline",
105
+ "name": "sanity.imageHotspot"
106
+ },
107
+ "optional": true
108
+ },
109
+ "crop": {
110
+ "type": "objectAttribute",
111
+ "value": {
112
+ "type": "inline",
113
+ "name": "sanity.imageCrop"
114
+ },
115
+ "optional": true
116
+ },
117
+ "_type": {
118
+ "type": "objectAttribute",
119
+ "value": {
120
+ "type": "string",
121
+ "value": "image"
122
+ }
123
+ }
124
+ }
125
+ },
126
+ "optional": true
127
+ },
128
+ "socialMedia": {
129
+ "type": "objectAttribute",
130
+ "value": {
131
+ "type": "inline",
132
+ "name": "link"
133
+ },
134
+ "optional": true
135
+ },
136
+ "_type": {
137
+ "type": "objectAttribute",
138
+ "value": {
139
+ "type": "string",
140
+ "value": "socialLink"
141
+ }
142
+ }
143
+ },
144
+ "rest": {
145
+ "type": "object",
146
+ "attributes": {
147
+ "_key": {
148
+ "type": "objectAttribute",
149
+ "value": {
150
+ "type": "string"
151
+ }
152
+ }
153
+ }
154
+ }
155
+ }
156
+ },
157
+ "optional": true
158
+ }
159
+ }
160
+ },
161
+ {
162
+ "type": "type",
163
+ "name": "page.reference",
164
+ "value": {
165
+ "type": "object",
166
+ "attributes": {
167
+ "_ref": {
168
+ "type": "objectAttribute",
169
+ "value": {
170
+ "type": "string"
171
+ }
172
+ },
173
+ "_type": {
174
+ "type": "objectAttribute",
175
+ "value": {
176
+ "type": "string",
177
+ "value": "reference"
178
+ }
179
+ },
180
+ "_weak": {
181
+ "type": "objectAttribute",
182
+ "value": {
183
+ "type": "boolean"
184
+ },
185
+ "optional": true
186
+ }
187
+ },
188
+ "dereferencesTo": "page"
189
+ }
190
+ },
191
+ {
192
+ "type": "type",
193
+ "name": "article.reference",
194
+ "value": {
195
+ "type": "object",
196
+ "attributes": {
197
+ "_ref": {
198
+ "type": "objectAttribute",
199
+ "value": {
200
+ "type": "string"
201
+ }
202
+ },
203
+ "_type": {
204
+ "type": "objectAttribute",
205
+ "value": {
206
+ "type": "string",
207
+ "value": "reference"
208
+ }
209
+ },
210
+ "_weak": {
211
+ "type": "objectAttribute",
212
+ "value": {
213
+ "type": "boolean"
214
+ },
215
+ "optional": true
216
+ }
217
+ },
218
+ "dereferencesTo": "article"
219
+ }
220
+ },
221
+ {
222
+ "name": "link",
223
+ "type": "type",
224
+ "value": {
225
+ "type": "object",
226
+ "attributes": {
227
+ "_type": {
228
+ "type": "objectAttribute",
229
+ "value": {
230
+ "type": "string",
231
+ "value": "link"
232
+ }
233
+ },
234
+ "linkType": {
235
+ "type": "objectAttribute",
236
+ "value": {
237
+ "type": "union",
238
+ "of": [
239
+ {
240
+ "type": "string",
241
+ "value": "internal"
242
+ },
243
+ {
244
+ "type": "string",
245
+ "value": "external"
246
+ }
247
+ ]
248
+ },
249
+ "optional": true
250
+ },
251
+ "internalLink": {
252
+ "type": "objectAttribute",
253
+ "value": {
254
+ "type": "union",
255
+ "of": [
256
+ {
257
+ "type": "inline",
258
+ "name": "page.reference"
259
+ },
260
+ {
261
+ "type": "inline",
262
+ "name": "article.reference"
263
+ }
264
+ ]
265
+ },
266
+ "optional": true
267
+ },
268
+ "externalUrl": {
269
+ "type": "objectAttribute",
270
+ "value": {
271
+ "type": "string"
272
+ },
273
+ "optional": true
274
+ },
275
+ "text": {
276
+ "type": "objectAttribute",
277
+ "value": {
278
+ "type": "string"
279
+ },
280
+ "optional": true
281
+ },
282
+ "openInNewTab": {
283
+ "type": "objectAttribute",
284
+ "value": {
285
+ "type": "boolean"
286
+ },
287
+ "optional": true
288
+ }
289
+ }
290
+ }
291
+ },
292
+ {
293
+ "name": "sanity.imageCrop",
294
+ "type": "type",
295
+ "value": {
296
+ "type": "object",
297
+ "attributes": {
298
+ "_type": {
299
+ "type": "objectAttribute",
300
+ "value": {
301
+ "type": "string",
302
+ "value": "sanity.imageCrop"
303
+ }
304
+ },
305
+ "top": {
306
+ "type": "objectAttribute",
307
+ "value": {
308
+ "type": "number"
309
+ },
310
+ "optional": true
311
+ },
312
+ "bottom": {
313
+ "type": "objectAttribute",
314
+ "value": {
315
+ "type": "number"
316
+ },
317
+ "optional": true
318
+ },
319
+ "left": {
320
+ "type": "objectAttribute",
321
+ "value": {
322
+ "type": "number"
323
+ },
324
+ "optional": true
325
+ },
326
+ "right": {
327
+ "type": "objectAttribute",
328
+ "value": {
329
+ "type": "number"
330
+ },
331
+ "optional": true
332
+ }
333
+ }
334
+ }
335
+ },
336
+ {
337
+ "name": "sanity.imageHotspot",
338
+ "type": "type",
339
+ "value": {
340
+ "type": "object",
341
+ "attributes": {
342
+ "_type": {
343
+ "type": "objectAttribute",
344
+ "value": {
345
+ "type": "string",
346
+ "value": "sanity.imageHotspot"
347
+ }
348
+ },
349
+ "x": {
350
+ "type": "objectAttribute",
351
+ "value": {
352
+ "type": "number"
353
+ },
354
+ "optional": true
355
+ },
356
+ "y": {
357
+ "type": "objectAttribute",
358
+ "value": {
359
+ "type": "number"
360
+ },
361
+ "optional": true
362
+ },
363
+ "height": {
364
+ "type": "objectAttribute",
365
+ "value": {
366
+ "type": "number"
367
+ },
368
+ "optional": true
369
+ },
370
+ "width": {
371
+ "type": "objectAttribute",
372
+ "value": {
373
+ "type": "number"
374
+ },
375
+ "optional": true
376
+ }
377
+ }
378
+ }
379
+ },
380
+ {
381
+ "name": "example",
382
+ "type": "document",
383
+ "attributes": {
384
+ "_id": {
385
+ "type": "objectAttribute",
386
+ "value": {
387
+ "type": "string"
388
+ }
389
+ },
390
+ "_type": {
391
+ "type": "objectAttribute",
392
+ "value": {
393
+ "type": "string",
394
+ "value": "example"
395
+ }
396
+ },
397
+ "_createdAt": {
398
+ "type": "objectAttribute",
399
+ "value": {
400
+ "type": "string"
401
+ }
402
+ },
403
+ "_updatedAt": {
404
+ "type": "objectAttribute",
405
+ "value": {
406
+ "type": "string"
407
+ }
408
+ },
409
+ "_rev": {
410
+ "type": "objectAttribute",
411
+ "value": {
412
+ "type": "string"
413
+ }
414
+ },
415
+ "title": {
416
+ "type": "objectAttribute",
417
+ "value": {
418
+ "type": "string"
419
+ },
420
+ "optional": true
421
+ },
422
+ "slug": {
423
+ "type": "objectAttribute",
424
+ "value": {
425
+ "type": "inline",
426
+ "name": "slug"
427
+ },
428
+ "optional": true
429
+ },
430
+ "hero": {
431
+ "type": "objectAttribute",
432
+ "value": {
433
+ "type": "object",
434
+ "attributes": {
435
+ "headline": {
436
+ "type": "objectAttribute",
437
+ "value": {
438
+ "type": "string"
439
+ },
440
+ "optional": true
441
+ },
442
+ "subheadline": {
443
+ "type": "objectAttribute",
444
+ "value": {
445
+ "type": "string"
446
+ },
447
+ "optional": true
448
+ },
449
+ "image": {
450
+ "type": "objectAttribute",
451
+ "value": {
452
+ "type": "object",
453
+ "attributes": {
454
+ "asset": {
455
+ "type": "objectAttribute",
456
+ "value": {
457
+ "type": "inline",
458
+ "name": "sanity.imageAsset.reference"
459
+ },
460
+ "optional": true
461
+ },
462
+ "media": {
463
+ "type": "objectAttribute",
464
+ "value": {
465
+ "type": "unknown"
466
+ },
467
+ "optional": true
468
+ },
469
+ "hotspot": {
470
+ "type": "objectAttribute",
471
+ "value": {
472
+ "type": "inline",
473
+ "name": "sanity.imageHotspot"
474
+ },
475
+ "optional": true
476
+ },
477
+ "crop": {
478
+ "type": "objectAttribute",
479
+ "value": {
480
+ "type": "inline",
481
+ "name": "sanity.imageCrop"
482
+ },
483
+ "optional": true
484
+ },
485
+ "alt": {
486
+ "type": "objectAttribute",
487
+ "value": {
488
+ "type": "string"
489
+ },
490
+ "optional": true
491
+ },
492
+ "_type": {
493
+ "type": "objectAttribute",
494
+ "value": {
495
+ "type": "string",
496
+ "value": "image"
497
+ }
498
+ }
499
+ }
500
+ },
501
+ "optional": true
502
+ },
503
+ "showCTA": {
504
+ "type": "objectAttribute",
505
+ "value": {
506
+ "type": "boolean"
507
+ },
508
+ "optional": true
509
+ },
510
+ "ctaText": {
511
+ "type": "objectAttribute",
512
+ "value": {
513
+ "type": "string"
514
+ },
515
+ "optional": true
516
+ },
517
+ "ctaLink": {
518
+ "type": "objectAttribute",
519
+ "value": {
520
+ "type": "string"
521
+ },
522
+ "optional": true
523
+ }
524
+ }
525
+ },
526
+ "optional": true
527
+ },
528
+ "content": {
529
+ "type": "objectAttribute",
530
+ "value": {
531
+ "type": "inline",
532
+ "name": "richText"
533
+ },
534
+ "optional": true
535
+ },
536
+ "features": {
537
+ "type": "objectAttribute",
538
+ "value": {
539
+ "type": "array",
540
+ "of": {
541
+ "type": "object",
542
+ "attributes": {
543
+ "title": {
544
+ "type": "objectAttribute",
545
+ "value": {
546
+ "type": "string"
547
+ },
548
+ "optional": true
549
+ },
550
+ "description": {
551
+ "type": "objectAttribute",
552
+ "value": {
553
+ "type": "string"
554
+ },
555
+ "optional": true
556
+ },
557
+ "icon": {
558
+ "type": "objectAttribute",
559
+ "value": {
560
+ "type": "object",
561
+ "attributes": {
562
+ "asset": {
563
+ "type": "objectAttribute",
564
+ "value": {
565
+ "type": "inline",
566
+ "name": "sanity.imageAsset.reference"
567
+ },
568
+ "optional": true
569
+ },
570
+ "media": {
571
+ "type": "objectAttribute",
572
+ "value": {
573
+ "type": "unknown"
574
+ },
575
+ "optional": true
576
+ },
577
+ "hotspot": {
578
+ "type": "objectAttribute",
579
+ "value": {
580
+ "type": "inline",
581
+ "name": "sanity.imageHotspot"
582
+ },
583
+ "optional": true
584
+ },
585
+ "crop": {
586
+ "type": "objectAttribute",
587
+ "value": {
588
+ "type": "inline",
589
+ "name": "sanity.imageCrop"
590
+ },
591
+ "optional": true
592
+ },
593
+ "_type": {
594
+ "type": "objectAttribute",
595
+ "value": {
596
+ "type": "string",
597
+ "value": "image"
598
+ }
599
+ }
600
+ }
601
+ },
602
+ "optional": true
603
+ }
604
+ },
605
+ "rest": {
606
+ "type": "object",
607
+ "attributes": {
608
+ "_key": {
609
+ "type": "objectAttribute",
610
+ "value": {
611
+ "type": "string"
612
+ }
613
+ }
614
+ }
615
+ }
616
+ }
617
+ },
618
+ "optional": true
619
+ },
620
+ "tags": {
621
+ "type": "objectAttribute",
622
+ "value": {
623
+ "type": "array",
624
+ "of": {
625
+ "type": "string"
626
+ }
627
+ },
628
+ "optional": true
629
+ },
630
+ "metadata": {
631
+ "type": "objectAttribute",
632
+ "value": {
633
+ "type": "inline",
634
+ "name": "metadata"
635
+ },
636
+ "optional": true
637
+ },
638
+ "publishedAt": {
639
+ "type": "objectAttribute",
640
+ "value": {
641
+ "type": "string"
642
+ },
643
+ "optional": true
644
+ },
645
+ "showInNavigation": {
646
+ "type": "objectAttribute",
647
+ "value": {
648
+ "type": "boolean"
649
+ },
650
+ "optional": true
651
+ },
652
+ "contactEmail": {
653
+ "type": "objectAttribute",
654
+ "value": {
655
+ "type": "string"
656
+ },
657
+ "optional": true
658
+ }
659
+ }
660
+ },
661
+ {
662
+ "name": "metadata",
663
+ "type": "type",
664
+ "value": {
665
+ "type": "object",
666
+ "attributes": {
667
+ "_type": {
668
+ "type": "objectAttribute",
669
+ "value": {
670
+ "type": "string",
671
+ "value": "metadata"
672
+ }
673
+ },
674
+ "title": {
675
+ "type": "objectAttribute",
676
+ "value": {
677
+ "type": "string"
678
+ },
679
+ "optional": true
680
+ },
681
+ "description": {
682
+ "type": "objectAttribute",
683
+ "value": {
684
+ "type": "string"
685
+ },
686
+ "optional": true
687
+ },
688
+ "keywords": {
689
+ "type": "objectAttribute",
690
+ "value": {
691
+ "type": "array",
692
+ "of": {
693
+ "type": "string"
694
+ }
695
+ },
696
+ "optional": true
697
+ },
698
+ "image": {
699
+ "type": "objectAttribute",
700
+ "value": {
701
+ "type": "object",
702
+ "attributes": {
703
+ "asset": {
704
+ "type": "objectAttribute",
705
+ "value": {
706
+ "type": "inline",
707
+ "name": "sanity.imageAsset.reference"
708
+ },
709
+ "optional": true
710
+ },
711
+ "media": {
712
+ "type": "objectAttribute",
713
+ "value": {
714
+ "type": "unknown"
715
+ },
716
+ "optional": true
717
+ },
718
+ "hotspot": {
719
+ "type": "objectAttribute",
720
+ "value": {
721
+ "type": "inline",
722
+ "name": "sanity.imageHotspot"
723
+ },
724
+ "optional": true
725
+ },
726
+ "crop": {
727
+ "type": "objectAttribute",
728
+ "value": {
729
+ "type": "inline",
730
+ "name": "sanity.imageCrop"
731
+ },
732
+ "optional": true
733
+ },
734
+ "alt": {
735
+ "type": "objectAttribute",
736
+ "value": {
737
+ "type": "string"
738
+ },
739
+ "optional": true
740
+ },
741
+ "_type": {
742
+ "type": "objectAttribute",
743
+ "value": {
744
+ "type": "string",
745
+ "value": "image"
746
+ }
747
+ }
748
+ }
749
+ },
750
+ "optional": true
751
+ },
752
+ "noIndex": {
753
+ "type": "objectAttribute",
754
+ "value": {
755
+ "type": "boolean"
756
+ },
757
+ "optional": true
758
+ }
759
+ }
760
+ }
761
+ },
762
+ {
763
+ "name": "richText",
764
+ "type": "type",
765
+ "value": {
766
+ "type": "array",
767
+ "of": {
768
+ "type": "union",
769
+ "of": [
770
+ {
771
+ "type": "object",
772
+ "attributes": {
773
+ "children": {
774
+ "type": "objectAttribute",
775
+ "value": {
776
+ "type": "array",
777
+ "of": {
778
+ "type": "object",
779
+ "attributes": {
780
+ "marks": {
781
+ "type": "objectAttribute",
782
+ "value": {
783
+ "type": "array",
784
+ "of": {
785
+ "type": "string"
786
+ }
787
+ },
788
+ "optional": true
789
+ },
790
+ "text": {
791
+ "type": "objectAttribute",
792
+ "value": {
793
+ "type": "string"
794
+ },
795
+ "optional": true
796
+ },
797
+ "_type": {
798
+ "type": "objectAttribute",
799
+ "value": {
800
+ "type": "string",
801
+ "value": "span"
802
+ }
803
+ }
804
+ },
805
+ "rest": {
806
+ "type": "object",
807
+ "attributes": {
808
+ "_key": {
809
+ "type": "objectAttribute",
810
+ "value": {
811
+ "type": "string"
812
+ }
813
+ }
814
+ }
815
+ }
816
+ }
817
+ },
818
+ "optional": true
819
+ },
820
+ "style": {
821
+ "type": "objectAttribute",
822
+ "value": {
823
+ "type": "union",
824
+ "of": [
825
+ {
826
+ "type": "string",
827
+ "value": "normal"
828
+ },
829
+ {
830
+ "type": "string",
831
+ "value": "h1"
832
+ },
833
+ {
834
+ "type": "string",
835
+ "value": "h2"
836
+ },
837
+ {
838
+ "type": "string",
839
+ "value": "h3"
840
+ },
841
+ {
842
+ "type": "string",
843
+ "value": "h4"
844
+ },
845
+ {
846
+ "type": "string",
847
+ "value": "h5"
848
+ },
849
+ {
850
+ "type": "string",
851
+ "value": "h6"
852
+ },
853
+ {
854
+ "type": "string",
855
+ "value": "blockquote"
856
+ }
857
+ ]
858
+ },
859
+ "optional": true
860
+ },
861
+ "listItem": {
862
+ "type": "objectAttribute",
863
+ "value": {
864
+ "type": "union",
865
+ "of": [
866
+ {
867
+ "type": "string",
868
+ "value": "bullet"
869
+ },
870
+ {
871
+ "type": "string",
872
+ "value": "number"
873
+ }
874
+ ]
875
+ },
876
+ "optional": true
877
+ },
878
+ "markDefs": {
879
+ "type": "objectAttribute",
880
+ "value": {
881
+ "type": "array",
882
+ "of": {
883
+ "type": "object",
884
+ "attributes": {
885
+ "_key": {
886
+ "type": "objectAttribute",
887
+ "value": {
888
+ "type": "string"
889
+ }
890
+ }
891
+ },
892
+ "rest": {
893
+ "type": "inline",
894
+ "name": "link"
895
+ }
896
+ }
897
+ },
898
+ "optional": true
899
+ },
900
+ "level": {
901
+ "type": "objectAttribute",
902
+ "value": {
903
+ "type": "number"
904
+ },
905
+ "optional": true
906
+ },
907
+ "_type": {
908
+ "type": "objectAttribute",
909
+ "value": {
910
+ "type": "string",
911
+ "value": "block"
912
+ }
913
+ }
914
+ },
915
+ "rest": {
916
+ "type": "object",
917
+ "attributes": {
918
+ "_key": {
919
+ "type": "objectAttribute",
920
+ "value": {
921
+ "type": "string"
922
+ }
923
+ }
924
+ }
925
+ }
926
+ },
927
+ {
928
+ "type": "object",
929
+ "attributes": {
930
+ "asset": {
931
+ "type": "objectAttribute",
932
+ "value": {
933
+ "type": "inline",
934
+ "name": "sanity.imageAsset.reference"
935
+ },
936
+ "optional": true
937
+ },
938
+ "media": {
939
+ "type": "objectAttribute",
940
+ "value": {
941
+ "type": "unknown"
942
+ },
943
+ "optional": true
944
+ },
945
+ "hotspot": {
946
+ "type": "objectAttribute",
947
+ "value": {
948
+ "type": "inline",
949
+ "name": "sanity.imageHotspot"
950
+ },
951
+ "optional": true
952
+ },
953
+ "crop": {
954
+ "type": "objectAttribute",
955
+ "value": {
956
+ "type": "inline",
957
+ "name": "sanity.imageCrop"
958
+ },
959
+ "optional": true
960
+ },
961
+ "alt": {
962
+ "type": "objectAttribute",
963
+ "value": {
964
+ "type": "string"
965
+ },
966
+ "optional": true
967
+ },
968
+ "caption": {
969
+ "type": "objectAttribute",
970
+ "value": {
971
+ "type": "string"
972
+ },
973
+ "optional": true
974
+ },
975
+ "_type": {
976
+ "type": "objectAttribute",
977
+ "value": {
978
+ "type": "string",
979
+ "value": "image"
980
+ }
981
+ }
982
+ },
983
+ "rest": {
984
+ "type": "object",
985
+ "attributes": {
986
+ "_key": {
987
+ "type": "objectAttribute",
988
+ "value": {
989
+ "type": "string"
990
+ }
991
+ }
992
+ }
993
+ }
994
+ }
995
+ ]
996
+ }
997
+ }
998
+ },
999
+ {
1000
+ "name": "slug",
1001
+ "type": "type",
1002
+ "value": {
1003
+ "type": "object",
1004
+ "attributes": {
1005
+ "_type": {
1006
+ "type": "objectAttribute",
1007
+ "value": {
1008
+ "type": "string",
1009
+ "value": "slug"
1010
+ }
1011
+ },
1012
+ "current": {
1013
+ "type": "objectAttribute",
1014
+ "value": {
1015
+ "type": "string"
1016
+ },
1017
+ "optional": true
1018
+ },
1019
+ "source": {
1020
+ "type": "objectAttribute",
1021
+ "value": {
1022
+ "type": "string"
1023
+ },
1024
+ "optional": true
1025
+ }
1026
+ }
1027
+ }
1028
+ },
1029
+ {
1030
+ "name": "article",
1031
+ "type": "document",
1032
+ "attributes": {
1033
+ "_id": {
1034
+ "type": "objectAttribute",
1035
+ "value": {
1036
+ "type": "string"
1037
+ }
1038
+ },
1039
+ "_type": {
1040
+ "type": "objectAttribute",
1041
+ "value": {
1042
+ "type": "string",
1043
+ "value": "article"
1044
+ }
1045
+ },
1046
+ "_createdAt": {
1047
+ "type": "objectAttribute",
1048
+ "value": {
1049
+ "type": "string"
1050
+ }
1051
+ },
1052
+ "_updatedAt": {
1053
+ "type": "objectAttribute",
1054
+ "value": {
1055
+ "type": "string"
1056
+ }
1057
+ },
1058
+ "_rev": {
1059
+ "type": "objectAttribute",
1060
+ "value": {
1061
+ "type": "string"
1062
+ }
1063
+ },
1064
+ "slug": {
1065
+ "type": "objectAttribute",
1066
+ "value": {
1067
+ "type": "inline",
1068
+ "name": "slug"
1069
+ },
1070
+ "optional": true
1071
+ },
1072
+ "author": {
1073
+ "type": "objectAttribute",
1074
+ "value": {
1075
+ "type": "string"
1076
+ },
1077
+ "optional": true
1078
+ },
1079
+ "publishedAt": {
1080
+ "type": "objectAttribute",
1081
+ "value": {
1082
+ "type": "string"
1083
+ },
1084
+ "optional": true
1085
+ },
1086
+ "metadata": {
1087
+ "type": "objectAttribute",
1088
+ "value": {
1089
+ "type": "inline",
1090
+ "name": "metadata"
1091
+ },
1092
+ "optional": true
1093
+ },
1094
+ "title": {
1095
+ "type": "objectAttribute",
1096
+ "value": {
1097
+ "type": "string"
1098
+ },
1099
+ "optional": true
1100
+ },
1101
+ "excerpt": {
1102
+ "type": "objectAttribute",
1103
+ "value": {
1104
+ "type": "string"
1105
+ },
1106
+ "optional": true
1107
+ },
1108
+ "featuredImage": {
1109
+ "type": "objectAttribute",
1110
+ "value": {
1111
+ "type": "object",
1112
+ "attributes": {
1113
+ "asset": {
1114
+ "type": "objectAttribute",
1115
+ "value": {
1116
+ "type": "inline",
1117
+ "name": "sanity.imageAsset.reference"
1118
+ },
1119
+ "optional": true
1120
+ },
1121
+ "media": {
1122
+ "type": "objectAttribute",
1123
+ "value": {
1124
+ "type": "unknown"
1125
+ },
1126
+ "optional": true
1127
+ },
1128
+ "hotspot": {
1129
+ "type": "objectAttribute",
1130
+ "value": {
1131
+ "type": "inline",
1132
+ "name": "sanity.imageHotspot"
1133
+ },
1134
+ "optional": true
1135
+ },
1136
+ "crop": {
1137
+ "type": "objectAttribute",
1138
+ "value": {
1139
+ "type": "inline",
1140
+ "name": "sanity.imageCrop"
1141
+ },
1142
+ "optional": true
1143
+ },
1144
+ "alt": {
1145
+ "type": "objectAttribute",
1146
+ "value": {
1147
+ "type": "string"
1148
+ },
1149
+ "optional": true
1150
+ },
1151
+ "_type": {
1152
+ "type": "objectAttribute",
1153
+ "value": {
1154
+ "type": "string",
1155
+ "value": "image"
1156
+ }
1157
+ }
1158
+ }
1159
+ },
1160
+ "optional": true
1161
+ },
1162
+ "content": {
1163
+ "type": "objectAttribute",
1164
+ "value": {
1165
+ "type": "inline",
1166
+ "name": "richText"
1167
+ },
1168
+ "optional": true
1169
+ },
1170
+ "categories": {
1171
+ "type": "objectAttribute",
1172
+ "value": {
1173
+ "type": "array",
1174
+ "of": {
1175
+ "type": "string"
1176
+ }
1177
+ },
1178
+ "optional": true
1179
+ },
1180
+ "tags": {
1181
+ "type": "objectAttribute",
1182
+ "value": {
1183
+ "type": "array",
1184
+ "of": {
1185
+ "type": "string"
1186
+ }
1187
+ },
1188
+ "optional": true
1189
+ }
1190
+ }
1191
+ },
1192
+ {
1193
+ "name": "page",
1194
+ "type": "document",
1195
+ "attributes": {
1196
+ "_id": {
1197
+ "type": "objectAttribute",
1198
+ "value": {
1199
+ "type": "string"
1200
+ }
1201
+ },
1202
+ "_type": {
1203
+ "type": "objectAttribute",
1204
+ "value": {
1205
+ "type": "string",
1206
+ "value": "page"
1207
+ }
1208
+ },
1209
+ "_createdAt": {
1210
+ "type": "objectAttribute",
1211
+ "value": {
1212
+ "type": "string"
1213
+ }
1214
+ },
1215
+ "_updatedAt": {
1216
+ "type": "objectAttribute",
1217
+ "value": {
1218
+ "type": "string"
1219
+ }
1220
+ },
1221
+ "_rev": {
1222
+ "type": "objectAttribute",
1223
+ "value": {
1224
+ "type": "string"
1225
+ }
1226
+ },
1227
+ "slug": {
1228
+ "type": "objectAttribute",
1229
+ "value": {
1230
+ "type": "inline",
1231
+ "name": "slug"
1232
+ },
1233
+ "optional": true
1234
+ },
1235
+ "publishedAt": {
1236
+ "type": "objectAttribute",
1237
+ "value": {
1238
+ "type": "string"
1239
+ },
1240
+ "optional": true
1241
+ },
1242
+ "metadata": {
1243
+ "type": "objectAttribute",
1244
+ "value": {
1245
+ "type": "inline",
1246
+ "name": "metadata"
1247
+ },
1248
+ "optional": true
1249
+ },
1250
+ "title": {
1251
+ "type": "objectAttribute",
1252
+ "value": {
1253
+ "type": "string"
1254
+ },
1255
+ "optional": true
1256
+ },
1257
+ "content": {
1258
+ "type": "objectAttribute",
1259
+ "value": {
1260
+ "type": "inline",
1261
+ "name": "richText"
1262
+ },
1263
+ "optional": true
1264
+ },
1265
+ "link": {
1266
+ "type": "objectAttribute",
1267
+ "value": {
1268
+ "type": "inline",
1269
+ "name": "link"
1270
+ },
1271
+ "optional": true
1272
+ }
1273
+ }
1274
+ },
1275
+ {
1276
+ "name": "sanity.imagePaletteSwatch",
1277
+ "type": "type",
1278
+ "value": {
1279
+ "type": "object",
1280
+ "attributes": {
1281
+ "_type": {
1282
+ "type": "objectAttribute",
1283
+ "value": {
1284
+ "type": "string",
1285
+ "value": "sanity.imagePaletteSwatch"
1286
+ }
1287
+ },
1288
+ "background": {
1289
+ "type": "objectAttribute",
1290
+ "value": {
1291
+ "type": "string"
1292
+ },
1293
+ "optional": true
1294
+ },
1295
+ "foreground": {
1296
+ "type": "objectAttribute",
1297
+ "value": {
1298
+ "type": "string"
1299
+ },
1300
+ "optional": true
1301
+ },
1302
+ "population": {
1303
+ "type": "objectAttribute",
1304
+ "value": {
1305
+ "type": "number"
1306
+ },
1307
+ "optional": true
1308
+ },
1309
+ "title": {
1310
+ "type": "objectAttribute",
1311
+ "value": {
1312
+ "type": "string"
1313
+ },
1314
+ "optional": true
1315
+ }
1316
+ }
1317
+ }
1318
+ },
1319
+ {
1320
+ "name": "sanity.imagePalette",
1321
+ "type": "type",
1322
+ "value": {
1323
+ "type": "object",
1324
+ "attributes": {
1325
+ "_type": {
1326
+ "type": "objectAttribute",
1327
+ "value": {
1328
+ "type": "string",
1329
+ "value": "sanity.imagePalette"
1330
+ }
1331
+ },
1332
+ "darkMuted": {
1333
+ "type": "objectAttribute",
1334
+ "value": {
1335
+ "type": "inline",
1336
+ "name": "sanity.imagePaletteSwatch"
1337
+ },
1338
+ "optional": true
1339
+ },
1340
+ "lightVibrant": {
1341
+ "type": "objectAttribute",
1342
+ "value": {
1343
+ "type": "inline",
1344
+ "name": "sanity.imagePaletteSwatch"
1345
+ },
1346
+ "optional": true
1347
+ },
1348
+ "darkVibrant": {
1349
+ "type": "objectAttribute",
1350
+ "value": {
1351
+ "type": "inline",
1352
+ "name": "sanity.imagePaletteSwatch"
1353
+ },
1354
+ "optional": true
1355
+ },
1356
+ "vibrant": {
1357
+ "type": "objectAttribute",
1358
+ "value": {
1359
+ "type": "inline",
1360
+ "name": "sanity.imagePaletteSwatch"
1361
+ },
1362
+ "optional": true
1363
+ },
1364
+ "dominant": {
1365
+ "type": "objectAttribute",
1366
+ "value": {
1367
+ "type": "inline",
1368
+ "name": "sanity.imagePaletteSwatch"
1369
+ },
1370
+ "optional": true
1371
+ },
1372
+ "lightMuted": {
1373
+ "type": "objectAttribute",
1374
+ "value": {
1375
+ "type": "inline",
1376
+ "name": "sanity.imagePaletteSwatch"
1377
+ },
1378
+ "optional": true
1379
+ },
1380
+ "muted": {
1381
+ "type": "objectAttribute",
1382
+ "value": {
1383
+ "type": "inline",
1384
+ "name": "sanity.imagePaletteSwatch"
1385
+ },
1386
+ "optional": true
1387
+ }
1388
+ }
1389
+ }
1390
+ },
1391
+ {
1392
+ "name": "sanity.imageDimensions",
1393
+ "type": "type",
1394
+ "value": {
1395
+ "type": "object",
1396
+ "attributes": {
1397
+ "_type": {
1398
+ "type": "objectAttribute",
1399
+ "value": {
1400
+ "type": "string",
1401
+ "value": "sanity.imageDimensions"
1402
+ }
1403
+ },
1404
+ "height": {
1405
+ "type": "objectAttribute",
1406
+ "value": {
1407
+ "type": "number"
1408
+ },
1409
+ "optional": true
1410
+ },
1411
+ "width": {
1412
+ "type": "objectAttribute",
1413
+ "value": {
1414
+ "type": "number"
1415
+ },
1416
+ "optional": true
1417
+ },
1418
+ "aspectRatio": {
1419
+ "type": "objectAttribute",
1420
+ "value": {
1421
+ "type": "number"
1422
+ },
1423
+ "optional": true
1424
+ }
1425
+ }
1426
+ }
1427
+ },
1428
+ {
1429
+ "name": "sanity.imageMetadata",
1430
+ "type": "type",
1431
+ "value": {
1432
+ "type": "object",
1433
+ "attributes": {
1434
+ "_type": {
1435
+ "type": "objectAttribute",
1436
+ "value": {
1437
+ "type": "string",
1438
+ "value": "sanity.imageMetadata"
1439
+ }
1440
+ },
1441
+ "location": {
1442
+ "type": "objectAttribute",
1443
+ "value": {
1444
+ "type": "inline",
1445
+ "name": "geopoint"
1446
+ },
1447
+ "optional": true
1448
+ },
1449
+ "dimensions": {
1450
+ "type": "objectAttribute",
1451
+ "value": {
1452
+ "type": "inline",
1453
+ "name": "sanity.imageDimensions"
1454
+ },
1455
+ "optional": true
1456
+ },
1457
+ "palette": {
1458
+ "type": "objectAttribute",
1459
+ "value": {
1460
+ "type": "inline",
1461
+ "name": "sanity.imagePalette"
1462
+ },
1463
+ "optional": true
1464
+ },
1465
+ "lqip": {
1466
+ "type": "objectAttribute",
1467
+ "value": {
1468
+ "type": "string"
1469
+ },
1470
+ "optional": true
1471
+ },
1472
+ "blurHash": {
1473
+ "type": "objectAttribute",
1474
+ "value": {
1475
+ "type": "string"
1476
+ },
1477
+ "optional": true
1478
+ },
1479
+ "hasAlpha": {
1480
+ "type": "objectAttribute",
1481
+ "value": {
1482
+ "type": "boolean"
1483
+ },
1484
+ "optional": true
1485
+ },
1486
+ "isOpaque": {
1487
+ "type": "objectAttribute",
1488
+ "value": {
1489
+ "type": "boolean"
1490
+ },
1491
+ "optional": true
1492
+ }
1493
+ }
1494
+ }
1495
+ },
1496
+ {
1497
+ "name": "sanity.fileAsset",
1498
+ "type": "document",
1499
+ "attributes": {
1500
+ "_id": {
1501
+ "type": "objectAttribute",
1502
+ "value": {
1503
+ "type": "string"
1504
+ }
1505
+ },
1506
+ "_type": {
1507
+ "type": "objectAttribute",
1508
+ "value": {
1509
+ "type": "string",
1510
+ "value": "sanity.fileAsset"
1511
+ }
1512
+ },
1513
+ "_createdAt": {
1514
+ "type": "objectAttribute",
1515
+ "value": {
1516
+ "type": "string"
1517
+ }
1518
+ },
1519
+ "_updatedAt": {
1520
+ "type": "objectAttribute",
1521
+ "value": {
1522
+ "type": "string"
1523
+ }
1524
+ },
1525
+ "_rev": {
1526
+ "type": "objectAttribute",
1527
+ "value": {
1528
+ "type": "string"
1529
+ }
1530
+ },
1531
+ "originalFilename": {
1532
+ "type": "objectAttribute",
1533
+ "value": {
1534
+ "type": "string"
1535
+ },
1536
+ "optional": true
1537
+ },
1538
+ "label": {
1539
+ "type": "objectAttribute",
1540
+ "value": {
1541
+ "type": "string"
1542
+ },
1543
+ "optional": true
1544
+ },
1545
+ "title": {
1546
+ "type": "objectAttribute",
1547
+ "value": {
1548
+ "type": "string"
1549
+ },
1550
+ "optional": true
1551
+ },
1552
+ "description": {
1553
+ "type": "objectAttribute",
1554
+ "value": {
1555
+ "type": "string"
1556
+ },
1557
+ "optional": true
1558
+ },
1559
+ "altText": {
1560
+ "type": "objectAttribute",
1561
+ "value": {
1562
+ "type": "string"
1563
+ },
1564
+ "optional": true
1565
+ },
1566
+ "sha1hash": {
1567
+ "type": "objectAttribute",
1568
+ "value": {
1569
+ "type": "string"
1570
+ },
1571
+ "optional": true
1572
+ },
1573
+ "extension": {
1574
+ "type": "objectAttribute",
1575
+ "value": {
1576
+ "type": "string"
1577
+ },
1578
+ "optional": true
1579
+ },
1580
+ "mimeType": {
1581
+ "type": "objectAttribute",
1582
+ "value": {
1583
+ "type": "string"
1584
+ },
1585
+ "optional": true
1586
+ },
1587
+ "size": {
1588
+ "type": "objectAttribute",
1589
+ "value": {
1590
+ "type": "number"
1591
+ },
1592
+ "optional": true
1593
+ },
1594
+ "assetId": {
1595
+ "type": "objectAttribute",
1596
+ "value": {
1597
+ "type": "string"
1598
+ },
1599
+ "optional": true
1600
+ },
1601
+ "uploadId": {
1602
+ "type": "objectAttribute",
1603
+ "value": {
1604
+ "type": "string"
1605
+ },
1606
+ "optional": true
1607
+ },
1608
+ "path": {
1609
+ "type": "objectAttribute",
1610
+ "value": {
1611
+ "type": "string"
1612
+ },
1613
+ "optional": true
1614
+ },
1615
+ "url": {
1616
+ "type": "objectAttribute",
1617
+ "value": {
1618
+ "type": "string"
1619
+ },
1620
+ "optional": true
1621
+ },
1622
+ "source": {
1623
+ "type": "objectAttribute",
1624
+ "value": {
1625
+ "type": "inline",
1626
+ "name": "sanity.assetSourceData"
1627
+ },
1628
+ "optional": true
1629
+ }
1630
+ }
1631
+ },
1632
+ {
1633
+ "name": "sanity.assetSourceData",
1634
+ "type": "type",
1635
+ "value": {
1636
+ "type": "object",
1637
+ "attributes": {
1638
+ "_type": {
1639
+ "type": "objectAttribute",
1640
+ "value": {
1641
+ "type": "string",
1642
+ "value": "sanity.assetSourceData"
1643
+ }
1644
+ },
1645
+ "name": {
1646
+ "type": "objectAttribute",
1647
+ "value": {
1648
+ "type": "string"
1649
+ },
1650
+ "optional": true
1651
+ },
1652
+ "id": {
1653
+ "type": "objectAttribute",
1654
+ "value": {
1655
+ "type": "string"
1656
+ },
1657
+ "optional": true
1658
+ },
1659
+ "url": {
1660
+ "type": "objectAttribute",
1661
+ "value": {
1662
+ "type": "string"
1663
+ },
1664
+ "optional": true
1665
+ }
1666
+ }
1667
+ }
1668
+ },
1669
+ {
1670
+ "name": "sanity.imageAsset",
1671
+ "type": "document",
1672
+ "attributes": {
1673
+ "_id": {
1674
+ "type": "objectAttribute",
1675
+ "value": {
1676
+ "type": "string"
1677
+ }
1678
+ },
1679
+ "_type": {
1680
+ "type": "objectAttribute",
1681
+ "value": {
1682
+ "type": "string",
1683
+ "value": "sanity.imageAsset"
1684
+ }
1685
+ },
1686
+ "_createdAt": {
1687
+ "type": "objectAttribute",
1688
+ "value": {
1689
+ "type": "string"
1690
+ }
1691
+ },
1692
+ "_updatedAt": {
1693
+ "type": "objectAttribute",
1694
+ "value": {
1695
+ "type": "string"
1696
+ }
1697
+ },
1698
+ "_rev": {
1699
+ "type": "objectAttribute",
1700
+ "value": {
1701
+ "type": "string"
1702
+ }
1703
+ },
1704
+ "originalFilename": {
1705
+ "type": "objectAttribute",
1706
+ "value": {
1707
+ "type": "string"
1708
+ },
1709
+ "optional": true
1710
+ },
1711
+ "label": {
1712
+ "type": "objectAttribute",
1713
+ "value": {
1714
+ "type": "string"
1715
+ },
1716
+ "optional": true
1717
+ },
1718
+ "title": {
1719
+ "type": "objectAttribute",
1720
+ "value": {
1721
+ "type": "string"
1722
+ },
1723
+ "optional": true
1724
+ },
1725
+ "description": {
1726
+ "type": "objectAttribute",
1727
+ "value": {
1728
+ "type": "string"
1729
+ },
1730
+ "optional": true
1731
+ },
1732
+ "altText": {
1733
+ "type": "objectAttribute",
1734
+ "value": {
1735
+ "type": "string"
1736
+ },
1737
+ "optional": true
1738
+ },
1739
+ "sha1hash": {
1740
+ "type": "objectAttribute",
1741
+ "value": {
1742
+ "type": "string"
1743
+ },
1744
+ "optional": true
1745
+ },
1746
+ "extension": {
1747
+ "type": "objectAttribute",
1748
+ "value": {
1749
+ "type": "string"
1750
+ },
1751
+ "optional": true
1752
+ },
1753
+ "mimeType": {
1754
+ "type": "objectAttribute",
1755
+ "value": {
1756
+ "type": "string"
1757
+ },
1758
+ "optional": true
1759
+ },
1760
+ "size": {
1761
+ "type": "objectAttribute",
1762
+ "value": {
1763
+ "type": "number"
1764
+ },
1765
+ "optional": true
1766
+ },
1767
+ "assetId": {
1768
+ "type": "objectAttribute",
1769
+ "value": {
1770
+ "type": "string"
1771
+ },
1772
+ "optional": true
1773
+ },
1774
+ "uploadId": {
1775
+ "type": "objectAttribute",
1776
+ "value": {
1777
+ "type": "string"
1778
+ },
1779
+ "optional": true
1780
+ },
1781
+ "path": {
1782
+ "type": "objectAttribute",
1783
+ "value": {
1784
+ "type": "string"
1785
+ },
1786
+ "optional": true
1787
+ },
1788
+ "url": {
1789
+ "type": "objectAttribute",
1790
+ "value": {
1791
+ "type": "string"
1792
+ },
1793
+ "optional": true
1794
+ },
1795
+ "metadata": {
1796
+ "type": "objectAttribute",
1797
+ "value": {
1798
+ "type": "inline",
1799
+ "name": "sanity.imageMetadata"
1800
+ },
1801
+ "optional": true
1802
+ },
1803
+ "source": {
1804
+ "type": "objectAttribute",
1805
+ "value": {
1806
+ "type": "inline",
1807
+ "name": "sanity.assetSourceData"
1808
+ },
1809
+ "optional": true
1810
+ }
1811
+ }
1812
+ },
1813
+ {
1814
+ "name": "geopoint",
1815
+ "type": "type",
1816
+ "value": {
1817
+ "type": "object",
1818
+ "attributes": {
1819
+ "_type": {
1820
+ "type": "objectAttribute",
1821
+ "value": {
1822
+ "type": "string",
1823
+ "value": "geopoint"
1824
+ }
1825
+ },
1826
+ "lat": {
1827
+ "type": "objectAttribute",
1828
+ "value": {
1829
+ "type": "number"
1830
+ },
1831
+ "optional": true
1832
+ },
1833
+ "lng": {
1834
+ "type": "objectAttribute",
1835
+ "value": {
1836
+ "type": "number"
1837
+ },
1838
+ "optional": true
1839
+ },
1840
+ "alt": {
1841
+ "type": "objectAttribute",
1842
+ "value": {
1843
+ "type": "number"
1844
+ },
1845
+ "optional": true
1846
+ }
1847
+ }
1848
+ }
1849
+ }
1850
+ ]