Transformation Configuration Setup

This pages provides instructions on what transform code should be added to a script manifest file to transform Lightspeed data into the Unified Order Schema (UOS)

Overview

The Daasity transformation code maps data from the Shopify schema into the Unified Order Schema (UOS) for both online and point-of-sale (POS)

Feature Dependencies

You must have enabled our Code Repository feature in order to both access the Daasity transformation code as well as modify a Script Manifest File enabling this code to execute

We recommend you review the Transformation Configuration section of our Help documentation to familiarize yourself with our workflow engine and script manifest files.

Script Manifest File (YML)

Upstream Transformation Dependencies

This code is dependent on the following integration being installed:

  • Lightspeed

This code block is dependent on the following upstream code blocks being implemented:

Transformation Code Requirements

To enable the data transformation from the Lightspeed schema into UOS, the following code must be run in a workflow:

  uos_lightspeed:
    integrations:
      - lightspeed
    scripts:
      - "github://platform-sql-shared/scripts/pro/0500_uos/lightspeed/0600_UOS_PRO_LIGHTSPEED_locations.sql"
      - "github://platform-sql-shared/scripts/pro/0500_uos/lightspeed/0601_UOS_PRO_LIGHTSPEED_employees.sql"
      - "github://platform-sql-shared/scripts/pro/0500_uos/lightspeed/0602_UOS_PRO_LIGHTSPEED_customers.sql"
      - "github://platform-sql-shared/scripts/pro/0500_uos/lightspeed/0603_UOS_PRO_LIGHTSPEED_products.sql"
      - "github://platform-sql-shared/scripts/pro/0500_uos/lightspeed/0604_UOS_PRO_LIGHTSPEED_product_variants.sql"
      - "github://platform-sql-shared/scripts/pro/0500_uos/lightspeed/0605_UOS_PRO_LIGHTSPEED_orders.sql"
      - "github://platform-sql-shared/scripts/pro/0500_uos/lightspeed/0606_UOS_PRO_LIGHTSPEED_order_line_items.sql"
      - "github://platform-sql-shared/scripts/pro/0500_uos/lightspeed/0611_UOS_PRO_LIGHTSPEED_refunds.sql"
      - "github://platform-sql-shared/scripts/pro/0500_uos/lightspeed/0612_UOS_PRO_LIGHTSPEED_refund_line_items.sql"
      - "github://platform-sql-shared/scripts/pro/0500_uos/lightspeed/0613_UOS_PRO_LIGHTSPEED_fulfillments.sql"
      - "github://platform-sql-shared/scripts/pro/0500_uos/lightspeed/0614_UOS_PRO_LIGHTSPEED_order_item_fulfillments.sql"
      - "github://platform-sql-shared/scripts/pro/0500_uos/lightspeed/0615_UOS_PRO_LIGHTSPEED_current_inventory_levels.sql"

Unified Order Schema

Code to populate the UOS tables:

Last updated