Nuxeo · Schema

AuthenticationTokenList

Content ManagementDigital Asset ManagementEnterpriseDocumentsWorkflowsSearchOpen Source

Properties

Name Type Description
token string
url string
userName string
View JSON Schema on GitHub

JSON Schema

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