Skip to content

Commit ab39d40

Browse files
authored
Merge pull request #4976 from segmentio/joeynmq-patch-3
Add info about columns for external_id_mapping_updates table
2 parents abdfbcb + f0a4212 commit ab39d40

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

src/unify/profiles-sync/tables.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,26 @@ If you’ll use Profiles Sync to build models, refer to the `id_graph` model, wh
111111

112112
### The external_id_mapping_updates table
113113

114-
This table maps Segment-generated identifiers, like `segment_id`, to external identifiers that your users provide.
114+
This table maps Segment-generated identifiers, like `segment_id`, to external identifiers that your users provide. It has the following columns:
115+
116+
| field | description |
117+
| ----------------------------- | --------------------------------------------------------------------------------------------------- |
118+
| `EXTERNAL_ID_HASH` | The hash of the identifier sent in the incoming event. |
119+
| `EXTERNAL_ID_TYPE` | The type of external identifier sent in the incoming event, such as `user_id` or `anonymous_id`. External identifiers become the identities attached to a user profile. |
120+
| `EXTERNAL_ID_VALUE` | The value of the identifier sent in the incoming event. |
121+
| `ID` | A unique identifier for the table row. |
122+
| `RECEIVED_AT` | The timestamp when the Segment API receives the payload from the client or server. |
123+
| `SEGMENT_ID` | The Profile ID that Segment appends to an event or an identifier at the time it was first observed. |
124+
| `SEQ` | A sequential value derived from the timestamp. |
125+
| `TIMESTAMP` | The UTC-converted timestamp set by the Segment library. |
126+
| `TRIGGERING_EVENT_ID` | The specific ID of the incoming event. |
127+
| `TRIGGERING_EVENT_NAME` | The specific name of the incoming event. |
128+
| `TRIGGERING_EVENT_SOURCE_ID` | The specific source ID of the incoming event. |
129+
| `TRIGGERING_EVENT_SOURCE_NAME`| The name of the source that triggered the event. |
130+
| `TRIGGERING_EVENT_SOURCE_SLUG`| The slug of the source that triggered the event. |
131+
| `TRIGGERING_EVENT_TYPE` | The type of tracking method used for triggering the incoming event. |
132+
| `UUID_TS` | A unique identifier of the timestamp. |
133+
115134

116135
The anonymous site visits sample used earlier would generate the following events:
117136

0 commit comments

Comments
 (0)