Nuxeo · Schema

GroupRef

Content ManagementDigital Asset ManagementEnterpriseDocumentsWorkflowsSearchOpen Source

Properties

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

JSON Schema

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