{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Discography", "description": "A grid of releases with cover art, year, and a link.", "type": "object", "properties": { "heading": { "type": "string", "title": "Heading", "x-editor": "text", "default": "Discography" }, "releases": { "type": "array", "title": "Releases", "x-editor": "array", "items": { "type": "object", "properties": { "title": { "type": "string", "title": "Title", "x-editor": "text" }, "year": { "type": "string", "title": "Year", "x-editor": "text" }, "format": { "type": "string", "title": "Format", "x-editor": "text" }, "cover": { "type": "string", "title": "Cover art", "x-editor": "media" }, "link": { "type": "string", "title": "Link", "x-editor": "text" } } }, "default": [] } } }