BigCommerce · Schema

Links

Pagination links for the previous and next parts of the whole collection.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
previous string Link to the previous page returned in the response.
current string Link to the current page returned in the response.
next string Link to the next page returned in the response.
View JSON Schema on GitHub

JSON Schema

bigcommerce-links-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Links",
  "title": "Links",
  "description": "Pagination links for the previous and next parts of the whole collection.",
  "type": "object",
  "properties": {
    "previous": {
      "description": "Link to the previous page returned in the response.",
      "type": "string"
    },
    "current": {
      "description": "Link to the current page returned in the response.",
      "type": "string"
    },
    "next": {
      "description": "Link to the next page returned in the response.",
      "type": "string"
    }
  }
}