themes-magazine-bold/schemas/photo_essay.schema.json
Alex Dunmow fe754f634b initial: theme plugin magazine-bold
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/magazine-bold.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:38 +08:00

48 lines
1.2 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Photo Essay",
"description": "Numbered photo-essay scaffolding with asymmetric frame spans.",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Essay Title",
"description": "Essay heading shown above the frames.",
"x-editor": "text"
},
"frames": {
"type": "array",
"title": "Frames",
"description": "Ordered list of photo frames in the essay.",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"image": {
"type": "string",
"title": "Image",
"description": "Frame image.",
"x-editor": "media"
},
"caption": {
"type": "string",
"title": "Caption",
"description": "Mono-set caption.",
"x-editor": "text"
},
"span": {
"type": "string",
"title": "Span",
"description": "Frame layout span.",
"enum": ["half", "full", "tall"],
"default": "half",
"x-editor": "select"
}
},
"required": ["image"]
}
}
}
}