themes-magazine-bold/blocks/issue_archive.schema.json
Alex Dunmow 989f1fb515 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:28:29 +08:00

24 lines
590 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Issue Archive",
"description": "Numbered list of back-issues driven by a bucket query.",
"type": "object",
"properties": {
"bucketSlug": {
"type": "string",
"title": "Issues Bucket",
"description": "Bucket that holds the issue rows.",
"x-editor": "bucket-picker"
},
"limit": {
"type": "integer",
"title": "Limit",
"description": "How many issues to render.",
"x-editor": "number",
"minimum": 1,
"maximum": 50,
"default": 12
}
}
}