-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdbt_project.yml
35 lines (32 loc) · 1.4 KB
/
dbt_project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: 'twitter_ads_source'
version: '0.8.0'
config-version: 2
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
twitter_ads_source:
+materialized: table
+schema: twitter_ads_source
tmp:
+materialized: view
vars:
twitter_ads_source:
account_history: "{{ source('twitter_ads','account_history') }}"
campaign_history: "{{ source('twitter_ads','campaign_history') }}"
line_item_history: "{{ source('twitter_ads','line_item_history') }}"
promoted_tweet_history: "{{ source('twitter_ads','promoted_tweet_history') }}"
promoted_tweet_report: "{{ source('twitter_ads','promoted_tweet_report') }}"
tweet_url: "{{ source('twitter_ads','tweet_url') }}"
tweet: "{{ source('twitter_ads','tweet') }}"
campaign_report: "{{ source('twitter_ads','campaign_report') }}"
line_item_report: "{{ source('twitter_ads','line_item_report') }}"
line_item_keywords_report: "{{ source('twitter_ads','line_item_keywords_report') }}"
twitter_ads__campaign_report_passthrough_metrics: []
twitter_ads__line_item_report_passthrough_metrics: []
twitter_ads__line_item_keywords_report_passthrough_metrics: []
twitter_ads__promoted_tweet_report_passthrough_metrics: []
twitter_ads__conversion_fields:
- conversion_purchases_metric
- conversion_custom_metric
twitter_ads__conversion_sale_amount_fields:
- conversion_purchases_sale_amount
- conversion_custom_sale_amount