Nuxeo · Schema

OperationParamDescription

Content ManagementDigital Asset ManagementEnterpriseDocumentsWorkflowsSearchOpen Source

Properties

Name Type Description
description string
name string
order integer
required boolean
type string
values array
widget string
View JSON Schema on GitHub

JSON Schema

OperationParamDescription.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuxeo/main/json-schema/OperationParamDescription.json",
  "title": "OperationParamDescription",
  "properties": {
    "description": {
      "type": "string",
      "uniqueItems": false
    },
    "name": {
      "type": "string",
      "uniqueItems": false
    },
    "order": {
      "type": "integer",
      "uniqueItems": false
    },
    "required": {
      "type": "boolean",
      "uniqueItems": false
    },
    "type": {
      "type": "string",
      "uniqueItems": false
    },
    "values": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "uniqueItems": false
    },
    "widget": {
      "type": "string",
      "uniqueItems": false
    }
  },
  "required": [
    "description",
    "name",
    "required",
    "type"
  ],
  "uniqueItems": false
}