Nuxeo · Schema

LogEntry

Content ManagementDigital Asset ManagementEnterpriseDocumentsWorkflowsSearchOpen Source

Properties

Name Type Description
category string
comment string
docLifeCycle string
docPath string
docType string
docUUID string
entity-type string
eventDate string
eventId string
logDate string
principalName string
repositoryId string
View JSON Schema on GitHub

JSON Schema

LogEntry.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuxeo/main/json-schema/LogEntry.json",
  "title": "LogEntry",
  "properties": {
    "category": {
      "type": "string",
      "uniqueItems": false
    },
    "comment": {
      "type": "string",
      "uniqueItems": false
    },
    "docLifeCycle": {
      "type": "string",
      "uniqueItems": false
    },
    "docPath": {
      "type": "string",
      "uniqueItems": false
    },
    "docType": {
      "type": "string",
      "uniqueItems": false
    },
    "docUUID": {
      "type": "string",
      "uniqueItems": false
    },
    "entity-type": {
      "type": "string",
      "uniqueItems": false
    },
    "eventDate": {
      "format": "date-time",
      "type": "string",
      "uniqueItems": false
    },
    "eventId": {
      "type": "string",
      "uniqueItems": false
    },
    "logDate": {
      "format": "date-time",
      "type": "string",
      "uniqueItems": false
    },
    "principalName": {
      "type": "string",
      "uniqueItems": false
    },
    "repositoryId": {
      "type": "string",
      "uniqueItems": false
    }
  },
  "required": [
    "category",
    "comment",
    "docLifeCycle",
    "docPath",
    "docType",
    "docUUID",
    "entity-type",
    "eventDate",
    "eventId",
    "logDate",
    "principalName",
    "repositoryId"
  ],
  "uniqueItems": false
}