PandaDoc · Schema

DocumentAttachment

A file attached to a document.

Document AutomationE-SignatureDocument ManagementDocument GenerationWebhooks

Properties

Name Type Description
uuid string Unique identifier of the attachment.
name string File name of the attachment.
date_created string Timestamp when the attachment was uploaded.
View JSON Schema on GitHub

JSON Schema

pandadoc-documentattachment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DocumentAttachment",
  "title": "DocumentAttachment",
  "type": "object",
  "description": "A file attached to a document.",
  "properties": {
    "uuid": {
      "type": "string",
      "description": "Unique identifier of the attachment."
    },
    "name": {
      "type": "string",
      "description": "File name of the attachment."
    },
    "date_created": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the attachment was uploaded."
    }
  }
}