forked from fivetran/dbt_stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbt_project.yml
29 lines (29 loc) · 1.04 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
config-version: 2
name: 'stripe'
version: '0.6.0'
require-dbt-version: [">=1.0.0", "<2.0.0"]
models:
stripe:
+schema: stripe
+materialized: table
intermediate:
+materialized: ephemeral
vars:
stripe:
balance_transaction: "{{ ref('stg_stripe__balance_transaction') }}"
card: "{{ ref('stg_stripe__card') }}"
charge: "{{ ref('stg_stripe__charge') }}"
customer: "{{ ref('stg_stripe__customer') }}"
fee: "{{ ref('stg_stripe__fee') }}"
invoice: "{{ ref('stg_stripe__invoice') }}"
invoice_line_item: "{{ ref('stg_stripe__invoice_line_item') }}"
payment_intent: "{{ ref('stg_stripe__payment_intent') }}"
payment_method_card: "{{ ref('stg_stripe__payment_method_card') }}"
payment_method: "{{ ref('stg_stripe__payment_method') }}"
payout: "{{ ref('stg_stripe__payout') }}"
plan: "{{ ref('stg_stripe__plan') }}"
refund: "{{ ref('stg_stripe__refund') }}"
subscription: "{{ ref('stg_stripe__subscription') }}"
using_invoices: true
using_payment_method: true
using_subscriptions: true