Nuxeo · Schema

workflowRequest

Content ManagementDigital Asset ManagementEnterpriseDocumentsWorkflowsSearchOpen Source

Properties

Name Type Description
documentIds array
entity-type string
worflowVariables object
workflowModelName string
View JSON Schema on GitHub

JSON Schema

workflowRequest.json Raw ↑
{
  "$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
}