Red Hat · Schema

PaginationLinks

Pagination links for navigating result sets.

CloudContainersEnterpriseHybrid CloudKubernetesLinuxOpen Source

Properties

Name Type Description
first string URL to the first page.
last string URL to the last page.
next string URL to the next page.
previous string URL to the previous page.
View JSON Schema on GitHub

JSON Schema

red-hat-insights-pagination-links-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PaginationLinks",
  "type": "object",
  "description": "Pagination links for navigating result sets.",
  "properties": {
    "first": {
      "type": "string",
      "description": "URL to the first page."
    },
    "last": {
      "type": "string",
      "description": "URL to the last page."
    },
    "next": {
      "type": "string",
      "description": "URL to the next page."
    },
    "previous": {
      "type": "string",
      "description": "URL to the previous page."
    }
  }
}