ARGUS Enterprise · JSON Structure

Argus Enterprise Pagination Structure

Pagination schema from ARGUS Enterprise API

Type: object Properties: 4
Altus GroupAsset ManagementCash Flow ModelingCommercial Real EstatePortfolio ManagementValuation

Pagination is a JSON Structure definition published by ARGUS Enterprise, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

page pageSize totalItems totalPages

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argus-enterprise/refs/heads/main/json-structure/argus-enterprise-pagination-structure.json",
  "name": "Pagination",
  "description": "Pagination schema from ARGUS Enterprise API",
  "type": "object",
  "properties": {
    "page": {
      "type": "int32",
      "description": "Current page number"
    },
    "pageSize": {
      "type": "int32",
      "description": "Number of items per page"
    },
    "totalItems": {
      "type": "int32",
      "description": "Total number of items"
    },
    "totalPages": {
      "type": "int32",
      "description": "Total number of pages"
    }
  }
}