Micro wake word, how to add this setting

According to the documentation found here the micro wake word component has a few additional settings. I tried to add probability_cutoff but I can’t convince the yaml that this is a correct entry

micro_wake_word:
  models:
    - ${micro_wake_word_model}
  probability_cutoff: 0.9    

This gives me the error: The probability_cutoff parameter has moved to be a list element under the models parameter.

I tried to move to here but that gives me the following error: Not a valid model name, local path, http(s) url, or github shorthand

micro_wake_word:
  models:
    - ${micro_wake_word_model}
    - probability_cutoff: 0.9    

What am I doing wrong here?

Did you try stepping it in 2 spaces, without the - (just a guess)

micro_wake_word:
  models:
    - ${micro_wake_word_model}
      probability_cutoff: 0.9  

Yes I did.
But then I get the error: Mapping values are not allowed here