themes-earthen/blocks/partner_logos.schema.json
Alex Dunmow 4aeddfe352 feat: convert to codeless .bnp — templates + manifest, Go/templ deleted (WO-WZ-021)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 15:32:18 +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"
}
}
}
}
}
}