acuity-brands · Schema

CatalogItemList

Paginated list of catalog items

Fortune 1000

Properties

Name Type Description
items array
total integer
cursor string
View JSON Schema on GitHub

JSON Schema

acuity-brands-catalog-item-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12",
  "$id": "https://schema.api-evangelist.com/acuity-brands/acuity-brands-catalog-item-list-schema.json",
  "title": "CatalogItemList",
  "description": "Paginated list of catalog items",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CatalogItem"
      }
    },
    "total": {
      "type": "integer",
      "example": 50000
    },
    "cursor": {
      "type": "string"
    }
  }
}