themes-editorial/schemas/section_label.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

23 lines
632 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Section Label",
"description": "Small-caps section label followed by an optional hairline divider rule.",
"type": "object",
"properties": {
"label": {
"type": "string",
"title": "Label",
"description": "Section label text. Rendered uppercase with small-caps.",
"x-editor": "text"
},
"divider": {
"type": "string",
"title": "Divider",
"description": "Whether to render a hairline rule beneath the label.",
"x-editor": "select",
"enum": ["true", "false"],
"default": "true"
}
}
}