Docupilot · Schema

PaginatedTemplateList

PaginatedTemplateList schema from Docupilot app API

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
count integer
next string
previous string
results array
has_docusign_templates boolean
View JSON Schema on GitHub

JSON Schema

app-PaginatedTemplateList.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PaginatedTemplateList",
  "description": "PaginatedTemplateList schema from Docupilot app API",
  "type": "object",
  "required": [
    "count",
    "results"
  ],
  "properties": {
    "count": {
      "type": "integer",
      "example": 123
    },
    "next": {
      "type": "string",
      "nullable": true,
      "format": "uri",
      "example": "http://api.example.org/accounts/?page=4"
    },
    "previous": {
      "type": "string",
      "nullable": true,
      "format": "uri",
      "example": "http://api.example.org/accounts/?page=2"
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Template"
      }
    },
    "has_docusign_templates": {
      "type": "boolean"
    }
  }
}