Overview
These following tables are available within the Aampe data share:AAMPE_USER_PROPENSITY_ESTIMATES- describes users in terms of Aampe labelsAAMPE_MESSAGE_DETAIL- describes Aampe message events, message and assignment details
- Reporting and monitoring
- Causal inference and offline message evaluation
- Inputs into various machine-learning models
User Propensities
Aampe computes propensities based on your action sets (offering, value proposition, etc.).The propensity for each label within a given action set reflects the agent’s estimate for how often that label will outperform the other label options. Said differently, if I were to simulate 100 messages from Aampe for each user, how often would the agent choose each label?
AAMPE_USER_PROPENSITY_ESTIMATES
| Column | Type | Description | Example Value |
|---|---|---|---|
contact_id | STR | Unique person identifier. | asdf-1234 |
propensities_offering | ARRAY | User propensities for each offering | [{"label_id":5678, "propensity":0.5432, "label_name":"Food"},{"label_id":6789, "propensity":0.4568, "label_name":"Travel"}] |
propensities_valueproposition | ARRAY | User propensities for each value proposition | [{"label_id":4567, "propensity":0.5432, "label_name":"Community"},{"label_id":5678, "propensity":0.4568, "label_name":"Affordability"}] |
propensities_tone | ARRAY | User propensities for each tone label | [{"label_id":3456, "propensity":0.5432, "label_name":"Funny"},{"label_id":4567, "propensity":0.4568, "label_name":"Serious"}] |
propensities_timing | ARRAY | User propensities for each timing window | [{"label_id":1234, "propensity":0.2, "label_name":"Mon-7am"},{"label_id":2345, "propensity":0.1, "label_name":"Mon-10am"}, ...] |
propensities_channel | ARRAY | User propensities for each channel | [{"label_id":2345, "propensity":0.75, "label_name":"push"},{"label_id":1234, "propensity":0.25, "label_name":"email"}] |
User Profiles - Example Queries
Aampe Messages
Agents save the details of each decision they make, including the parameters of the statistical models, sampling results, and the final decision result.With a row for every message event this table helps with for day-to-day reporting and monitoring. It also plays a key role in offline analysis and causal inference.
AAMPE_MESSAGE_DETAIL
| Column | Type | Description | Example Value |
|---|---|---|---|
aampe_message_id (pk) | STR | Unique identifier for a message event | xyz-123-abc |
contact_id | STR | Unique person identifier provided by customer | asdf-1234 |
timestamp | TIMESTAMP | Time of message delivery | 2025-08-18 12:50:02.499-04:00 |
timestamp_date (part) | DATE | Date of message delivery. Partition column. | 2025-08-18 |
timezone | STR | Timezone for message timestamp | America/Chicago |
formula_id | INT | ID for a message group | 1234 |
formula_name | STR | Name for a message group | Comeback-50%Off |
trigger_event_id | STR | ID for the trigger event associated with the message event | 0525c3b16a67 |
trigger_detail | STRUCT/ VARIANT | Key/value pairs of Trigger details | {"id":"62aa651a", "name":"Week1-3 NewUser"} |
tags | ARRAY | Tags associated with the message | [{"id":"7c22372e", "name":"Services"},{"id":"ea8aac79","name":"Document"}] |
timing_assignment_id | STR | Timing assignment event ID | d992-46d1 |
timing_assignment_detail | ARRAY | Key/value pairs describing the timing assignment | ["label_set":"day_time", "label_id":1000000, "label_name":"Mon1-4am", "personalization_score":0.7738, "label_name":"Monday","assignment_type":"preferential"] |
timing_assignment_date | DATE | Date of timing assignment | 2025-08-17 |
channel_assignment_id | STR | Channel assignment event ID | 46d1-864a |
channel | STR | Message channel (push, email, sms, etc.) | Email |
channel_assignment_detail | ARRAY | Key/value pairs describing the channel assignment | ["label_set":"channel", "label_id":123, "label_name":"Email", "personalization_score":0.7738, "assignment_type":"preferential"] |
channel_assignment_date | DATE | Date of channel assignment | 2025-08-17 |
copy_assignment_id | STR | Copy assignment event ID | 17cebb7e-8ec0-4b40 |
copy_assignment_detail | ARRAY | Key/value pairs describing the assignment of copy elements (labels) | [{"label_set":"CallToAction", "label_id":"5410", "label_name":"SignUp", "score":0.918, "probability":0.8161, "aggregated_signal":25, "unique_action_id":6325}, {"label_set":"Greeting", "label_id":"5415", "label_name":"Hey", "score":0.775, "probability":0.789, "aggregated_signal":25, "unique_action_id":7148}] |
copy_assignment_date | DATE | Date of copy assignment | 2025-08-18 |
message_content | STRUCT / VARIANT | Full message body, title, etc. | {"title":"We miss you!", "body":"<!DOCTYPE html>...n</body>\n</html>\n", "title_nchar":55, "body_nchar":11550} |
recommender_details | ARRAY | Key/value pairs describing recommender content when present | [{"cms_item_id":1234, "recommendation_type":"AlgoV2", "brand_weight":13, "recommendation_score":.79}] |