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>
35 lines
841 B
JSON
35 lines
841 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Waveform Player",
|
|
"description": "Soundcloud-style audio block with a canvas waveform.",
|
|
"type": "object",
|
|
"properties": {
|
|
"trackTitle": {
|
|
"type": "string",
|
|
"title": "Track Title",
|
|
"x-editor": "text",
|
|
"default": ""
|
|
},
|
|
"audioUrl": {
|
|
"type": "string",
|
|
"title": "Audio URL",
|
|
"description": "Direct URL to the audio file (mp3 / m4a / ogg).",
|
|
"x-editor": "text",
|
|
"default": ""
|
|
},
|
|
"artist": {
|
|
"type": "string",
|
|
"title": "Artist",
|
|
"x-editor": "text",
|
|
"default": ""
|
|
},
|
|
"coverImage": {
|
|
"type": "string",
|
|
"title": "Cover Image",
|
|
"description": "Square cover art shown next to the waveform.",
|
|
"x-editor": "media",
|
|
"default": ""
|
|
}
|
|
}
|
|
}
|