TalentLMS · Schema

PaginationMeta

Learning Management SystemLMSeLearningTrainingCoursesUsersEnrollmentsEducationHR TechCloud

Properties

Name Type Description
pagination object
View JSON Schema on GitHub

JSON Schema

paginationmeta.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PaginationMeta",
  "$id": "https://raw.githubusercontent.com/api-evangelist/talentlms/refs/heads/main/json-schema/paginationmeta.json",
  "properties": {
    "pagination": {
      "properties": {
        "page": {
          "type": "integer",
          "example": 1
        },
        "page_size": {
          "type": "integer",
          "example": 25
        },
        "total_items": {
          "type": "integer"
        },
        "total_pages": {
          "type": "integer"
        },
        "total_results": {
          "type": "integer"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}