Amdocs · Schema

Pagination

Pagination schema from Amdocs API

TelecomBSSOSSBillingCustomer ManagementMVNO5GSaaS

Properties

Name Type Description
page integer
pageSize integer
totalPages integer
totalItems integer
View JSON Schema on GitHub

JSON Schema

connectx-pagination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amdocs/refs/heads/main/json-schema/connectx-pagination-schema.json",
  "title": "Pagination",
  "description": "Pagination schema from Amdocs API",
  "type": "object",
  "properties": {
    "page": {
      "type": "integer"
    },
    "pageSize": {
      "type": "integer"
    },
    "totalPages": {
      "type": "integer"
    },
    "totalItems": {
      "type": "integer"
    }
  }
}