PandaDoc · Schema

TemplateListItem

Summary record for a template returned in list responses.

Document AutomationE-SignatureDocument ManagementDocument GenerationWebhooks

Properties

Name Type Description
id string Unique identifier of the template.
name string Display name of the template.
date_created string Timestamp when the template was created.
date_modified string Timestamp when the template was last modified.
tags array Tags applied to the template.
View JSON Schema on GitHub

JSON Schema

pandadoc-templatelistitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TemplateListItem",
  "title": "TemplateListItem",
  "type": "object",
  "description": "Summary record for a template returned in list responses.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the template."
    },
    "name": {
      "type": "string",
      "description": "Display name of the template."
    },
    "date_created": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the template was created."
    },
    "date_modified": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the template was last modified."
    },
    "tags": {
      "type": "array",
      "description": "Tags applied to the template.",
      "items": {
        "type": "string"
      }
    }
  }
}