Bird
0
0

Which of the following is the correct YAML syntax to assign multiple group owners to a dbt model?

easy📝 Syntax Q3 of 15
dbt - Governance and Collaboration
Which of the following is the correct YAML syntax to assign multiple group owners to a dbt model?
Aowner_groups: ['data_team', 'analytics_team']
Bowners: group:data_team, group:analytics_team
Cowners: ['group:data_team', 'group:analytics_team']
Downers: ['data_team', 'analytics_team']
Step-by-Step Solution
Solution:
  1. Step 1: Understand YAML list syntax

    Lists in YAML are enclosed in square brackets with comma-separated values.
  2. Step 2: Confirm group owner format

    Group owners require 'group:' prefix inside the list.
  3. Final Answer:

    owners: ['group:data_team', 'group:analytics_team'] -> Option C
  4. Quick Check:

    Multiple group owners = list with 'group:' prefixes [OK]
Quick Trick: Use brackets and commas for multiple owners [OK]
Common Mistakes:
MISTAKES
  • Omitting 'group:' prefix
  • Not using list brackets
  • Using incorrect key 'owner_groups'

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More dbt Quizzes