Optimizely · Schema

Pagination

Pagination metadata

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
total integer Total number of items
limit integer Maximum items per page
offset integer Current offset
View JSON Schema on GitHub

JSON Schema

optimizely-pagination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Pagination",
  "title": "Pagination",
  "type": "object",
  "description": "Pagination metadata",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of items"
    },
    "limit": {
      "type": "integer",
      "description": "Maximum items per page"
    },
    "offset": {
      "type": "integer",
      "description": "Current offset"
    }
  }
}