Circana · Schema

POSDataResponse

Point-of-sale data response containing sales metrics

AnalyticsConsumer DataMarket ResearchRetailCPGPoint-of-SaleConsumer InsightsBusiness Intelligence

Properties

Name Type Description
data array Array of POS data records
pagination object
View JSON Schema on GitHub

JSON Schema

circana-posdataresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/POSDataResponse",
  "title": "POSDataResponse",
  "type": "object",
  "description": "Point-of-sale data response containing sales metrics",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of POS data records",
      "items": {
        "$ref": "#/components/schemas/POSRecord"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/Pagination"
    }
  }
}