-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathdbt_project.yml
More file actions
54 lines (50 loc) · 2.04 KB
/
dbt_project.yml
File metadata and controls
54 lines (50 loc) · 2.04 KB
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
44
45
46
47
48
49
50
51
52
53
54
config-version: 2
name: 'stripe'
version: '1.7.0'
require-dbt-version: [">=1.3.0", "<3.0.0"]
models:
stripe:
+schema: stripe
+materialized: table
intermediate:
+materialized: table
int_stripe__deduped_subscription_item:
+materialized: ephemeral
int_stripe__subscription_discount:
+materialized: ephemeral
staging:
+materialized: table
+schema: stg_stripe
tmp:
+materialized: view
vars:
stripe:
account: "{{ source('stripe', 'account') }}"
balance_transaction: "{{ source('stripe', 'balance_transaction') }}"
card: "{{ source('stripe', 'card') }}"
charge: "{{ source('stripe', 'charge') }}"
coupon: "{{ source('stripe', 'coupon') }}"
credit_note: "{{ source('stripe', 'credit_note') }}"
credit_note_line_item: "{{ source('stripe', 'credit_note_line_item') }}"
customer: "{{ source('stripe', 'customer') }}"
discount: "{{ source('stripe', 'discount') }}"
dispute: "{{ source('stripe', 'dispute') }}"
fee: "{{ source('stripe', 'fee') }}"
invoice: "{{ source('stripe', 'invoice') }}"
invoice_line_item: "{{ source('stripe', 'invoice_line_item') }}"
payment_intent: "{{ source('stripe', 'payment_intent') }}"
payment_method_card: "{{ source('stripe', 'payment_method_card') }}"
payment_method: "{{ source('stripe', 'payment_method') }}"
payout: "{{ source('stripe', 'payout') }}"
payout_balance_transaction: "{{ source('stripe', 'payout_balance_transaction') }}"
plan: "{{ source('stripe', 'plan') }}"
price: "{{ source('stripe', 'price') }}"
product: "{{ source('stripe', 'product') }}"
refund: "{{ source('stripe', 'refund') }}"
subscription_history: "{{ source('stripe', 'subscription_history') }}"
subscription: "{{ source('stripe', 'subscription') }}"
subscription_discount: "{{ source('stripe', 'subscription_discount') }}"
subscription_item: "{{ source('stripe', 'subscription_item') }}"
transfer: "{{ source('stripe', 'transfer') }}"
card_pass_through_columns: []
stripe_sources: []