{ "$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" } } }