PandaDoc · Schema

Workspace

A PandaDoc workspace belonging to an organization.

Document AutomationE-SignatureDocument ManagementDocument GenerationWebhooks

Properties

Name Type Description
id string Unique identifier of the workspace.
name string Display name of the workspace.
owner string Email address of the workspace owner.
date_created string Timestamp when the workspace was created.
View JSON Schema on GitHub

JSON Schema

pandadoc-workspace-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Workspace",
  "title": "Workspace",
  "type": "object",
  "description": "A PandaDoc workspace belonging to an organization.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the workspace."
    },
    "name": {
      "type": "string",
      "description": "Display name of the workspace."
    },
    "owner": {
      "type": "string",
      "format": "email",
      "description": "Email address of the workspace owner."
    },
    "date_created": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the workspace was created."
    }
  }
}