Thanx · Schema

Pagination

Pagination schema from Thanx Consumer API

RestaurantLoyaltyGuest EngagementMarketingCRMOnline OrderingWebhooksPointsRewardsCampaigns

Properties

Name Type Description
total_page integer
per_page integer
current_page integer
View JSON Schema on GitHub

JSON Schema

consumer-api-pagination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Pagination",
  "description": "Pagination schema from Thanx Consumer API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/thanx/refs/heads/main/json-schema/consumer-api-pagination-schema.json",
  "type": "object",
  "properties": {
    "total_page": {
      "type": "integer",
      "example": 1
    },
    "per_page": {
      "type": "integer",
      "example": 1
    },
    "current_page": {
      "type": "integer",
      "example": 1
    }
  }
}