-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathdbt_project.yml
More file actions
36 lines (34 loc) · 1.32 KB
/
dbt_project.yml
File metadata and controls
36 lines (34 loc) · 1.32 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
name: 'xero'
version: '1.3.0'
config-version: 2
require-dbt-version: [">=1.3.0", "<3.0.0"]
vars:
xero:
account: "{{ source('xero', 'account') }}"
contact: "{{ source('xero', 'contact') }}"
invoice_line_item: "{{ source('xero', 'invoice_line_item') }}"
invoice: "{{ source('xero', 'invoice') }}"
journal_line: "{{ source('xero', 'journal_line') }}"
journal: "{{ source('xero', 'journal') }}"
organization: "{{ source('xero', 'organization') }}"
credit_note: "{{ source('xero', 'credit_note') }}"
bank_transaction: "{{ source('xero', 'bank_transaction') }}"
invoice_line_item_has_tracking_category: "{{ source('xero', 'invoice_line_item_has_tracking_category') }}"
journal_line_has_tracking_category: "{{ source('xero', 'journal_line_has_tracking_category') }}"
tracking_category_has_option: "{{ source('xero', 'tracking_category_has_option') }}"
tracking_category_option: "{{ source('xero', 'tracking_category_option') }}"
tracking_category: "{{ source('xero', 'tracking_category') }}"
xero__using_bank_transaction: true
xero__using_credit_note: true
xero_sources: []
models:
xero:
+materialized: table
+schema: xero
utilities:
+materialized: ephemeral
staging:
+schema: stg_xero
+materialized: table
tmp:
+materialized: view