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

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

54 lines
1.3 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Colophon Footer",
"description": "Three-row mono footer with address, email, and social links",
"type": "object",
"properties": {
"address": {
"type": "string",
"title": "Address",
"description": "Studio postal address",
"x-editor": "textarea"
},
"email": {
"type": "string",
"title": "Contact Email",
"description": "Contact email rendered in mono",
"x-editor": "text"
},
"showAddress": {
"type": "string",
"title": "Show Address",
"description": "Toggle the address row on or off",
"x-editor": "select",
"enum": ["true", "false"],
"default": "true"
},
"social": {
"type": "array",
"title": "Social Links",
"description": "Optional list of social links",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string",
"title": "Label",
"description": "Display label",
"x-editor": "text"
},
"url": {
"type": "string",
"title": "URL",
"description": "Target URL",
"x-editor": "link"
}
},
"required": ["label", "url"]
}
}
}
}