Files
dbt-project-evaluator/integration_tests/models/reports/reports.yml
2025-08-11 20:37:21 +02:00

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' }}"