Products Table
products_table
The Products table provides the product catalog with attributes like name, type, vendor, status, and variants. One row per product. Sourced from the connected sales platform.
Table GuideWhat You Can Answer With This Table
- Which products or variants are out of stock? — filter where
product_inventory_quantity= 0 orvariants.variant_inventory_quantity= 0- How many products are active vs draft vs archived? — group by
product_status- What products does a specific vendor supply? — filter or group by
vendorBefore You Query
- This table is not time-series. No
event_datefilter is needed.Key Relationships
Table Join Key What the Join Enables Product Analytics product_idProduct performance metrics over time (revenue, orders, units sold) When to Use a Different Table
- Need product sales performance over time (revenue, units sold, orders by product) → Product Analytics table. Product Analytics tracks product metrics over time; Products stores catalog attributes.
- Need product data in the context of individual orders → Orders table. The Orders table includes a nested
products_infocolumn with product details per order.
Dimensions
Dimensions are immutable properties that can be used for grouping data.
Title | ID | Type | Description |
|---|---|---|---|
Collections |
| repeated string | Collections the product belongs to, as set within the main sales platform. Example values: |
Product Images |
| record repeated | Images associated with the product, with details such as image position, dimensions, and source URL. |
Image Position |
| string | The position of the image in the product gallery. Example values: |
Image Width |
| string | The width of the image in pixels. Example values: |
Image Height |
| string | The height of the image in pixels. Example values: |
Image Source |
| string | The URL of the product image. Example values: |
Integration ID |
| string | The unique identifier for the integration (store connection) that this product belongs to. |
Platform |
| string | The platform or marketplace where the product is listed. Example values: |
Product Description |
| string | The description of the product as written by the seller. Example values: |
Product ID |
| string | The unique ID of the product as set within the main sales platform. Example value: |
Primary Product Image |
| string | The URL of the primary product image. Example values: |
Product Name |
| string | The name (or title) of the product as set within the main sales platform. Example values: |
Product Status |
| string | The status of the product. Example values: |
Product Tags |
| repeated string | Tags associated with the product, assigned by the seller in the main sales platform. Example values: |
Product Type |
| string | The product type as set within the main sales platform. Example values: |
Shop ID |
| string | The unique ID of the shop (often corresponds to the shop domain). Can be used to group or filter data by shop in multi-store reports. Example values: |
Shop Name |
| string | The name of the shop. Can be used to group or filter data by shop in multi-store reports. Example values: |
Product Variants |
| record repeated | Details about the product variants associated with the order. |
Variant ID |
| string | The unique ID of the product variant as set within the main sales platform. Example value: |
Variant Name |
| string | The name (or title) of the product variant as set within the main sales platform. Example values: |
Variant Description |
| string | The description of the product variant. Only supported for Amazon products. Example values: |
Variant SKU |
| string | The SKU (Stock Keeping Unit) for the product variant as set within the main sales platform. Example values: |
Variant Price |
| numeric | The price of a single product variant (to the buyer). Example values: |
Variant Inventory Quantity |
| numeric | The number of items in stock for the product variant. Example values: |
Vendor |
| string | The vendor of the product variant. Example values: |
Measures
Measures are numeric fields that can be aggregated and/or combined to calculate new metrics.
Title | ID | Type | Description |
|---|---|---|---|
Product Inventory Quantity |
| numeric | The number of items in stock for the product. Example values: |
Updated 14 days ago