{ "$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": "" } } }