├── .github ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── README.md ├── analysis ├── .gitkeep └── cpa_and_roas.sql ├── data ├── .gitkeep ├── ad_spend.csv ├── customer_conversions.csv ├── schema.yml └── sessions.csv ├── dbt_project.yml └── models ├── attribution_touches.sql ├── docs.md ├── overview.md └── schema.yml /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/attribution-playbook/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/attribution-playbook/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | target/ 3 | dbt_modules/ 4 | logs/ 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/attribution-playbook/HEAD/README.md -------------------------------------------------------------------------------- /analysis/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/cpa_and_roas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/attribution-playbook/HEAD/analysis/cpa_and_roas.sql -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/ad_spend.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/attribution-playbook/HEAD/data/ad_spend.csv -------------------------------------------------------------------------------- /data/customer_conversions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/attribution-playbook/HEAD/data/customer_conversions.csv -------------------------------------------------------------------------------- /data/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/attribution-playbook/HEAD/data/schema.yml -------------------------------------------------------------------------------- /data/sessions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/attribution-playbook/HEAD/data/sessions.csv -------------------------------------------------------------------------------- /dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/attribution-playbook/HEAD/dbt_project.yml -------------------------------------------------------------------------------- /models/attribution_touches.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/attribution-playbook/HEAD/models/attribution_touches.sql -------------------------------------------------------------------------------- /models/docs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/attribution-playbook/HEAD/models/overview.md -------------------------------------------------------------------------------- /models/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/attribution-playbook/HEAD/models/schema.yml --------------------------------------------------------------------------------