Menu
Feedback
Start here
Tutorials


Orders Data Pipeline
17 min read

The order dataset is composed of two main tables: orders_historical and orders_latest. These tables include several SUPER fields that encompass information such acquired items, shipping details, related sellers, payments, among others.

We have implemented special auxiliary tables, such as orders_shipping and orders_items to help manage this data, which can be a complex task due to the 1-to-N relationship between many of the SUPER fields and the orders and the amount of information they contain.

When running analyses, it's common to create direct selections in the SUPER fields to highlight specific parts for extraction. You can also join one of the main tables (orders or latest) to the auxiliary tables, using orderid as key.

This method allows you to efficiently extract specific information, enabling a detailed analysis of the orders and their related components.

This section includes the following information:

Data characteristics

CharacteristicDescription
Data sourceThe data of the order set come from the OMS (Order Management System).
AvailabilityOrder data can be accessed through the Orders report in the VTEX Admin and also through the Orders APIs. Keep in mind that the data available through the API may not be structured exactly the same way as it is in the Data Pipeline dataset.
HistoryThe data is retained for two years, from 2022 for clients who already use the VTEX platform.
Minimum update intervalOne hour.

Table: orders_latest

The latest table stores the latest status of each order, including details such as update date, order ID, and customer information. The table fields are described below:

Column nameField typeDescription
orderidcharacter varying(16383)Unique identifier of the order.
hostnamecharacter varying(16383)Name of the host related to the order.
valuedouble precisionTotal amount of the order.
totalssuperSummary of order totals, such as subtotal, taxes, discounts, etc.
creationdatetimestamp with time zoneDate and time the order was created.
itemssuperDetailed information about the order items.
clientprofiledata_userprofileidcharacter varying(65535)Profile ID of the user in the customer management system.
shippingdata_address_citycharacter varying(65535)Shipping city of the order.
shippingdata_address_statecharacter varying(65535)Shipping state of the order.
shippingdata_address_countrycharacter varying(65535)Shipping country of the order.
shippingdata_logisticsinfosuperLogistical information about order shipment.
sellerssuperInformation about the sellers associated with the order.
storepreferencesdata_countrycodecharacter varying(65535)Country code of the store.
storepreferencesdata_timezonecharacter varying(65535)Time zone of the store.
storepreferencesdata_currencycodecharacter varying(65535)Code of the currency used in the store.
packagessuperDetails about the packaging used for order items.
origincharacter varying(16383)Source of the order.
iscompletedbooleanSpecifies whether the order is completed.
affiliateidcharacter varying(16383)Affiliate ID associated with the order.
statuscharacter varying(16383)Current status of the order.
authorizeddatetimestamp with time zoneDate and time of order authorization.
invoiceddatetimestamp with time zoneDate and time of issue of order invoice.
marketplaceorderidcharacter varying(16383)Order ID in the marketplace.
marketplaceservicesendpointcharacter varying(16383)Service endpoint of the marketplace.
lastchangetimestamp with time zoneDate and time of the last change to the order.
marketingdata_utmsourcecharacter varying(65535)UTM source for marketing purposes.
marketingdata_utmmediumcharacter varying(65535)UTM medium for marketing purposes.
marketingdata_utmcampaigncharacter varying(65535)UTM campaign for marketing purposes.
marketingdata_utmpartnercharacter varying(65535)UTM partner for marketing purposes.
marketingdata_utmipagecharacter varying(65535)UTM page for marketing purposes.
marketingdata_utmipartcharacter varying(65535)UTM part for marketing purposes.
marketingdata_utmicampaigncharacter varying(65535)Alternative UTM campaign for marketing purposes.
marketingdata_couponcharacter varying(65535)Discount coupon code applied to the order.
marketingdata_marketingtagssuperMarketing tags associated with the order.
marketplace_namecharacter varying(65535)Name of the marketplace associated with the order.
marketplace_iscertifiedsuperSpecifies whether the marketplace is certified.
marketplace_baseurlcharacter varying(65535)Base URL of the marketplace.
contextdata_loggedinsuperSpecifies whether the user was logged in while placing the order.
contextdata_useragentcharacter varying(65535)User agent used when placing the order.
contextdata_useridcharacter varying(65535)ID of the user who placed the order.
rateandbenefitsidentifierssuperIdentifiers of charges and promotions applied to the order.
transactionssuperDetails of the financial transactions of the order.
giftcardssuperInformation about gift cards used in the order.
saleschannelcharacter varying(16383)Sales channel through which the order was placed.
batch_idcharacter varying(13)Identifier used when data is loaded into the table for quality control of data ingestion.
sellerorderidcharacter varying(16383)Order ID assigned by the seller.
ordergroupcharacter varying(16383)Order group this order belongs to.
workflowisinerrorbooleanSpecifies whether there was an error in the order workflow.
clientprofiledata_emailcharacter varying(256)Email of the customer profile associated with the order.
changesattachment_idcharacter varying(256)ID of the customization attachment of the order.
changesattachment_changesdat asuperDetails of changes made to the order.
shippingdata_postal_codecharacter varying(256)Postal code of the order's shipping address.

