themes-earthen/schemas/partner_logos.schema.json
Alex Dunmow 49401f1b41 initial: theme plugin earthen
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/earthen.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:27 +08:00

41 lines
976 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Partner Logos",
"description": "Grayscale partner logo grid with hover-to-color treatment",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Section Title",
"description": "Heading above the logo grid",
"x-editor": "text"
},
"logos": {
"type": "array",
"title": "Logos",
"description": "Partner logos",
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Partner Name",
"x-editor": "text"
},
"image": {
"type": "string",
"title": "Logo Image",
"x-editor": "media"
},
"url": {
"type": "string",
"title": "Partner URL",
"x-editor": "link"
}
}
}
}
}
}