Skip to content

Make it clearer users passthroughs use the sessions table #895

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

Merged
merged 3 commits into from
May 16, 2024
Merged
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 @@ -42,7 +42,7 @@
"type": "string",
"title": "Conversions Source",
"description": "Source of conversion events",
"longDescription": "The source (schema and table) of your conversion events, likely your atomic events table.",
"longDescription": "The source (schema and table) of your conversion events, likely the conversions table generated by the Unified package.",
"packageDefault": "{{ source('derived', 'snowplow_unified_conversions') }}",
"group": "Warehouse and Tracker"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"type": "string",
"title": "Conversions Source",
"description": "Source of conversion events",
"longDescription": "The source (schema and table) of your conversion events, likely your atomic events table.",
"longDescription": "The source (schema and table) of your conversion events, likely the conversions table generated by the Unified package.",
"packageDefault": "{{ source('derived', 'snowplow_unified_conversions') }}",
"group": "Warehouse and Tracker"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"type": "string",
"title": "Conversions Source",
"description": "Source of conversion events",
"longDescription": "The source (schema and table) of your conversion events, likely your atomic events table.",
"longDescription": "The source (schema and table) of your conversion events, likely the conversions table generated by the Unified package.",
"packageDefault": "{{ source('atomic', 'events') }}",
"group": "Warehouse and Tracker"
},
Expand Down Expand Up @@ -259,4 +259,4 @@
"group": "Warehouse Specific"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"type": "string",
"title": "Conversions Source",
"description": "Source of conversion events",
"longDescription": "The source (schema and table) of your conversion events, likely your atomic events table.",
"longDescription": "The source (schema and table) of your conversion events, likely the conversions table generated by the Unified package.",
"packageDefault": "{{ source('atomic', 'events') }}",
"group": "Warehouse and Tracker"
},
Expand Down Expand Up @@ -259,4 +259,4 @@
"group": "Warehouse Specific"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@
"consoleGroup": "advanced",
"title": "User First Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": " Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"longDescription": " Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand All @@ -448,7 +448,7 @@
"consoleGroup": "advanced",
"title": "User Last Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information.Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information.Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@
"consoleGroup": "advanced",
"title": "User First Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": " Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"longDescription": " Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand All @@ -600,7 +600,7 @@
"consoleGroup": "advanced",
"title": "User Last Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information.Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information.Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@
"consoleGroup": "advanced",
"title": "User First Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": " Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"longDescription": " Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand All @@ -614,7 +614,7 @@
"consoleGroup": "advanced",
"title": "User Last Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information.Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information.Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@
"consoleGroup": "advanced",
"title": "User First Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": " Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"longDescription": " Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand All @@ -653,7 +653,7 @@
"consoleGroup": "advanced",
"title": "User Last Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information.Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information.Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@
"consoleGroup": "advanced",
"title": "User First Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": " Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"longDescription": " Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand All @@ -653,7 +653,7 @@
"consoleGroup": "advanced",
"title": "User Last Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information.Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information.Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@
"consoleGroup": "advanced",
"title": "User First Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": " Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"longDescription": " Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand All @@ -653,7 +653,7 @@
"consoleGroup": "advanced",
"title": "User Last Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information.Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information.Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@
"consoleGroup": "advanced",
"title": "User First Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": " Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the first session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand All @@ -653,7 +653,7 @@
"consoleGroup": "advanced",
"title": "User Last Passthroughs",
"group": "Contexts, Filters, and Logs",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the events table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information.Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"longDescription": "Field(s) to carry through from the events table to the derived table. The field is based on the last session record for that user. Aggregation is not supported. A list of either flat column names from the sessions table or a dictionary with the keys `sql` for the SQL code to select the column and `alias` for the alias of the column in the output. See the [Passthrough field](/docs/modeling-your-data/modeling-your-data-with-dbt/package-features/passthrough-fields/) docs for more information. Note flat fields will be aliased with a `last_` prefix, dictionary provided aliases will not by default.",
"packageDefault": "[ ] (no passthroughs)",
"$ref": "#/definitions/passthrough_vars"
},
Expand Down
Loading