Table: orders_historical

The historical table stores a complete record of all order updates. The table fields are described below:

Column nameField typeDescription
orderidcharacter varying(16383)Unique identifier for each order, usually used as the primary key.
hostnamecharacter varying(16383)Name of the host associated with the order, which indicates the server or domain that is managing the order.
valuedouble precisionTotal monetary value of the order. It may include taxes, discounts, and shipping costs.
totalssuperSummary of order totals. It may be broken down into subtotals, taxes, discounts, etc.
creationdatetimestamp with time zoneDate and time the order was created, including time zone.
itemssuperDetailed information about the order items. It may include SKU, quantity, price, and item-specific discounts.
clientprofiledata_userprofileidcharacter varying(65535)User profile identifier of the customer who placed the order.
shippingdata_address_citycharacter varying(65535)City portion of the order's shipping address.
shippingdata_address_statecharacter varying(65535)State or region portion of the order's shipping address.
shippingdata_address_countrycharacter varying(65535)Country portion of the order's shipping address.
shippingdata_logisticsinfosuperLogistical information related to the order shipment. It may include carrier details and tracking information.
sellerssuperInformation about the sellers associated with the order. It may include seller IDs and names.
storepreferencesdata_countryc odecharacter varying(65535)Country code of the store where the order was placed.
storepreferencesdata_timezonecharacter varying(65535)Time zone of the store where the order was placed.
storepreferencesdata_currency codecharacter varying(65535)Currency code used in the order transaction.
packagessuperDetails about packaging of order items. It may include packaging types and dimensions.
origincharacter varying(16383)Source of the order, including where and how the order was started.
iscompletedbooleanSpecifies whether the order was completed.
affiliateidcharacter varying(16383)Identifier of an affiliate or reference source associated with the order.
statuscharacter varying(16383)Current status of the order, such as 'pending', 'shipped', or 'completed'.
authorizeddatetimestamp with time zoneDate and time the order was authorized.
invoiceddatetimestamp with time zoneDate and time the order invoice was issued.
marketplaceorderidcharacter varying(16383)Order identifier within a marketplace, if applicable.
marketplaceservicesendpointcharacter varying(16383)Endpoint or URL for marketplace services related to the order.
lastchangetimestamp with time zoneDate and time of the last change made to the order.
marketingdata_utmsourcecharacter varying(65535)UTM source parameter in marketing data, indicating the traffic or campaign origin.
marketingdata_utmmediumcharacter varying(65535)UTM medium parameter in marketing data, indicating the campaign medium (e.g., email, social).
marketingdata_utmcampaigncharacter varying(65535)UTM campaign parameter in marketing data, indicating the specific campaign name or code.
marketingdata_utmpartnercharacter varying(65535)UTM partner parameter, indicating a marketing partnership or collaborator.
marketingdata_utmpartnercharacter varying(65535)UTM page parameter. It may indicate the specific page or location of the campaign.
marketingdata_utmipartcharacter varying(65535)UTM part parameter. It may indicate a specific component or section of the marketing campaign.
marketingdata_utmicampaigncharacter varying(65535)UTM alternative campaign parameter for additional campaign tracking.
marketingdata_couponcharacter varying(65535)Coupon code used, if any, for applying discounts to the order.
marketingdata_marketingtagssuperTags or keywords associated with the order's marketing efforts.
marketplace_namecharacter varying(65535)Name of the marketplace where the order was placed, if applicable.
marketplace_iscertifiedsuperSpecifies whether the marketplace where the order was placed is certified or recognized.
marketplace_baseurlcharacter varying(65535)Base URL of the marketplace where the order was placed.
contextdata_loggedinsuperSpecifies whether the user was logged in when placing the order.
contextdata_useragentcharacter varying(65535)User-agent string of the browser or device used when placing the order.
contextdata_useridcharacter varying(65535)ID of the user who placed the order.
rateandbenefitsidentifierssuperIdentifiers of charges and promotions applied to the order, such as loyalty points or member discounts.
transactionssuperDetailed information about the financial transactions associated with the order.
giftcardssuperInformation about gift cards used in the order.
saleschannelcharacter varying(16383)Sales channel through which the order was placed (online store, physical store, or others).
batch_idcharacter varying(13)Identifier used when data is loaded into the table for quality control of data ingestion.
sellerorderidcharacter varying(16383)An order ID assigned by the seller, different from the main order ID.
ordergroupcharacter varying(16383)Order group the order belongs to, used to group several orders together.
workflowisinerrorbooleanSpecifies whether there was an error in the order processing workflow.
clientprofiledata_emailcharacter varying(256)Email address of the customer associated with the order.
changesattachment_idcharacter varying(256)Unique identifier for a change operation related to the order.
changesattachment_changesda tasuperDetails of changes made to the order, such as adding or removing items and other modifications.
shippingdata_postal_codecharacter varying(256)Postal code of the order's shipping address.

