You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`entity`| A unique slug for the entity, which is immutable and treated as a delete if you make changes. The slug must be in all lowercase, and supports dashes or underscores (for example, `account-entity` or `account_entity`). |
104
-
|`name`| A unique label which displays across Segment. |
105
-
|`table_ref`|Define the table reference. In order to specify a connection to your table in Snowflake, a fully qualified table reference is required: `[database name].[schema name].[table name]`. |
104
+
|`name`| A unique label that displays throughout your Segment space. |
105
+
|`table_ref`|Defines the table reference. In order to specify a connection to your table in Snowflake, a fully qualified table reference is required: `[database name].[schema name].[table name]`. |
106
106
|`primary_key`| The unique identifier for the given table. Should be a column with unique values per row. |
107
-
| (Optional) `enrichment_enabled = true`|Indicate if you plan to also reference the entity table for [Linked Events](/docs/unify/linked-profiles/linked-events/). |
107
+
| (Optional) `enrichment_enabled = true`|Indicates if you plan to also reference the entity table for [Linked Events](/docs/unify/linked-profiles/linked-events/). |
108
108
109
109
110
110
@@ -132,7 +132,7 @@ Use the following relationship, parameters, and examples to help you relate enti
|`relationship`| A unique slug for the relationship, which is immutable and treated as a delete if you make changes. The slug must be in all lowercase and will support dashes or underscores (for example, `user-account` or `user_account`). |
134
134
|`name`| A unique label that displays throughout your Segment space. |
135
-
|`related_entity`|Reference your already defined entity. |
135
+
|`related_entity`|References your already defined entity. |
136
136
137
137
138
138
A profile can be related to an entity in two ways:
@@ -149,7 +149,7 @@ A profile can be related to an entity in two ways:
149
149
2. With a `trait`: Define a profile trait that will be used to join the profile with your entity.
150
150
-`name`: The trait name that corresponds to a column name in your `profile_traits_updates` table.
151
151
-`join_key`: This is the column on the entity table that you are matching to the trait.
|`relationship`| A unique slug for the relationship, which is immutable and treated as a delete if you make changes. The slug must be in all lowercase and will support dashes or underscores (for example, `user-account` or `user_account`). |
189
-
|`name`|This should be a unique label that displays throughout your Segment space. |
190
-
|`related_entity`|Reference your already defined entity. |
189
+
|`name`|A unique label that displays throughout your Segment space. |
190
+
|`related_entity`|References your already defined entity. |
191
191
|`join_on`| Defines relationships between two entity tables `[lefty entity name].[column name] = [right entity name].[column name]`. Note that the entity name is a reference to the alias provided in the config and doesn't need to be the fully qualified table name. |
192
192
193
193
@@ -215,11 +215,11 @@ If you're relating entities with a junction table:
|`Junction_table`|Define the table reference to the join table. In order to specify a connection to your table in Snowflake, a fully qualified table reference is required: `[database name].[schema name].[table name]`. |
219
-
|`table_ref`|Define the table reference to the join table. In order to specify a connection to your table in Snowflake, a fully qualified table reference is required: `[database name].[schema name].[table name]`. |
218
+
|`Junction_table`|Defines the table reference to the join table. In order to specify a connection to your table in Snowflake, a fully qualified table reference is required: `[database name].[schema name].[table name]`. |
219
+
|`table_ref`|Defines the table reference to the join table. In order to specify a connection to your table in Snowflake, a fully qualified table reference is required: `[database name].[schema name].[table name]`. |
220
220
|`primary_key`| The unique identifier on the join table and should be a column with unique values per row. |
221
-
|`left_join_on`|Define relationship between the two entity tables: `[left entity name].[column name] = [junction table column name]`. |
222
-
|`right_join_on`|Define relationship between the two entity tables: `[junction table column name] = [right entity name].[column name]`. |
221
+
|`left_join_on`|Defines the relationship between the two entity tables: `[left entity name].[column name] = [junction table column name]`. |
222
+
|`right_join_on`|Defines the relationship between the two entity tables: `[junction table column name] = [right entity name].[column name]`. |
223
223
224
224
Note that `schema.table` is implied within the junction table column name and doesn't need to be provided.
0 commit comments