themes-y2k/schemas/webring_badge.schema.json
Alex Dunmow 49f9c90589 initial: theme plugin y2k
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/y2k.

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

28 lines
668 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Webring Badge",
"description": "Canonical 88x31 webring button row with prev/next/ring links.",
"type": "object",
"properties": {
"prevHref": {
"type": "string",
"title": "Previous Link",
"x-editor": "link",
"default": ""
},
"nextHref": {
"type": "string",
"title": "Next Link",
"x-editor": "link",
"default": ""
},
"ringName": {
"type": "string",
"title": "Ring Name",
"description": "Webring label displayed on the centre badge.",
"x-editor": "text",
"default": "the y2k.fm ring"
}
}
}