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>
42 lines
1020 B
JSON
42 lines
1020 B
JSON
{
|
|
"$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": []
|
|
}
|
|
}
|
|
}
|