{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/nuxeo/main/json-schema/workflow.json", "title": "workflow", "properties": { "attachedDocumentIds": { "items": { "type": "string" }, "type": "array" }, "entity-type": { "type": "string", "uniqueItems": false }, "id": { "type": "string", "uniqueItems": false }, "initiator": { "type": "string", "uniqueItems": false }, "name": { "type": "string", "uniqueItems": false }, "variables": { "items": { "$ref": "#/components/schemas/Property" }, "type": "object", "uniqueItems": true } }, "required": [ "entity-type" ], "uniqueItems": false }