Description
Product information can be captured in the Rockerbox Conversions dataset within theadditional_attributes column. This field stores supplemental conversion metadata in JSON format, including product-level details passed during the conversion event.
To analyze product-level performance in your warehouse, you must extract the products field from the JSON structure using the appropriate JSON parsing functions supported by your data warehouse.
Conversions with product context can then be joined against attribution data in the log level MTA schema using the date and conversion_key
When to Use This Analysis
- Analyze product-level performance from conversion events tracked by Rockerbox.
- Extract product metadata captured during the conversion event.
- Support reporting that breaks out revenue and conversions by product.
- Build downstream product-level reporting or join conversion data with product catalogs.
Source Data
This analysis uses fields from the Conversions dataset.| Field | Description |
|---|---|
conversion_id | Unique identifier for each conversion event |
date | Date the conversion occurred |
additional_attributes | JSON column containing additional metadata captured with the conversion event |
additional_attributes.products | JSON field containing product information passed with the conversion |
products field must be extracted from the JSON structure before it can be used in reporting.
Key Metrics
| Metric | SQL Logic | Description |
|---|---|---|
products | Extracted JSON field | Product information associated with the conversion event |
Example Queries
Snowflake
Extract theproducts field from the JSON column.