mirror of
https://github.com/dbt-labs/dbt-project-evaluator.git
synced 2025-12-18 02:11:27 +00:00
30 lines
618 B
YAML
30 lines
618 B
YAML
version: 2
|
|
|
|
groups:
|
|
- name: my_awesome_group
|
|
owner:
|
|
email: thegoat@jaffleshop.com
|
|
|
|
models:
|
|
- name: report_1
|
|
description: tom cruise's minority report
|
|
config:
|
|
access: public
|
|
materialized: table
|
|
columns:
|
|
- name: col
|
|
description: col me maybe
|
|
data_type: boolean
|
|
|
|
- name: report_2
|
|
description: the colbert report
|
|
config:
|
|
access: public
|
|
materialized: table
|
|
group: my_awesome_group
|
|
contract:
|
|
enforced: true
|
|
columns:
|
|
- name: id
|
|
data_type: "{{ 'UInt8' if target.type in ['clickhouse'] else 'integer' }}"
|