{ "$schema": "http://json-schema.org/draft-04/schema", "type": "object", "properties": { "links":{ "type":"array", "title": "Links", "description": "List of Links", "items": { "type":"object", "properties": { "title": { "type":"string", "description": "Title in LinkBox" }, "subtitle": { "type":"string", "description": "Subtitle in LinkBox" }, "url":{ "type":"string", "description": "Url of the link" }, "logo":{ "type":"string", "description": "Logo of the Link" } }, "required":[ "title", "url" ] } } } }