SignWell · Schema

DocumentTemplateListResponse

List of templates with pagination

E-SignatureElectronic SignatureDocumentsPDFSigningTemplatesWorkflowsHIPAASOC2

Properties

Name Type Description
templates array
current_page integer
next_page integer
previous_page integer
total_count integer
total_pages integer
View JSON Schema on GitHub

JSON Schema

DocumentTemplateListResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/signwell/main/json-schema/DocumentTemplateListResponse.json",
  "title": "DocumentTemplateListResponse",
  "type": "object",
  "description": "List of templates with pagination",
  "properties": {
    "templates": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DocumentTemplateResponse"
      }
    },
    "current_page": {
      "type": "integer"
    },
    "next_page": {
      "type": "integer",
      "nullable": true
    },
    "previous_page": {
      "type": "integer",
      "nullable": true
    },
    "total_count": {
      "type": "integer"
    },
    "total_pages": {
      "type": "integer"
    }
  },
  "required": [
    "templates",
    "current_page",
    "total_count",
    "total_pages"
  ]
}