forked from fivetran/dbt_marketo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbt_project.yml
43 lines (36 loc) · 1.48 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
36
37
38
39
40
41
42
43
name: 'marketo'
version: '0.4.0'
config-version: 2
require-dbt-version: ">=0.20.0"
on-run-start: "{{ lead_history_columns_warning() }}"
vars:
marketo__enable_programs: False
marketo__enable_campaigns: False
marketo:
lead_history_columns: [
'lead_status',
'urgency',
'priority',
'relative_score',
'relative_urgency',
'demographic_score_marketing',
'behavior_score_marketing'
]
activity_email_bounced: "{{ ref('stg_marketo__activity_email_bounced') }}"
activity_click_email: "{{ ref('stg_marketo__activity_click_email') }}"
activity_email_delivered: "{{ ref('stg_marketo__activity_email_delivered') }}"
activity_open_email: "{{ ref('stg_marketo__activity_open_email') }}"
activity_unsubscribe_email: "{{ ref('stg_marketo__activity_unsubscribe_email') }}"
activity_send_email: "{{ ref('stg_marketo__activity_send_email') }}"
change_data_value: "{{ ref('stg_marketo__activity_change_data_value') }}"
lead: "{{ ref('stg_marketo__lead') }}"
lead_describe: "{{ ref('stg_marketo__lead_describe') }}"
campaigns: "{{ ref('stg_marketo__campaigns') }}"
email_tempate_history: "{{ ref('stg_marketo__email_template_history') }}"
program: "{{ ref('stg_marketo__program') }}"
models:
marketo:
+materialized: table
+schema: marketo
intermediate:
+materialized: ephemeral