Factset · Schema

PaginationInfo

FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch

Properties

Name Type Description
pageNumber integer
pageSize integer
totalPages integer
totalCalculations integer
nextPage string
previousPage string
View JSON Schema on GitHub

JSON Schema

factset-pa-engine-pagination-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PaginationInfo",
  "type": "object",
  "properties": {
    "pageNumber": {
      "type": "integer"
    },
    "pageSize": {
      "type": "integer"
    },
    "totalPages": {
      "type": "integer"
    },
    "totalCalculations": {
      "type": "integer"
    },
    "nextPage": {
      "type": "string"
    },
    "previousPage": {
      "type": "string"
    }
  }
}