freshworks · Schema

Meta

Properties

Name Type Description
total_pages integer Total number of pages.
total integer Total number of records.
current_page integer Current page number.
View JSON Schema on GitHub

JSON Schema

freshworks-meta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Meta",
  "title": "Meta",
  "type": "object",
  "properties": {
    "total_pages": {
      "type": "integer",
      "description": "Total number of pages."
    },
    "total": {
      "type": "integer",
      "description": "Total number of records."
    },
    "current_page": {
      "type": "integer",
      "description": "Current page number."
    }
  }
}