Complete the code to assign ownership to a group in a dbt model.
version: 2 models: - name: sales_data [1]: ['data_team']
The groups key is used to assign ownership to a group in dbt model configurations.
Complete the code to specify multiple groups owning a dbt model.
models:
- name: customer_info
groups: [[1]]To assign multiple groups, list them as strings inside the brackets separated by commas.
Fix the error in the group ownership assignment in this dbt model YAML.
models:
- name: orders
groups: [1]The groups key expects a list of strings, so the value must be a list like ['data_team'].
Fill both blanks to create a dbt model YAML with group ownership and a description.
models: - name: [1] groups: [[2]] description: 'Model owned by the data team.'
The model name is 'sales_summary' and the group owning it is 'data_team'.
Fill all three blanks to define a dbt model YAML with multiple groups and a tag.
models: - name: [1] groups: [[2]] tags: [[3]]
The model is 'customer_orders', owned by 'sales_team', and tagged as 'priority'.