themes-y2k/schemas/tracklist.schema.json
Alex Dunmow 49f9c90589 initial: theme plugin y2k
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/y2k.

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

37 lines
857 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Tracklist",
"description": "CD-jewel-case styled track table.",
"type": "object",
"properties": {
"tracks": {
"type": "array",
"title": "Tracks",
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title",
"x-editor": "text"
},
"duration": {
"type": "string",
"title": "Duration",
"description": "Display string e.g. 3:42.",
"x-editor": "text"
},
"url": {
"type": "string",
"title": "Audio URL",
"x-editor": "text"
}
},
"required": ["title"]
},
"default": []
}
}
}