Table: orders_totals

The totals table provides a summary of the totals related to each order, including total order amount, applied discounts, and taxes. The table fields are described below:

Column nameField typeDescription
orderidcharacter varying(16383)Unique identifier for each order. This is usually joined with the 'orderid' column of the 'vtex.orders_latest' table for cross-analysis.
hostnamecharacter varying(16383)Name of the host associated with the order, which indicates the server or domain that is managing the order.
creationdatetimestamp with time zoneDate and time the order was created, including time zone.
lastchangetimestamp with time zoneDate and time of the last change made to the order, reflecting the most recent status or content update.
statuscharacter varying(16383)Current status of the order. This is frequently joined with the 'status' column of the 'vtex.orders_latest' table to track status changes.
totals_idcharacter varying(65535)Unique identifier for order totals, used to reference specific details of the order total.
totals_namecharacter varying(65535)Name or description of the order totals, giving an overview of what the total represents (for example: subtotal, taxes, discounts).
totals_valuedouble precisionNumeric value associated with order totals, such as the total amount, subtotal, taxes, discounts, etc.
batch_idcharacter varying(13)Identifier used when data is loaded into the table for quality control of data ingestion.

Table: orders_shipping

The shipping table contains order shipping information, such as shipping address, shipping costs, and logistics service providers.

The table fields are described below:

Column nameField typeDescription
orderidcharacter varying(16383)Unique identifier for each order.
hostnamecharacter varying(16383)Name of the host related to the order. This is frequently joined with 'hostname' from the 'vtex.client_registry_gold' table.
creationdatetimestamp with time zoneDate and time the order was created, including time zone.
lastchangetimestamp with time zoneDate and time of the last change to the order.
statuscharacter varying(16383)Current status of the order.
shippingdata_address_citycharacter varying(65535)City of the order's shipping address.
shippingdata_address_statecharacter varying(65535)State of the order's shipping address.
shippingdata_address_countrycharacter varying(65535)Country of the order's shipping address.
deliveryidssuperIdentifiers associated with order delivery.
shippingestimatecharacter varying(65535)Estimated shipping time.
pickupstoreinfo_ispickupstorebooleanSpecifies whether the pickup location is a physical store.
pickupstoreinfo_friendlynamecharacter varying(65535)Friendly name of the pickup location.
pickupstoreinfo_dockidcharacter varying(65535)Pickup location identifier.
deliverychannelcharacter varying(65535)Delivery channel used for the order.
deliverywindowcharacter varying(65535)Estimated time window for delivery.
sellingpricedouble precisionSales price of the order item.
listpricedouble precisionList price of the order item.
pricedouble precisionFinal price of the order item.
shippingestimatedatetimestamp with time zoneEstimated shipping date for the order.
selecteddeliverychannelcharacter varying(65535)Delivery channel selected for the order.
selectedslacharacter varying(65535)Service level agreement (SLA) selected for the order.
deliverychannelssuperDelivery channels available for the order.
slassuperAvailable SLAs for the order.
pickupdistancedouble precisionDistance to the pickup location.
batch_idcharacter varying(13)Identifier used when data is loaded into the table for quality control of data ingestion.
shippingdata_postal_codecharacter varying(256)Postal code of the order's shipping address.

Table: orders_sellers

The sellers table stores the list of sellers related to each order. The table fields are described below:

