Docupilot · Schema

FolderSharing

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
id integer
permission string
user integer
View JSON Schema on GitHub

JSON Schema

app-FolderSharing.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FolderSharing",
  "description": "",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "permission": {
      "enum": [
        "read",
        "write",
        "manage"
      ],
      "type": "string"
    },
    "user": {
      "type": "integer"
    }
  },
  "required": [
    "id",
    "user"
  ]
}