CloudZero · Schema

Pagination

BudgetsCloud Cost ManagementCost AllocationCost OptimizationFinOpsTelemetryUnit Economics

Properties

Name Type Description
next string URL for the next page of results.
previous string URL for the previous page of results.
total integer Total number of results.
View JSON Schema on GitHub

JSON Schema

cloudzero-pagination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Pagination",
  "title": "Pagination",
  "type": "object",
  "properties": {
    "next": {
      "type": "string",
      "description": "URL for the next page of results."
    },
    "previous": {
      "type": "string",
      "description": "URL for the previous page of results."
    },
    "total": {
      "type": "integer",
      "description": "Total number of results."
    }
  }
}