Skip to content

Commit fc329fc

Browse files
committed
More from code review [netlify-build]
1 parent 15bb03b commit fc329fc

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/unify/linked-profiles/data-graph.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The parameters are:
8080
| Parameters | Definition |
8181
| ----------- | --------------------------------------------------------------------- |
8282
| `profile_folder` | This is the folder or schema location for the profile tables. |
83-
| `materialization` | Identify the type of materialization (`dbt`,`segment`,`none`). |
83+
| `materialization` | Identifies the type of materialization (`dbt`,`segment`,`none`). |
8484

8585

8686
```python
@@ -101,10 +101,10 @@ An entity is a stateful representation of a business object. The entity correspo
101101
| Parameters | Definition |
102102
| ----------- | --------------------------------------------------------------------- |
103103
| `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]`. |
106106
| `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/). |
108108

109109

110110

@@ -132,7 +132,7 @@ Use the following relationship, parameters, and examples to help you relate enti
132132
| ----------- | --------------------------------------------------------------------- |
133133
| `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`). |
134134
| `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. |
136136

137137

138138
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:
149149
2. With a `trait`: Define a profile trait that will be used to join the profile with your entity.
150150
- `name`: The trait name that corresponds to a column name in your `profile_traits_updates` table.
151151
- `join_key`: This is the column on the entity table that you are matching to the trait.
152-
152+
153153

154154
```python
155155
data_graph {
@@ -186,8 +186,8 @@ data_graph {
186186
| Parameters | Definition |
187187
| ----------- | --------------------------------------------------------------------- |
188188
| `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. |
191191
| `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. |
192192

193193

@@ -215,11 +215,11 @@ If you're relating entities with a junction table:
215215

216216
| Parameters | Definition |
217217
| ----------- | --------------------------------------------------------------------- |
218-
| `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]`. |
220220
| `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]`. |
223223

224224
Note that `schema.table` is implied within the junction table column name and doesn't need to be provided.
225225

0 commit comments

Comments
 (0)