Column nameField typeDescription
orderidcharacter varying(16383)Unique identifier for each order. This is frequently joined with the 'orderid' column of the 'vtex.orders_historical' table for cross-analysis.
hostnamecharacter varying(16383)Name of the host associated with the order, which indicates the server or domain that is managing the order.
creationdatetimestamp with time zoneDate and time the order was created, including time zone.
lastchangetimestamp with time zoneDate and time of the last change made to the order, reflecting the most recent status or content update.
statuscharacter varying(16383)Current status of the order.
idcharacter varying(65535)Unique identifier, generally used to refer to a specific element within a larger context.
namecharacter varying(65535)Name or title of the referenced element, providing a human-readable identification.
logocharacter varying(65535)Path or URL to the associated logo, often used for branding or visual identification.
fulfillmentendpointcharacter varying(65535)Endpoint or URL for fulfillment services that specifies where order fulfillment operations are managed.
subselleridcharacter varying(65535)Identifier for a subseller or secondary seller associated with the order or operation.
batch_idcharacter varying(13)Identifier used when data is loaded into the table for quality control of data ingestion.

Table: orders_rateandbenefitsidentifiers

The rateandbenefitsidentifiers table contains data about promotions applied to orders. The table fields are described below:

Column nameField typeDescription
orderidcharacter varying(16383)Unique identifier for each order.
hostnamecharacter varying(16383)Name of the host associated with the order, which indicates the server or domain that is managing the order.
creationdatetimestamp with time zoneDate and time the order was created, including time zone.
lastchangetimestamp with time zoneDate and time of the last change made to the order, reflecting the most recent status or content update.
statuscharacter varying(16383)Current status of the order.
rateandbenefitsidentifiers_idcharacter varying(65535)Unique identifier for surcharge and promotion identifiers associated with the order.
rateandbenefitsidentifiers_namecharacter varying(65535)Name or title of surcharge and promotion identifiers, providing clear identification for the promotion or surcharge.
rateandbenefitsidentifiers_featur edbooleanSpecifies whether surcharge and promotion identifiers are highlighted or have a special feature.
rateandbenefitsidentifiers_descri ptioncharacter varying(65535)Detailed description of surcharge and promotion identifiers, explaining their features or benefits.
batch_idcharacter varying(13)Identifier used when data is loaded into the table for quality control of data ingestion.

Table: orders_payments

The payments table contains payment method information. The table fields are described below:

Column nameField typeDescription
orderidcharacter varying(16383)Unique identifier for each order. This is frequently joined with the 'orderid' column of the 'vtex.orders_latest' table.
hostnamecharacter varying(16383)Name of the host associated with the order, which indicates the server or domain that is managing the order.
creationdatetimestamp with time zoneDate and time the order was created, including time zone.
lastchangetimestamp with time zoneDate and time of the last change made to the order, reflecting the most recent status or content update.
statuscharacter varying(16383)Current status of the order.
transactions_merchantnamecharacter varying(65535)Name of the merchant associated with the order transaction.
groupcharacter varying(65535)Group or category the order or element belongs to.
installmentsintegerNumber of installments to pay the order.
valuedouble precisionMonetary value associated with the transaction or order element.
transactions_paymentsystemnamecharacter varying(65535)Name of the payment system used in the transaction.
transactions_paymentsystemcharacter varying(65535)Identifier of the payment system used in the transaction.
giftcards_idcharacter varying(65535)Unique identifier of the gift card used in the order.
giftcards_namecharacter varying(65535)Name of the gift card used.
giftcards_captioncharacter varying(65535)Description or caption of the gift card used.
giftcards_valuedouble precisionMonetary value of the gift card.
giftcards_balancedouble precisionRemaining gift card balance after use.
giftcards_providercharacter varying(65535)Gift card provider or issuer.
giftcards_groupnamecharacter varying(65535)Name of the group or category the gift card belongs to.
giftcards_inusebooleanSpecifies whether the gift card is in use or has been used in the order.
giftcards_isspecialcardbooleanSpecifies whether this is a special or promotional gift card.
batch_idcharacter varying(13)Identifier used when data is loaded into the table for quality control of data ingestion.
transactions_transactionidcharacter varying(65535)Unique identifier of the financial transaction associated with the order.
transactions_referencevaluedouble precisionTransaction reference value. This will probably be the total amount before discounts or charges.

Table: orders_packages

The packages table stores product packaging and shipping information. The table fields are described below:

