ShipStation · Schema

ProductPaginatedList

EcommerceLabelsLogisticsOrder ManagementShippingWarehousing

Properties

Name Type Description
products array
total integer
page integer
pages integer
View JSON Schema on GitHub

JSON Schema

shipstation-productpaginatedlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProductPaginatedList",
  "title": "ProductPaginatedList",
  "type": "object",
  "properties": {
    "products": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Product"
      }
    },
    "total": {
      "type": "integer"
    },
    "page": {
      "type": "integer"
    },
    "pages": {
      "type": "integer"
    }
  }
}