themes-editorial/schemas/colophon.schema.json
Alex Dunmow 1d9a4c8ce6 initial: theme plugin editorial
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/editorial.

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

47 lines
1.3 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Colophon",
"description": "Editorial footer with print-convention ISSN field, optional subscribe stub, and a list of footer links.",
"type": "object",
"properties": {
"showSignup": {
"type": "string",
"title": "Show Subscribe Stub",
"description": "Render the newsletter subscribe stub above the link list.",
"x-editor": "select",
"enum": ["false", "true"],
"default": "false"
},
"issn": {
"type": "string",
"title": "ISSN",
"description": "Print-convention ISSN number. Rendered in JetBrains Mono small caps.",
"x-editor": "text"
},
"links": {
"type": "array",
"title": "Footer Links",
"description": "Inline footer link list.",
"default": [],
"x-editor": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string",
"title": "Link Text",
"description": "Display text.",
"x-editor": "text"
},
"url": {
"type": "string",
"title": "URL",
"description": "External URL.",
"x-editor": "link"
}
}
}
}
}
}