Column nameField typeDescription
orderidcharacter varying(16383)Unique identifier for each order.
hostnamecharacter varying(16383)Name of the host associated with the order, which indicates the server or domain that is managing the order.
creationdatetimestamp with time zoneDate and time the order was created, including time zone.
lastchangetimestamp with time zoneDate and time of the last change made to the order, reflecting the most recent status or content update.
statuscharacter varying(16383)Current status of the order.
couriercharacter varying(65535)Name of the carrier company or delivery service associated with the order.
invoicenumbercharacter varying(65535)Invoice number associated with the order.
invoicevaluedouble precisionTotal amount indicated on the order invoice.
invoiceurlcharacter varying(65535)URL to access the electronic invoice for the order.
issuancedatetimestamp with time zoneDate of issue of the order invoice.
trackingnumbercharacter varying(65535)Tracking number associated with order delivery.
invoicekeycharacter varying(65535)Unique key that identifies the order invoice.
trackingurlcharacter varying(65535)URL for tracking order delivery.
embeddedinvoicecharacter varying(65535)Embedded information or details of the order invoice.
typecharacter varying(65535)Type or category of the element or service associated with the order.
courierstatus_delivereddatetimestamp with time zoneDelivery date of the order as recorded by the carrier service.
courierstatus_statuscharacter varying(65535)Current delivery status as recorded by the carrier service.
courierstatus_finishedbooleanSpecifies whether the delivery process has been completed.
courierstatus_datasuperDetailed data about the delivery status provided by the carrier service.
cfopcharacter varying(65535)Código Fiscal de Operações e Prestações (CFOP) code associated with the order in Brazil.
packages_lastchangetimestamp with time zoneDate and time of the last change recorded in the order packages.
volumesintegerTotal number of packages in the order.
batch_idcharacter varying(13)Identifier used when data is loaded into the table for quality control of data ingestion.

Table: orders_items

The items table stores details about the individual items in each order, including SKU, quantity, price, and discounts. The table fields are described below:

Column nameField typeDescription
orderidcharacter varying(16383)Unique identifier for each order. This is usually joined with the 'orderid' column of the 'vtex.orders_latest' table.
hostnamecharacter varying(16383)Name of the host associated with the order. This is frequently joined with columns from other tables, such as 'vtex.client_registry_gold.hostname'.
creationdatetimestamp with time zoneDate and time the order was created, including time zone.
lastchangetimestamp with time zoneDate and time of the last change made to the order.
statuscharacter varying(16383)Current status of the order.
taxdouble precisionTax amount applied to the order.
idcharacter varying(65535)Unique identifier, frequently joined with 'sku_id' from the 'vtex.fulfillment_simulations_ca_silver' table.
productidcharacter varying(65535)Product identifier associated with the order.
quantityintegerProduct quantity in the order.
sellercharacter varying(65535)Identifier or name of the product seller.
sellerskucharacter varying(65535)Product SKU as listed by the seller.
pricevaliduntiltimestamp with time zoneDate and time the product price is valid through.
namecharacter varying(65535)Name of the product.
additionalinfo_brandnamecharacter varying(65535)Product brand name.
additionalinfo_brandidcharacter varying(65535)Product brand identifier.
additionalinfo_caregoriesidcharacter varying(65535)Category identifiers associated with the product.
additionalinfo_dimension_cubicw eightdouble precisionCubic weight of the product for shipping purposes.
additionalinfo_dimension_heightdouble precisionProduct height.
additionalinfo_dimension_lengthdouble precisionProduct length.
additionalinfo_dimension_weightdouble precisionProduct weight.
additionalinfo_dimension_widthdouble precisionProduct width.
pricedouble precisionProduct price.
pricetagssuperPrice tags associated with the product. This may include discounts and offers.
sellingpricedouble precisionSales price of the product.
listpricedouble precisionList price of the product.
imageurlcharacter varying(65535)Product image URL.
measurementunitcharacter varying(65535)Unit of measure of the product.
unitmultiplierdouble precisionUnit multiplier for the product, used in price and quantity calculations.
batch_idcharacter varying(13)Identifier used when data is loaded into the table for quality control of data ingestion.

Table: orders_extra_info

Stores general order information recorded in the OMS system, including creation and update timestamps, client identification, order items, custom data, change attachments, and batch control.

