{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Partner Logos", "description": "Grayscale partner logo grid with hover-to-color treatment", "type": "object", "properties": { "title": { "type": "string", "title": "Section Title", "description": "Heading above the logo grid", "x-editor": "text" }, "logos": { "type": "array", "title": "Logos", "description": "Partner logos", "x-editor": "collection", "items": { "type": "object", "properties": { "name": { "type": "string", "title": "Partner Name", "x-editor": "text" }, "image": { "type": "string", "title": "Logo Image", "x-editor": "media" }, "url": { "type": "string", "title": "Partner URL", "x-editor": "link" } } } } } }