Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating small typos #1096

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ You will also need a table where the conversion events are stored. If you use th

<div>
{MarkdownTableToMuiDataGrid(`
| user_identifier | user_id | start_tstamp | cv_value |
| user_identifier | user_id | cv_tstamp | cv_value |
|--------------------------------------|---------|-----------------------|----------------|
| user_id1 | user1 | 2022-06-08 08:11 | 94.42 |
| user_id2| user2 | 2022-06-09 12:03 | 206.5 |
Expand Down
10 changes: 5 additions & 5 deletions tutorials/attribution/enabling-unified-conversions.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ vars:
snowplow_unified:
snowplow__conversion_events: [
{
"name": "purchase", // Required, name of the conversion, string (must be valid SQL column name)
"condition": " event_name == 'purchase' ", // Required, valid SQL condition that returns true or false
"value": " 1 ", // Optional but recommended, can be field name or SQL
"default_value": "0", // Optional, can be field name or SQL
"list_events": "true"// Optional, boolean
"name": "purchase", # Required, name of the conversion, string (must be valid SQL column name)
"condition": " event_name == 'purchase' ", # Required, valid SQL condition that returns true or false
"value": " 1 ", # Optional but recommended, can be field name or SQL
"default_value": "0", # Optional, can be field name or SQL
"list_events": "true" # Optional, boolean
}
]
```
Expand Down