themes-y2k/schemas/merch_card.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

42 lines
952 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Merch Card",
"description": "Plastic-bevel product card with a price sticker.",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Product Title",
"x-editor": "text",
"default": ""
},
"price": {
"type": "string",
"title": "Price",
"description": "Display string e.g. $24.",
"x-editor": "text",
"default": ""
},
"image": {
"type": "string",
"title": "Image",
"x-editor": "media",
"default": ""
},
"buyHref": {
"type": "string",
"title": "Buy Link",
"x-editor": "link",
"default": ""
},
"sticker": {
"type": "string",
"title": "Sticker",
"description": "Corner sticker badge variant.",
"x-editor": "select",
"enum": ["", "new", "hot", "sale", "sold-out"],
"default": ""
}
}
}