{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Neon Feature Card", "description": "Single feature card with icon, title, body and per-card neon edge glow.", "type": "object", "properties": { "icon": { "type": "string", "title": "Icon", "description": "Media reference for the feature icon", "x-editor": "media" }, "title": { "type": "string", "title": "Title", "description": "Card heading", "x-editor": "text" }, "body": { "type": "string", "title": "Body", "description": "Supporting rich text", "x-editor": "richtext" }, "accent": { "type": "string", "title": "Accent", "description": "Neon edge colour: magenta, cyan or lime", "x-editor": "select", "enum": ["magenta", "cyan", "lime"], "default": "magenta" } } }