Nuxeo · Schema

docType

Content ManagementDigital Asset ManagementEnterpriseDocumentsWorkflowsSearchOpen Source

Properties

Name Type Description
entity-type string
facets array
name string
parent string
schemas array
View JSON Schema on GitHub

JSON Schema

docType.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuxeo/main/json-schema/docType.json",
  "title": "docType",
  "properties": {
    "entity-type": {
      "type": "string",
      "uniqueItems": false
    },
    "facets": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "name": {
      "type": "string"
    },
    "parent": {
      "type": "string"
    },
    "schemas": {
      "items": {},
      "type": "array"
    }
  },
  "required": [
    "entity-type",
    "facets",
    "name",
    "parent",
    "schemas"
  ]
}