{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "NFT Gallery", "description": "Holographic-foil hover gallery of NFT items (presentational only).", "type": "object", "properties": { "items": { "type": "array", "title": "Items", "x-editor": "collection", "items": { "type": "object", "properties": { "title": { "type": "string", "title": "Title", "x-editor": "text" }, "image": { "type": "string", "title": "Image", "x-editor": "media" }, "chain": { "type": "string", "title": "Chain", "x-editor": "select", "enum": ["", "eth", "sol", "polygon", "base", "tezos"] }, "href": { "type": "string", "title": "Link", "x-editor": "link" } }, "required": ["title"] }, "default": [] } } }