Nuxeo · Schema

taskInfo

Content ManagementDigital Asset ManagementEnterpriseDocumentsWorkflowsSearchOpen Source

Properties

Name Type Description
actions array
layoutResource object
View JSON Schema on GitHub

JSON Schema

taskInfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuxeo/main/json-schema/taskInfo.json",
  "title": "taskInfo",
  "properties": {
    "actions": {
      "items": {
        "$ref": "#/components/schemas/taskAction"
      },
      "type": "array",
      "uniqueItems": false
    },
    "layoutResource": {
      "properties": {
        "name": {
          "type": "string",
          "uniqueItems": false
        },
        "url": {
          "type": "string",
          "format": "uri",
          "uniqueItems": false
        }
      },
      "required": [
        "name",
        "url"
      ],
      "uniqueItems": false
    }
  },
  "required": [
    "actions",
    "layoutResource"
  ],
  "uniqueItems": false
}