Complete the code to set the project name in dbt_project.yml.
name: [1]The name key in dbt_project.yml sets the project name.
Complete the code to specify the version of the dbt project.
version: [1]The version should be a string, so it needs quotes.
Fix the error in the code to correctly define the profile name.
profile: [1]The profile name must be a string, so it needs quotes.
Fill both blanks to define the models directory and the materialization strategy.
models: [1]: [2]: table
The first blank is the project name under models. The second blank is the key for materialization strategy.
Fill all three blanks to configure the seeds directory, file format, and quoting.
seeds: [1]: [2]: csv [3]: identifier: true
The first blank is the project name under seeds. The second blank sets the file format. The third blank sets quoting options for identifiers.