PandaDoc · Schema

FormListItem

Summary record for a form.

Document AutomationE-SignatureDocument ManagementDocument GenerationWebhooks

Properties

Name Type Description
id string Unique identifier of the form.
name string Display name of the form.
status string Current status of the form.
date_created string Timestamp when the form was created.
View JSON Schema on GitHub

JSON Schema

pandadoc-formlistitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormListItem",
  "title": "FormListItem",
  "type": "object",
  "description": "Summary record for a form.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the form."
    },
    "name": {
      "type": "string",
      "description": "Display name of the form."
    },
    "status": {
      "type": "string",
      "description": "Current status of the form.",
      "enum": [
        "active",
        "disabled"
      ]
    },
    "date_created": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the form was created."
    }
  }
}