> For the complete documentation index, see [llms.txt](https://help.daasity.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.daasity.com/core-concepts/data-integrations/setup-guides/digital-integrations/attentive-mobile/transformation-configuration-setup.md).

# Transformation Configuration Setup

## Overview

The Attentive Mobile extractor provides data on SMS subscribe / unsubscribe, sends and clicks. The Daasity transformation code maps data from the Attentive Mobile schema into the Unified Notifications Schema (UNS)

## Feature Dependencies

You must have enabled our [Code Repository](/technical-docs/transform-code/code-repository.md) 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](/technical-docs/workflows-and-scheduling/script-manifest-yaml-files.md) section of our Help documentation to familiarize yourself with our workflow engine and script manifest files.

## Script Manifest File (YML)

### Upstream Transformation Dependencies

{% hint style="danger" %}
This code is dependent on the following integration being installed:

* Attentive Mobile

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

* [Initialization](/technical-docs/transform-code/transform-code/initialization-code.md)
  {% endhint %}

### Transformation Code Requirements

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

```
  uns_attentive_mobile:
    integrations:
      - attentive_mobile
    scripts:
      - "github://platform-sql-shared/scripts/base/1000_uns/attentive_mobile/1220_UNS_BAS_ATTENTIVE_campaigns.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/attentive_mobile/1230_UNS_BAS_ATTENTIVE_contacts.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/attentive_mobile/1240_UNS_BAS_ATTENTIVE_lists.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/attentive_mobile/1260_UNS_BAS_ATTENTIVE_contact_lists.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/attentive_mobile/1280_UNS_BAS_ATTENTIVE_sends.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/attentive_mobile/1281_UNS_BAS_ATTENTIVE_opens.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/attentive_mobile/1282_UNS_BAS_ATTENTIVE_clicks.sql"
      - "github://platform-sql-shared/scripts/base/1000_uns/attentive_mobile/1283_UNS_BAS_ATTENTIVE_unsubscribes.sql"
```

### Unified Notification Schema

Code to populate the UNS tables:

* <https://github.com/Daasity/platform-sql-shared/blob/master/scripts/base/1000_uns/attentive_mobile/1220_UNS_BAS_ATTENTIVE_campaigns.sql>
* <https://github.com/Daasity/platform-sql-shared/blob/master/scripts/base/1000_uns/attentive_mobile/1230_UNS_BAS_ATTENTIVE_contacts.sql>
* <https://github.com/Daasity/platform-sql-shared/blob/master/scripts/base/1000_uns/attentive_mobile/1240_UNS_BAS_ATTENTIVE_lists.sql>
* <https://github.com/Daasity/platform-sql-shared/blob/master/scripts/base/1000_uns/attentive_mobile/1260_UNS_BAS_ATTENTIVE_contact_lists.sql>
* <https://github.com/Daasity/platform-sql-shared/blob/master/scripts/base/1000_uns/attentive_mobile/1280_UNS_BAS_ATTENTIVE_sends.sql>
* <https://github.com/Daasity/platform-sql-shared/blob/master/scripts/base/1000_uns/attentive_mobile/1281_UNS_BAS_ATTENTIVE_opens.sql>
* <https://github.com/Daasity/platform-sql-shared/blob/master/scripts/base/1000_uns/attentive_mobile/1281_UNS_BAS_ATTENTIVE_opens.sql>
* <https://github.com/Daasity/platform-sql-shared/blob/master/scripts/base/1000_uns/attentive_mobile/1282_UNS_BAS_ATTENTIVE_clicks.sql>
* <https://github.com/Daasity/platform-sql-shared/blob/master/scripts/base/1000_uns/attentive_mobile/1283_UNS_BAS_ATTENTIVE_unsubscribes.sql>
