-
Notifications
You must be signed in to change notification settings - Fork 30
/
dbt_project.yml
38 lines (36 loc) · 1.5 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
config-version: 2
name: 'stripe_source'
version: '0.12.1'
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
stripe_source:
materialized: table
+schema: stg_stripe
tmp:
materialized: view
vars:
stripe_source:
account: "{{ source('stripe', 'account') }}"
balance_transaction: "{{ source('stripe', 'balance_transaction') }}"
card: "{{ source('stripe', 'card') }}"
charge: "{{ source('stripe', 'charge') }}"
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') }}"
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') }}"
transfer: "{{ source('stripe', 'transfer') }}"
card_pass_through_columns: []