{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "orgId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "blocks": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "blockType": { "type": "string" }, "title": { "type": "string", "maxLength": 255 }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "startX": { "type": "integer" }, "startY": { "type": "integer" }, "width": { "type": "integer" }, "height": { "type": "integer" }, "config": { "type": "object" } }, "required": [ "id", "blockType", "startX", "startY", "width", "height" ] } }, "description": { "type": "string", "maxLength": 32767 }, "refreshRate": { "type": "number", "minimum": 5, "maximum": 600 }, "public": { "type": "boolean" } }, "additionalProperties": false, "required": [ "name" ] }