themes-corporate-modernist/schemas/leadership_grid.schema.json
Alex Dunmow 4713787bbd initial: theme plugin corporate-modernist
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/corporate-modernist.

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

33 lines
1.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Leadership Grid",
"description": "Responsive 2/3/4-up grid of leadership profiles.",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title",
"description": "Section title above the grid",
"x-editor": "text"
},
"members": {
"type": "array",
"title": "Members",
"description": "Each member is a card with photo, name, role, short bio, and optional LinkedIn link",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"name": { "type": "string", "title": "Name", "x-editor": "text" },
"role": { "type": "string", "title": "Role", "x-editor": "text" },
"bio": { "type": "string", "title": "Bio", "x-editor": "textarea" },
"photo": { "type": "string", "title": "Photo", "x-editor": "media" },
"linkedin": { "type": "string", "title": "LinkedIn URL", "x-editor": "link" }
},
"required": ["name"]
}
}
}
}