Snapshots must be configured with a 'strategy', 'unique_key', and 'target_schema'.

Hi Team,
I am new to dbt. I am following a course. While doing this, I ran a script for snapshot,

{% snapshot scd_dim_listings %}

{{
config(
target_schema=‘snapshot’,
unique_key=‘ID’,

    stategy='timestamp',
    updated_at='UPDATED_AT'
)

}}

select*from {{ source(‘airbnb’, ‘listing’) }}

{% endsnapshot %}

After this when I run dbt snapshot I am getting
“Parsing Error
at path : Snapshots must be configured with a ‘strategy’, ‘unique_key’, and ‘target_schema’.”

Could you please help me and let me know why this error I am getting

there is a typo: it’s strategy not stategy

Note: @thais.bittencourt385 originally posted this reply in Slack. It might not have transferred perfectly.

:smiling_face_with_tear: I missed this, thanks

Anytime! Fresh eye never hurts :slightly_smiling_face:

Note: @thais.bittencourt385 originally posted this reply in Slack. It might not have transferred perfectly.