Procurify · Schema

PaginationDocs

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
count integer
next string
previous string
page_size integer
num_pages integer
current_page integer
View JSON Schema on GitHub

JSON Schema

paginationdocs.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PaginationDocs",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer"
    },
    "next": {
      "type": "string",
      "nullable": true
    },
    "previous": {
      "type": "string",
      "nullable": true
    },
    "page_size": {
      "type": "integer"
    },
    "num_pages": {
      "type": "integer"
    },
    "current_page": {
      "type": "integer"
    }
  },
  "required": [
    "count",
    "current_page",
    "next",
    "num_pages",
    "page_size",
    "previous"
  ]
}