Circana · Schema
CategoryDetail
Detailed category information
AnalyticsConsumer DataMarket ResearchRetailCPGPoint Of SaleConsumer InsightsBusiness Intelligence
Properties
| Name | Type | Description |
|---|---|---|
| category_id | string | Unique category identifier |
| name | string | Category name |
| description | string | Category description |
| parent_id | string | Parent category identifier |
| industry | string | Industry vertical |
| level | integer | Depth level in the category hierarchy |
| subcategories | array | Direct subcategories |
| data_coverage | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CategoryDetail",
"title": "CategoryDetail",
"type": "object",
"description": "Detailed category information",
"properties": {
"category_id": {
"type": "string",
"description": "Unique category identifier",
"example": "cpg-beverages"
},
"name": {
"type": "string",
"description": "Category name",
"example": "Beverages"
},
"description": {
"type": "string",
"description": "Category description",
"example": "All beverage categories including carbonated, juice, water, and energy drinks"
},
"parent_id": {
"type": "string",
"description": "Parent category identifier",
"example": "cpg"
},
"industry": {
"type": "string",
"description": "Industry vertical",
"example": "cpg"
},
"level": {
"type": "integer",
"description": "Depth level in the category hierarchy",
"example": 2
},
"subcategories": {
"type": "array",
"description": "Direct subcategories",
"items": {
"$ref": "#/components/schemas/CategorySummary"
}
},
"data_coverage": {
"$ref": "#/components/schemas/DataCoverage"
}
}
}