{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://flowable.com/beans.json", "type": "array", "title": "The Design Beans Schema", "description": "This is a helper resource, not officially supported", "items": { "minItems": 1, "$ref": "#/definitions/bean" }, "definitions": { "bean": { "type": "object", "required": [ "name", "type" ], "properties": { "id": { "type": "string", "title": "Name", "description": "The name of the bean" }, "type": { "type": "string", "title": "Type", "description": "The type of the bean. If this is a custom type it needs to be defined as part of the type definitions." }, "label": { "type": "string", "title": "Label", "description": "The label for the bean. Used for the UI in Design." }, "scopeTypes": { "type": "array", "title": "Scope types", "description": "In which scope types should this bean should be exposed", "items": [ { "type": "string", "enum": [ "bpmn", "cmmn", "form", "page" ] } ] } } } } }