{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Client Logo Strip", "description": "Row of client logos rendered greyscale until hover.", "type": "object", "properties": { "caption": { "type": "string", "title": "Caption", "description": "Short heading above the logo row", "x-editor": "text" }, "logos": { "type": "array", "title": "Logos", "description": "Client logos shown in a single restrained row", "default": [], "x-editor": "collection", "items": { "type": "object", "properties": { "src": { "type": "string", "title": "Image", "x-editor": "media" }, "alt": { "type": "string", "title": "Alt text", "x-editor": "text" }, "href": { "type": "string", "title": "Link", "x-editor": "link" } }, "required": ["alt"] } } } }