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