Nuxeo · Schema

user

Content ManagementDigital Asset ManagementEnterpriseDocumentsWorkflowsSearchOpen Source

Properties

Name Type Description
entity-type string
extendedGroups object
id string
isAdministrator boolean
isAnonymous boolean
properties object
View JSON Schema on GitHub

JSON Schema

user.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuxeo/main/json-schema/user.json",
  "title": "user",
  "properties": {
    "entity-type": {
      "type": "string",
      "uniqueItems": false
    },
    "extendedGroups": {
      "items": {
        "$ref": "#/components/schemas/GroupRef"
      },
      "type": "object",
      "uniqueItems": false
    },
    "id": {
      "type": "string",
      "uniqueItems": false
    },
    "isAdministrator": {
      "type": "boolean",
      "uniqueItems": false
    },
    "isAnonymous": {
      "type": "boolean",
      "uniqueItems": false
    },
    "properties": {
      "items": {
        "$ref": "#/components/schemas/Property"
      },
      "type": "object",
      "uniqueItems": false
    }
  },
  "required": [
    "entity-type",
    "id",
    "isAdministrator",
    "isAnonymous"
  ],
  "uniqueItems": false
}