-
Notifications
You must be signed in to change notification settings - Fork 1
/
dbt_project.yml
41 lines (36 loc) · 1.49 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
name: 'zuora'
version: '0.3.0'
config-version: 2
require-dbt-version: [">=1.3.0", "<2.0.0"]
vars:
zuora:
account: "{{ ref('stg_zuora__account') }}"
amendment: "{{ ref('stg_zuora__amendment') }}"
contact: "{{ ref('stg_zuora__contact') }}"
credit_balance_adjustment: "{{ ref('stg_zuora__credit_balance_adjustment') }}"
invoice: "{{ ref('stg_zuora__invoice') }}"
invoice_item: "{{ ref('stg_zuora__invoice_item') }}"
invoice_payment: "{{ ref('stg_zuora__invoice_payment') }}"
order: "{{ ref('stg_zuora__order') }}"
payment: "{{ ref('stg_zuora__payment') }}"
payment_method: "{{ ref('stg_zuora__payment_method') }}"
product_rate_plan_charge: "{{ ref('stg_zuora__product_rate_plan_charge') }}"
product_rate_plan: "{{ ref('stg_zuora__product_rate_plan') }}"
product: "{{ ref('stg_zuora__product') }}"
rate_plan_charge: "{{ ref('stg_zuora__rate_plan_charge') }}"
rate_plan: "{{ ref('stg_zuora__rate_plan') }}"
refund: "{{ ref('stg_zuora__refund') }}"
refund_invoice_payment: "{{ ref('stg_zuora__refund_invoice_payment') }}"
subscription: "{{ ref('stg_zuora__subscription') }}"
taxation_item: "{{ ref('stg_zuora__taxation_item') }}"
zuora_account_pass_through_columns: []
zuora_rate_plan_pass_through_columns: []
zuora_rate_plan_charge_pass_through_columns: []
zuora_subscription_pass_through_columns: []
models:
zuora:
+schema: zuora
+materialized: table
intermediate:
+schema: zuora_int
+materialized: table