Nuxeo · Schema

group

Content ManagementDigital Asset ManagementEnterpriseDocumentsWorkflowsSearchOpen Source

Properties

Name Type Description
label string
name string
url string
View JSON Schema on GitHub

JSON Schema

group.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuxeo/main/json-schema/group.json",
  "title": "group",
  "properties": {
    "label": {
      "type": "string",
      "uniqueItems": false
    },
    "name": {
      "type": "string",
      "uniqueItems": false
    },
    "url": {
      "type": "string",
      "uniqueItems": false
    }
  },
  "required": [
    "label",
    "name",
    "url"
  ],
  "uniqueItems": false
}