Circana · Schema

RetailerSummary

Retailer summary record

AnalyticsConsumer DataMarket ResearchRetailCPGPoint Of SaleConsumer InsightsBusiness Intelligence

Properties

Name Type Description
retailer_id string Unique retailer identifier
name string Retailer name
channel string Primary retail channel
store_count integer Number of store locations
geographic_coverage string Geographic coverage level
View JSON Schema on GitHub

JSON Schema

circana-retailersummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RetailerSummary",
  "title": "RetailerSummary",
  "type": "object",
  "description": "Retailer summary record",
  "properties": {
    "retailer_id": {
      "type": "string",
      "description": "Unique retailer identifier",
      "example": "ret-500123"
    },
    "name": {
      "type": "string",
      "description": "Retailer name",
      "example": "Example Market"
    },
    "channel": {
      "type": "string",
      "description": "Primary retail channel",
      "example": "grocery"
    },
    "store_count": {
      "type": "integer",
      "description": "Number of store locations",
      "example": 450
    },
    "geographic_coverage": {
      "type": "string",
      "description": "Geographic coverage level",
      "example": "national"
    }
  }
}