Properties
| Name | Type | Description |
|---|---|---|
| productNumber | string | Product number/SKU |
| name | string | Product name |
| brand | string | Brand name |
| category | string | Product category |
| subcategory | string | Product subcategory |
| description | string | Full product description |
| specifications | object | Technical specifications |
| certifications | array | Product certifications |
| listPrice | number | List price in USD |
| upc | string | UPC code |
| imageUrl | string | Primary product image URL |
| dataSheetUrl | string | Product data sheet URL |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12",
"$id": "https://schema.api-evangelist.com/acuity-brands/acuity-brands-catalog-item-schema.json",
"title": "CatalogItem",
"description": "Acuity Brands product catalog item",
"type": "object",
"properties": {
"productNumber": {
"type": "string",
"description": "Product number/SKU",
"example": "LBL4 48L ADP"
},
"name": {
"type": "string",
"description": "Product name",
"example": "4FT LED Wrap Light 4800 Lumens Adapter"
},
"brand": {
"type": "string",
"description": "Brand name",
"example": "Lithonia Lighting"
},
"category": {
"type": "string",
"description": "Product category",
"example": "Indoor Lighting"
},
"subcategory": {
"type": "string",
"description": "Product subcategory",
"example": "Wrap Lights"
},
"description": {
"type": "string",
"description": "Full product description"
},
"specifications": {
"type": "object",
"description": "Technical specifications",
"additionalProperties": true
},
"certifications": {
"type": "array",
"items": {
"type": "string"
},
"description": "Product certifications",
"example": [
"UL Listed",
"Energy Star",
"DLC Listed"
]
},
"listPrice": {
"type": "number",
"description": "List price in USD",
"example": 89.99
},
"upc": {
"type": "string",
"description": "UPC code",
"example": "041194682000"
},
"imageUrl": {
"type": "string",
"description": "Primary product image URL"
},
"dataSheetUrl": {
"type": "string",
"description": "Product data sheet URL"
}
}
}