Boltic · Schema

Pagination

AutomationDataSyncGatewaysNoCodeStreamingWorkflows

Properties

Name Type Description
page integer
limit integer
total integer
totalPages integer
View JSON Schema on GitHub

JSON Schema

boltic-pagination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Pagination",
  "title": "Pagination",
  "type": "object",
  "properties": {
    "page": {
      "type": "integer"
    },
    "limit": {
      "type": "integer"
    },
    "total": {
      "type": "integer"
    },
    "totalPages": {
      "type": "integer"
    }
  }
}