Tableau · Schema

Pagination

AnalyticsBusiness IntelligenceDashboardsData Visualization

Properties

Name Type Description
pageNumber integer The current page number.
pageSize integer The number of items per page.
totalAvailable integer The total number of items available.
View JSON Schema on GitHub

JSON Schema

tableau-pagination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Pagination",
  "title": "Pagination",
  "type": "object",
  "properties": {
    "pageNumber": {
      "type": "integer",
      "description": "The current page number.",
      "example": 10
    },
    "pageSize": {
      "type": "integer",
      "description": "The number of items per page.",
      "example": 10
    },
    "totalAvailable": {
      "type": "integer",
      "description": "The total number of items available.",
      "example": 10
    }
  }
}