* Looks like double backslash is needed:

```yaml
  _expand_array:
    "KEY\\[%s\\]": {}
```
First for YAML parser and second for name matcher

or in this particular case just

```yaml
  _expand_array:
    KEY*: {}
```