Docupilot · Schema

DocuSignFolder

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
name string
type string
owner object
folderId string
uri string
itemCount string
hasSubFolders string
View JSON Schema on GitHub

JSON Schema

app-DocuSignFolder.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DocuSignFolder",
  "description": "",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "owner": {
      "$ref": "#/components/schemas/DocuSignFolderOwner"
    },
    "folderId": {
      "type": "string"
    },
    "uri": {
      "type": "string"
    },
    "itemCount": {
      "type": "string"
    },
    "hasSubFolders": {
      "type": "string"
    }
  },
  "required": [
    "folderId",
    "hasSubFolders",
    "itemCount",
    "name",
    "owner",
    "type",
    "uri"
  ]
}