{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "openpype:config-2.0", "description": "A project configuration.", "type": "object", "additionalProperties": false, "required": [ "tasks", "apps" ], "properties": { "schema": { "description": "Schema identifier for payload", "type": "string" }, "templates": { "type": "object" }, "roots": { "type": "object" }, "imageio": { "type": "object" }, "tasks": { "type": "object", "items": { "type": "object", "properties": { "name": {"type": "string"}, "icon": {"type": "string"}, "group": {"type": "string"}, "label": {"type": "string"} }, "required": [ "short_name" ] } }, "apps": { "type": "array", "items": { "type": "object", "properties": { "name": {"type": "string"}, "icon": {"type": "string"}, "group": {"type": "string"}, "label": {"type": "string"} }, "required": ["name"] } }, "families": { "type": "array", "items": { "type": "object", "properties": { "name": {"type": "string"}, "icon": {"type": "string"}, "label": {"type": "string"}, "hideFilter": {"type": "boolean"} }, "required": ["name"] } }, "groups": { "type": "array", "items": { "type": "object", "properties": { "name": {"type": "string"}, "icon": {"type": "string"}, "color": {"type": "string"}, "order": {"type": ["integer", "number"]} }, "required": ["name"] } }, "copy": { "type": "object" } } }