Paginated list of catalog items
{ "$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" } } }