Skip to content

Commit a98ac9c

Browse files
committed
Code fix
1 parent fc329fc commit a98ac9c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/unify/linked-profiles/linked-events.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,17 +108,18 @@ An entity is a stateful representation of a business object. The entity correspo
108108
| ----------- | --------------------------------------------------------------------- |
109109
| `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`). |
110110
| `name` | A unique label which will display across Segment. |
111-
| `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]`. |
111+
| `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]`. |
112112
| `primary_key` | The unique identifier for the given table. Should be a column with unique values per row. |
113-
| (Optional) `enrichment_enabled = true` | Indicate if you plan to also reference the entity table for [Linked Events](/docs/unify/linked-profiles/linked-events/). |
113+
| (Optional) `enrichment_enabled = true` | Indicates if you plan to also reference the entity table for [Linked Events](/docs/unify/linked-profiles/linked-events/). |
114114

115115

116116

117117
```python
118118
# Define an entity and optionally indicate if the entity will be referenced for Linked Events (event enrichment)
119119

120-
entity "account" {
121-
table_ref = "cust.account"
120+
entity "account-entity" {
121+
name = "account"
122+
table_ref = "CUST.ACCOUNT"
122123
primary_key = "id"
123124
enrichment_enabled = true
124125
}

0 commit comments

Comments
 (0)