Transformation Configuration Setup

This pages provides instructions on what transform code should be added to a script manifest file to transform Iterable data into the Unified Notification Schema (UNS)

Overview

The Iterable extractor provides data on email subscribe / unsubscribe, contacts, lists, sends, bounces, opens and clicks. The Daasity transformation code maps data from the Iterable schema into the Unified Notifications Schema (UNS)

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:

  • Iterable

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

Transformation Code Requirements

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

  uns_iterable:
    scripts:
      - "github://platform-sql-shared/scripts/base/1000_uns/iterable/1320_UNS_BAS_ITERABLE_campaigns.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/iterable/1330_UNS_BAS_ITERABLE_contacts.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/iterable/1340_UNS_BAS_ITERABLE_lists.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/iterable/1360_UNS_BAS_ITERABLE_contact_lists.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/iterable/1380_UNS_BAS_ITERABLE_sends.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/iterable/1381_UNS_BAS_ITERABLE_opens.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/iterable/1382_UNS_BAS_ITERABLE_clicks.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/iterable/1383_UNS_BAS_ITERABLE_unsubscribes.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/iterable/1384_UNS_BAS_ITERABLE_bounces.sql"

Unified Notification Schema

Code to populate the UNS tables:

Last updated