Treblle · Schema

PaginationMeta

AnalyticsArtificial IntelligenceDeveloper ExperienceDocumentationGovernanceInsightsObservabilityPlatformSecurityTesting

Properties

Name Type Description
total integer
per_page integer
current_page integer
last_page integer
View JSON Schema on GitHub

JSON Schema

treblle-paginationmeta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginationMeta",
  "title": "PaginationMeta",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer"
    },
    "per_page": {
      "type": "integer"
    },
    "current_page": {
      "type": "integer"
    },
    "last_page": {
      "type": "integer"
    }
  }
}