Docupilot · Schema

PaginatedDocumentMergeHistoryList

PaginatedDocumentMergeHistoryList schema from Docupilot app API

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

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

JSON Schema

app-PaginatedDocumentMergeHistoryList.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PaginatedDocumentMergeHistoryList",
  "description": "PaginatedDocumentMergeHistoryList 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/DocumentMergeHistory"
      }
    }
  }
}