themes-brutalist/blocks/project_ledger.schema.json
Alex Dunmow 979516b5e9 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:08:06 +08:00

52 lines
1.4 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Project Ledger",
"description": "Ordered project list on a 12-col grid: number, year, client, role, link",
"type": "object",
"properties": {
"rows": {
"type": "array",
"title": "Rows",
"description": "Project rows in display order",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"no": {
"type": "string",
"title": "Number",
"description": "Two-digit project number e.g. 01",
"x-editor": "text"
},
"year": {
"type": "string",
"title": "Year",
"description": "Year of the project",
"x-editor": "text"
},
"client": {
"type": "string",
"title": "Client",
"description": "Client name",
"x-editor": "text"
},
"role": {
"type": "string",
"title": "Role",
"description": "Discipline / role on the project",
"x-editor": "text"
},
"link": {
"type": "string",
"title": "Link",
"description": "Optional link to the project page",
"x-editor": "link"
}
},
"required": ["no", "client"]
}
}
}
}