SignWell · Schema

PaginationMeta

Pagination metadata for list responses

E-SignatureElectronic SignatureDocumentsPDFSigningTemplatesWorkflowsHIPAASOC2

Properties

Name Type Description
current_page integer Current page number
next_page integer Next page number, null if on last page
previous_page integer Previous page number, null if on first page
total_count integer Total number of records
total_pages integer Total number of pages
View JSON Schema on GitHub

JSON Schema

PaginationMeta.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/signwell/main/json-schema/PaginationMeta.json",
  "title": "PaginationMeta",
  "type": "object",
  "description": "Pagination metadata for list responses",
  "properties": {
    "current_page": {
      "type": "integer",
      "description": "Current page number"
    },
    "next_page": {
      "type": "integer",
      "nullable": true,
      "description": "Next page number, null if on last page"
    },
    "previous_page": {
      "type": "integer",
      "nullable": true,
      "description": "Previous page number, null if on first page"
    },
    "total_count": {
      "type": "integer",
      "description": "Total number of records"
    },
    "total_pages": {
      "type": "integer",
      "description": "Total number of pages"
    }
  },
  "required": [
    "current_page",
    "total_count",
    "total_pages"
  ]
}