create-boject-cms 0.0.1-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,851 @@
1
+ {
2
+ "version": 2,
3
+ "exportedAt": "2026-06-15T20:42:46.976Z",
4
+ "portable": true,
5
+ "contentTypes": [
6
+ {
7
+ "id": null,
8
+ "identifier": "Image",
9
+ "name": "Image",
10
+ "description": "A reusable image asset with editorial metadata.",
11
+ "fields": [
12
+ {
13
+ "id": null,
14
+ "identifier": "name",
15
+ "name": "Name",
16
+ "type": "ENTRY_TITLE",
17
+ "required": true,
18
+ "order": 0,
19
+ "options": null
20
+ },
21
+ {
22
+ "id": null,
23
+ "identifier": "file",
24
+ "name": "File",
25
+ "type": "IMAGE",
26
+ "required": true,
27
+ "order": 1,
28
+ "options": null
29
+ },
30
+ {
31
+ "id": null,
32
+ "identifier": "alt",
33
+ "name": "Alt text",
34
+ "type": "TEXT",
35
+ "required": false,
36
+ "order": 2,
37
+ "options": null
38
+ },
39
+ {
40
+ "id": null,
41
+ "identifier": "credit",
42
+ "name": "Credit",
43
+ "type": "TEXT",
44
+ "required": false,
45
+ "order": 3,
46
+ "options": null
47
+ },
48
+ {
49
+ "id": null,
50
+ "identifier": "caption",
51
+ "name": "Caption",
52
+ "type": "TEXTAREA",
53
+ "required": false,
54
+ "order": 4,
55
+ "options": null
56
+ }
57
+ ]
58
+ },
59
+ {
60
+ "id": null,
61
+ "identifier": "Tag",
62
+ "name": "Tag",
63
+ "description": "A categorisation tag used by content entries.",
64
+ "fields": [
65
+ {
66
+ "id": null,
67
+ "identifier": "name",
68
+ "name": "Name",
69
+ "type": "ENTRY_TITLE",
70
+ "required": true,
71
+ "order": 0,
72
+ "options": null
73
+ },
74
+ {
75
+ "id": null,
76
+ "identifier": "slug",
77
+ "name": "Slug",
78
+ "type": "SLUG",
79
+ "required": false,
80
+ "order": 1,
81
+ "options": null
82
+ }
83
+ ]
84
+ },
85
+ {
86
+ "id": null,
87
+ "identifier": "Author",
88
+ "name": "Author",
89
+ "description": "A content author with bio and headshot.",
90
+ "fields": [
91
+ {
92
+ "id": null,
93
+ "identifier": "name",
94
+ "name": "Name",
95
+ "type": "ENTRY_TITLE",
96
+ "required": true,
97
+ "order": 0,
98
+ "options": null
99
+ },
100
+ {
101
+ "id": null,
102
+ "identifier": "slug",
103
+ "name": "Slug",
104
+ "type": "SLUG",
105
+ "required": false,
106
+ "order": 1,
107
+ "options": null
108
+ },
109
+ {
110
+ "id": null,
111
+ "identifier": "bio",
112
+ "name": "Bio",
113
+ "type": "TEXTAREA",
114
+ "required": false,
115
+ "order": 2,
116
+ "options": null
117
+ },
118
+ {
119
+ "id": null,
120
+ "identifier": "headshot",
121
+ "name": "Headshot",
122
+ "type": "RELATION",
123
+ "required": false,
124
+ "order": 3,
125
+ "options": {
126
+ "targetContentTypeIds": [null],
127
+ "targetContentTypeIdentifiers": ["Image"]
128
+ }
129
+ }
130
+ ]
131
+ },
132
+ {
133
+ "id": null,
134
+ "identifier": "Article",
135
+ "name": "Article",
136
+ "description": "An editorial article with rich text body, author, tags, and SEO metadata.",
137
+ "fields": [
138
+ {
139
+ "id": null,
140
+ "identifier": "title",
141
+ "name": "Title",
142
+ "type": "ENTRY_TITLE",
143
+ "required": true,
144
+ "order": 0,
145
+ "options": null
146
+ },
147
+ {
148
+ "id": null,
149
+ "identifier": "slug",
150
+ "name": "Slug",
151
+ "type": "SLUG",
152
+ "required": false,
153
+ "order": 1,
154
+ "options": null
155
+ },
156
+ {
157
+ "id": null,
158
+ "identifier": "summary",
159
+ "name": "Summary",
160
+ "type": "TEXTAREA",
161
+ "required": false,
162
+ "order": 2,
163
+ "options": null
164
+ },
165
+ {
166
+ "id": null,
167
+ "identifier": "body",
168
+ "name": "Body",
169
+ "type": "RICHTEXT",
170
+ "required": false,
171
+ "order": 3,
172
+ "options": null
173
+ },
174
+ {
175
+ "id": null,
176
+ "identifier": "author",
177
+ "name": "Author",
178
+ "type": "RELATION",
179
+ "required": false,
180
+ "order": 4,
181
+ "options": {
182
+ "targetContentTypeIds": [null],
183
+ "targetContentTypeIdentifiers": ["Author"]
184
+ }
185
+ },
186
+ {
187
+ "id": null,
188
+ "identifier": "tags",
189
+ "name": "Tags",
190
+ "type": "MULTIRELATION",
191
+ "required": false,
192
+ "order": 5,
193
+ "options": {
194
+ "targetContentTypeIds": [null],
195
+ "targetContentTypeIdentifiers": ["Tag"]
196
+ }
197
+ },
198
+ {
199
+ "id": null,
200
+ "identifier": "featuredImage",
201
+ "name": "Featured image",
202
+ "type": "RELATION",
203
+ "required": false,
204
+ "order": 6,
205
+ "options": {
206
+ "targetContentTypeIds": [null],
207
+ "targetContentTypeIdentifiers": ["Image"]
208
+ }
209
+ },
210
+ {
211
+ "id": null,
212
+ "identifier": "metaTitle",
213
+ "name": "Meta title",
214
+ "type": "TEXT",
215
+ "required": false,
216
+ "order": 7,
217
+ "options": null
218
+ },
219
+ {
220
+ "id": null,
221
+ "identifier": "metaDescription",
222
+ "name": "Meta description",
223
+ "type": "TEXTAREA",
224
+ "required": false,
225
+ "order": 8,
226
+ "options": null
227
+ },
228
+ {
229
+ "id": null,
230
+ "identifier": "metaImage",
231
+ "name": "Meta image",
232
+ "type": "RELATION",
233
+ "required": false,
234
+ "order": 9,
235
+ "options": {
236
+ "targetContentTypeIds": [null],
237
+ "targetContentTypeIdentifiers": ["Image"]
238
+ }
239
+ },
240
+ {
241
+ "id": null,
242
+ "identifier": "canonicalUrl",
243
+ "name": "Canonical URL",
244
+ "type": "TEXT",
245
+ "required": false,
246
+ "order": 10,
247
+ "options": null
248
+ },
249
+ {
250
+ "id": null,
251
+ "identifier": "noIndex",
252
+ "name": "No index",
253
+ "type": "BOOLEAN",
254
+ "required": false,
255
+ "order": 11,
256
+ "options": {
257
+ "default": false
258
+ }
259
+ }
260
+ ]
261
+ },
262
+ {
263
+ "id": null,
264
+ "identifier": "Page",
265
+ "name": "Page",
266
+ "description": "A standalone page with rich text body and SEO metadata.",
267
+ "fields": [
268
+ {
269
+ "id": null,
270
+ "identifier": "title",
271
+ "name": "Title",
272
+ "type": "ENTRY_TITLE",
273
+ "required": true,
274
+ "order": 0,
275
+ "options": null
276
+ },
277
+ {
278
+ "id": null,
279
+ "identifier": "slug",
280
+ "name": "Slug",
281
+ "type": "SLUG",
282
+ "required": false,
283
+ "order": 1,
284
+ "options": null
285
+ },
286
+ {
287
+ "id": null,
288
+ "identifier": "body",
289
+ "name": "Body",
290
+ "type": "RICHTEXT",
291
+ "required": false,
292
+ "order": 2,
293
+ "options": null
294
+ },
295
+ {
296
+ "id": null,
297
+ "identifier": "metaTitle",
298
+ "name": "Meta title",
299
+ "type": "TEXT",
300
+ "required": false,
301
+ "order": 3,
302
+ "options": null
303
+ },
304
+ {
305
+ "id": null,
306
+ "identifier": "metaDescription",
307
+ "name": "Meta description",
308
+ "type": "TEXTAREA",
309
+ "required": false,
310
+ "order": 4,
311
+ "options": null
312
+ },
313
+ {
314
+ "id": null,
315
+ "identifier": "metaImage",
316
+ "name": "Meta image",
317
+ "type": "RELATION",
318
+ "required": false,
319
+ "order": 5,
320
+ "options": {
321
+ "targetContentTypeIds": [null],
322
+ "targetContentTypeIdentifiers": ["Image"]
323
+ }
324
+ },
325
+ {
326
+ "id": null,
327
+ "identifier": "canonicalUrl",
328
+ "name": "Canonical URL",
329
+ "type": "TEXT",
330
+ "required": false,
331
+ "order": 6,
332
+ "options": null
333
+ },
334
+ {
335
+ "id": null,
336
+ "identifier": "noIndex",
337
+ "name": "No index",
338
+ "type": "BOOLEAN",
339
+ "required": false,
340
+ "order": 7,
341
+ "options": null
342
+ }
343
+ ]
344
+ },
345
+ {
346
+ "id": null,
347
+ "identifier": "SiteSettings",
348
+ "name": "Site Settings",
349
+ "description": "Site-wide configuration. Singleton by convention — only one entry.",
350
+ "fields": [
351
+ {
352
+ "id": null,
353
+ "identifier": "name",
354
+ "name": "Name",
355
+ "type": "ENTRY_TITLE",
356
+ "required": true,
357
+ "order": 0,
358
+ "options": null
359
+ },
360
+ {
361
+ "id": null,
362
+ "identifier": "siteName",
363
+ "name": "Site name",
364
+ "type": "TEXT",
365
+ "required": true,
366
+ "order": 1,
367
+ "options": null
368
+ },
369
+ {
370
+ "id": null,
371
+ "identifier": "logo",
372
+ "name": "Logo",
373
+ "type": "RELATION",
374
+ "required": false,
375
+ "order": 2,
376
+ "options": {
377
+ "targetContentTypeIds": [null],
378
+ "targetContentTypeIdentifiers": ["Image"]
379
+ }
380
+ },
381
+ {
382
+ "id": null,
383
+ "identifier": "defaultOgImage",
384
+ "name": "Default OG image",
385
+ "type": "RELATION",
386
+ "required": false,
387
+ "order": 3,
388
+ "options": {
389
+ "targetContentTypeIds": [null],
390
+ "targetContentTypeIdentifiers": ["Image"]
391
+ }
392
+ },
393
+ {
394
+ "id": null,
395
+ "identifier": "footerCopy",
396
+ "name": "Footer copy",
397
+ "type": "TEXTAREA",
398
+ "required": false,
399
+ "order": 4,
400
+ "options": null
401
+ }
402
+ ]
403
+ },
404
+ {
405
+ "id": null,
406
+ "identifier": "Navigation",
407
+ "name": "Navigation",
408
+ "description": "A named navigation tree (e.g. Main, Footer).",
409
+ "fields": [
410
+ {
411
+ "id": null,
412
+ "identifier": "name",
413
+ "name": "Name",
414
+ "type": "ENTRY_TITLE",
415
+ "required": true,
416
+ "order": 0,
417
+ "options": null
418
+ },
419
+ {
420
+ "id": null,
421
+ "identifier": "items",
422
+ "name": "Items",
423
+ "type": "MULTIRELATION",
424
+ "required": false,
425
+ "order": 1,
426
+ "options": {
427
+ "targetContentTypeIds": [null],
428
+ "targetContentTypeIdentifiers": ["NavigationItem"]
429
+ }
430
+ }
431
+ ]
432
+ },
433
+ {
434
+ "id": null,
435
+ "identifier": "NavigationItem",
436
+ "name": "Navigation item",
437
+ "description": "A single link inside a Navigation. Either url or internalLink should be set.",
438
+ "fields": [
439
+ {
440
+ "id": null,
441
+ "identifier": "label",
442
+ "name": "Label",
443
+ "type": "ENTRY_TITLE",
444
+ "required": true,
445
+ "order": 0,
446
+ "options": null
447
+ },
448
+ {
449
+ "id": null,
450
+ "identifier": "url",
451
+ "name": "URL",
452
+ "type": "TEXT",
453
+ "required": false,
454
+ "order": 1,
455
+ "options": null
456
+ },
457
+ {
458
+ "id": null,
459
+ "identifier": "internalLink",
460
+ "name": "Internal link",
461
+ "type": "RELATION",
462
+ "required": false,
463
+ "order": 2,
464
+ "options": {
465
+ "targetContentTypeIds": [null, null],
466
+ "targetContentTypeIdentifiers": ["Article", "Page"]
467
+ }
468
+ },
469
+ {
470
+ "id": null,
471
+ "identifier": "openInNewTab",
472
+ "name": "Open in new tab",
473
+ "type": "BOOLEAN",
474
+ "required": false,
475
+ "order": 3,
476
+ "options": null
477
+ }
478
+ ]
479
+ },
480
+ {
481
+ "id": null,
482
+ "identifier": "Team",
483
+ "name": "Team",
484
+ "description": "An internal club squad (e.g. 1st XV, Veterans).",
485
+ "fields": [
486
+ {
487
+ "id": null,
488
+ "identifier": "name",
489
+ "name": "Name",
490
+ "type": "ENTRY_TITLE",
491
+ "required": true,
492
+ "order": 0,
493
+ "options": null
494
+ },
495
+ {
496
+ "id": null,
497
+ "identifier": "slug",
498
+ "name": "Slug",
499
+ "type": "SLUG",
500
+ "required": false,
501
+ "order": 1,
502
+ "options": null
503
+ },
504
+ {
505
+ "id": null,
506
+ "identifier": "description",
507
+ "name": "Description",
508
+ "type": "TEXTAREA",
509
+ "required": false,
510
+ "order": 2,
511
+ "options": null
512
+ }
513
+ ]
514
+ },
515
+ {
516
+ "id": null,
517
+ "identifier": "Club",
518
+ "name": "Club",
519
+ "description": "An external opponent club.",
520
+ "fields": [
521
+ {
522
+ "id": null,
523
+ "identifier": "name",
524
+ "name": "Name",
525
+ "type": "ENTRY_TITLE",
526
+ "required": true,
527
+ "order": 0,
528
+ "options": null
529
+ },
530
+ {
531
+ "id": null,
532
+ "identifier": "slug",
533
+ "name": "Slug",
534
+ "type": "SLUG",
535
+ "required": false,
536
+ "order": 1,
537
+ "options": null
538
+ },
539
+ {
540
+ "id": null,
541
+ "identifier": "crest",
542
+ "name": "Crest",
543
+ "type": "RELATION",
544
+ "required": false,
545
+ "order": 2,
546
+ "options": {
547
+ "targetContentTypeIds": [null],
548
+ "targetContentTypeIdentifiers": ["Image"]
549
+ }
550
+ }
551
+ ]
552
+ },
553
+ {
554
+ "id": null,
555
+ "identifier": "Season",
556
+ "name": "Season",
557
+ "description": "A time-bounded competitive season.",
558
+ "fields": [
559
+ {
560
+ "id": null,
561
+ "identifier": "name",
562
+ "name": "Name",
563
+ "type": "ENTRY_TITLE",
564
+ "required": true,
565
+ "order": 0,
566
+ "options": null
567
+ },
568
+ {
569
+ "id": null,
570
+ "identifier": "startDate",
571
+ "name": "Start date",
572
+ "type": "DATETIME",
573
+ "required": true,
574
+ "order": 1,
575
+ "options": null
576
+ },
577
+ {
578
+ "id": null,
579
+ "identifier": "endDate",
580
+ "name": "End date",
581
+ "type": "DATETIME",
582
+ "required": true,
583
+ "order": 2,
584
+ "options": null
585
+ }
586
+ ]
587
+ },
588
+ {
589
+ "id": null,
590
+ "identifier": "Competition",
591
+ "name": "Competition",
592
+ "description": "A league, cup, or tournament.",
593
+ "fields": [
594
+ {
595
+ "id": null,
596
+ "identifier": "name",
597
+ "name": "Name",
598
+ "type": "ENTRY_TITLE",
599
+ "required": true,
600
+ "order": 0,
601
+ "options": null
602
+ },
603
+ {
604
+ "id": null,
605
+ "identifier": "slug",
606
+ "name": "Slug",
607
+ "type": "SLUG",
608
+ "required": false,
609
+ "order": 1,
610
+ "options": null
611
+ },
612
+ {
613
+ "id": null,
614
+ "identifier": "season",
615
+ "name": "Season",
616
+ "type": "RELATION",
617
+ "required": false,
618
+ "order": 2,
619
+ "options": {
620
+ "targetContentTypeIds": [null],
621
+ "targetContentTypeIdentifiers": ["Season"]
622
+ }
623
+ },
624
+ {
625
+ "id": null,
626
+ "identifier": "teams",
627
+ "name": "Teams",
628
+ "type": "MULTIRELATION",
629
+ "required": false,
630
+ "order": 3,
631
+ "options": {
632
+ "targetContentTypeIds": [null],
633
+ "targetContentTypeIdentifiers": ["Team"]
634
+ }
635
+ }
636
+ ]
637
+ },
638
+ {
639
+ "id": null,
640
+ "identifier": "Fixture",
641
+ "name": "Fixture",
642
+ "description": "A scheduled or completed match.",
643
+ "fields": [
644
+ {
645
+ "id": null,
646
+ "identifier": "matchup",
647
+ "name": "Matchup",
648
+ "type": "ENTRY_TITLE",
649
+ "required": true,
650
+ "order": 0,
651
+ "options": null
652
+ },
653
+ {
654
+ "id": null,
655
+ "identifier": "team",
656
+ "name": "Team",
657
+ "type": "RELATION",
658
+ "required": true,
659
+ "order": 1,
660
+ "options": {
661
+ "targetContentTypeIds": [null],
662
+ "targetContentTypeIdentifiers": ["Team"]
663
+ }
664
+ },
665
+ {
666
+ "id": null,
667
+ "identifier": "opponent",
668
+ "name": "Opponent",
669
+ "type": "RELATION",
670
+ "required": false,
671
+ "order": 2,
672
+ "options": {
673
+ "targetContentTypeIds": [null],
674
+ "targetContentTypeIdentifiers": ["Club"]
675
+ }
676
+ },
677
+ {
678
+ "id": null,
679
+ "identifier": "competition",
680
+ "name": "Competition",
681
+ "type": "RELATION",
682
+ "required": false,
683
+ "order": 3,
684
+ "options": {
685
+ "targetContentTypeIds": [null],
686
+ "targetContentTypeIdentifiers": ["Competition"]
687
+ }
688
+ },
689
+ {
690
+ "id": null,
691
+ "identifier": "season",
692
+ "name": "Season",
693
+ "type": "RELATION",
694
+ "required": false,
695
+ "order": 4,
696
+ "options": {
697
+ "targetContentTypeIds": [null],
698
+ "targetContentTypeIdentifiers": ["Season"]
699
+ }
700
+ },
701
+ {
702
+ "id": null,
703
+ "identifier": "kickoff",
704
+ "name": "Kickoff",
705
+ "type": "DATETIME",
706
+ "required": true,
707
+ "order": 5,
708
+ "options": null
709
+ },
710
+ {
711
+ "id": null,
712
+ "identifier": "isHome",
713
+ "name": "Home fixture",
714
+ "type": "BOOLEAN",
715
+ "required": false,
716
+ "order": 6,
717
+ "options": null
718
+ }
719
+ ]
720
+ },
721
+ {
722
+ "id": null,
723
+ "identifier": "Player",
724
+ "name": "Player",
725
+ "description": "An individual player profile.",
726
+ "fields": [
727
+ {
728
+ "id": null,
729
+ "identifier": "name",
730
+ "name": "Name",
731
+ "type": "ENTRY_TITLE",
732
+ "required": true,
733
+ "order": 0,
734
+ "options": null
735
+ },
736
+ {
737
+ "id": null,
738
+ "identifier": "slug",
739
+ "name": "Slug",
740
+ "type": "SLUG",
741
+ "required": false,
742
+ "order": 1,
743
+ "options": null
744
+ },
745
+ {
746
+ "id": null,
747
+ "identifier": "bio",
748
+ "name": "Bio",
749
+ "type": "TEXTAREA",
750
+ "required": false,
751
+ "order": 2,
752
+ "options": null
753
+ },
754
+ {
755
+ "id": null,
756
+ "identifier": "headshot",
757
+ "name": "Headshot",
758
+ "type": "RELATION",
759
+ "required": false,
760
+ "order": 3,
761
+ "options": {
762
+ "targetContentTypeIds": [null],
763
+ "targetContentTypeIdentifiers": ["Image"]
764
+ }
765
+ },
766
+ {
767
+ "id": null,
768
+ "identifier": "team",
769
+ "name": "Team",
770
+ "type": "RELATION",
771
+ "required": false,
772
+ "order": 4,
773
+ "options": {
774
+ "targetContentTypeIds": [null],
775
+ "targetContentTypeIdentifiers": ["Team"]
776
+ }
777
+ },
778
+ {
779
+ "id": null,
780
+ "identifier": "position",
781
+ "name": "Position",
782
+ "type": "RELATION",
783
+ "required": false,
784
+ "order": 10,
785
+ "options": {
786
+ "targetContentTypeIds": [null],
787
+ "targetContentTypeIdentifiers": ["Position"]
788
+ }
789
+ }
790
+ ]
791
+ },
792
+ {
793
+ "id": null,
794
+ "identifier": "Position",
795
+ "name": "Position",
796
+ "description": "A rugby playing position (e.g. Fly-half, Hooker).",
797
+ "fields": [
798
+ {
799
+ "id": null,
800
+ "identifier": "name",
801
+ "name": "Name",
802
+ "type": "ENTRY_TITLE",
803
+ "required": true,
804
+ "order": 0,
805
+ "options": null
806
+ },
807
+ {
808
+ "id": null,
809
+ "identifier": "slug",
810
+ "name": "Slug",
811
+ "type": "SLUG",
812
+ "required": false,
813
+ "order": 1,
814
+ "options": null
815
+ },
816
+ {
817
+ "id": null,
818
+ "identifier": "abbreviation",
819
+ "name": "Abbreviation",
820
+ "type": "TEXT",
821
+ "required": false,
822
+ "order": 2,
823
+ "options": null
824
+ }
825
+ ]
826
+ }
827
+ ],
828
+ "entries": [
829
+ {
830
+ "id": null,
831
+ "contentTypeId": null,
832
+ "contentTypeIdentifier": "SiteSettings",
833
+ "entryTitle": "Site Settings",
834
+ "entryKey": "site-settings",
835
+ "slug": null,
836
+ "versions": [
837
+ {
838
+ "status": "PUBLISHED",
839
+ "data": {
840
+ "name": "Site Settings",
841
+ "siteName": "My Site",
842
+ "logo": null,
843
+ "defaultOgImage": null,
844
+ "footerCopy": "© {{year}} My Site. All rights reserved."
845
+ },
846
+ "publishedAt": null
847
+ }
848
+ ]
849
+ }
850
+ ]
851
+ }