PandaDoc · Schema

Folder

A folder used to organize documents or templates.

Document AutomationE-SignatureDocument ManagementDocument GenerationWebhooks

Properties

Name Type Description
uuid string Unique identifier of the folder.
name string Display name of the folder.
date_created string Timestamp when the folder was created.
parent_uuid string Identifier of the parent folder, if nested.
View JSON Schema on GitHub

JSON Schema

pandadoc-folder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Folder",
  "title": "Folder",
  "type": "object",
  "description": "A folder used to organize documents or templates.",
  "properties": {
    "uuid": {
      "type": "string",
      "description": "Unique identifier of the folder."
    },
    "name": {
      "type": "string",
      "description": "Display name of the folder."
    },
    "date_created": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the folder was created."
    },
    "parent_uuid": {
      "type": "string",
      "nullable": true,
      "description": "Identifier of the parent folder, if nested."
    }
  }
}