Nuxeo · Schema

taskComments

Content ManagementDigital Asset ManagementEnterpriseDocumentsWorkflowsSearchOpen Source

Properties

Name Type Description
author string
date string
View JSON Schema on GitHub

JSON Schema

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