Column nameColumn typeColumn description
orderidcharacter varying(255)Unique identifier of the order in the OMS system. Used as a linking key with other order tables.
hostnamecharacter varying(255)Hostname where the order was created. Used together with orderid as a linking key.
creationdatetimestamp with time zoneDate and time when the order was created in the OMS system.
lastchangetimestamp with time zoneDate and time of the last modification made to the order.
clientprofiledata_corporatenamecharacter varying(65535)Corporate name of the client when it's a B2B sale or legal entity.
clientprofiledata_corporatedocumentcharacter varying(65535)Corporate document of the client (CNPJ/Tax ID) when it's a B2B sale or legal entity.
clientprofiledata_iscorporatebooleanBoolean flag indicating whether the order is from a corporate client (legal entity) or individual.
itemssuperJSON structure (SUPER) containing detailed information about order items.
customdata_customappssuperJSON structure (SUPER) containing custom data from specific applications associated with the order.
customdata_customfieldssuperJSON structure (SUPER) containing additional custom fields configured for the order.
changesattachment_idcharacter varying(65535)Unique identifier of attachments related to changes made to the order.
changesattachment_changesdatasuperJSON structure (SUPER) with detailed data about changes and attachments associated with the order.
batch_idcharacter varying(13)Processing batch identifier used for data ingestion and update control.
changesattachment_hrefcharacter varying(65535)URL or reference to the attachment related to changes made to the order.
has_change_v2booleanBoolean flag indicating whether the order has changes in the new version (v2) of the attachment.

Table: orders_custom_fields

Stores custom fields configured for orders in the OMS. Includes the type and value of each field, linked to specific entities such as orders or items, enabling flexible data modeling.

Column nameColumn typeColumn description
orderidcharacter varying(255)Unique identifier of the order in the OMS system. Used as a linking key.
hostnamecharacter varying(255)Host/account name where the order was created.
creationdatetimestamp with time zoneDate and time when the order was created in the OMS system.
lastchangetimestamp with time zoneDate and time of the last modification made to the order.
linked_entity_idcharacter varying(65535)Unique identifier of the entity the custom field is linked to.
linked_entity_typecharacter varying(65535)Type of the entity that the custom field is linked to (e.g., order, item, etc.).
field_keycharacter varying(65535)The property name/key from the custom fields JSON object.
field_valuecharacter varying(65535)The property value corresponding to the field_key.
batch_idcharacter varying(13)Processing batch identifier used for data ingestion and update control.

Table: orders_custom_apps

Records custom data from specific applications integrated with the order. Each entry represents an application field with its version, key, and value, enabling tracking of OMS custom extensions.

Column nameColumn typeColumn description
orderidcharacter varying(255)Unique identifier of the order in the OMS system. Used as a linking key.
hostnamecharacter varying(255)Host/account name where the order was created.
creationdatetimestamp with time zoneDate and time when the order was created in the OMS system.
lastchangetimestamp with time zoneDate and time of the last modification made to the order.
customapps_idcharacter varying(65535)Unique identifier of the custom application.
customapps_majorcharacter varying(65535)Major version or classification of the custom application.
field_keycharacter varying(65535)Property name/key from the custom application fields JSON object.
field_valuecharacter varying(65535)Property value corresponding to the field_key.
batch_idcharacter varying(13)Processing batch identifier used for data ingestion and update control.

Analyses with order data

Order data can be used in the following analyses:

  • Ecommerce website sales analysis: Evaluate sales volume, identify best-selling products, analyze seasonal trends, and get insights into consumer behavior.
  • Order cancellation rate analysis: Look into cancellation reasons, identify patterns related to specific products or logistical problems, and develop strategies to reduce cancellation rates.
  • SKU performance: Analyze the performance of individual SKUs, understand market demand, and make adjustments to inventory and marketing strategies.

Correlations with other data

The order dataset has correlations with the following sets of the VTEX data ecosystem:

  • Navigation: Correlating navigation data with orders offers insights into consumer behavior and the purchasing journey, which helps optimize the user experience.
  • Promotions: Interaction with promotion data is key for assessing the effectiveness of promotional campaigns on order volumes and types.
  • Transactions: Joint analysis with transaction data can reveal payment patterns, consumer preferences, and payment processing efficiency.

Discover other datasets

Contributors
3
Photo of the contributor
Photo of the contributor
Photo of the contributor
+ 3 contributors
Was this helpful?
Yes
No
Suggest Edits (GitHub)
Payments Data Pipeline
« Previous
Prices Data Pipeline
Next »
Contributors
3
Photo of the contributor
Photo of the contributor
Photo of the contributor
+ 3 contributors
On this page
Still got questions?
Ask the community
Find solutions and share ideas in the VTEX community.
Join our community
Request support from VTEX
For personalized assistance, contact our experts.
Open a support ticket
GithubDeveloper portalCommunityFeedback