KNX Button with address list

Hello,
i need a buttons which sends telegrams to four knx adresses.
The Manual KNX - Home Assistant sais that i can pass a list to the parameter address. So i tried this

button:
  - name: "Reset"
    payload: 0
    payload_length: 0
    address: 
    - "0/0/60"
    - "0/0/61"
    - "0/0/62"
    - "0/0/63"

Then i get this error:

Invalid config for [knx]: value '['0/0/60', '0/0/61', '0/0/62', '0/0/63']' is not a valid KNX group address '<main>/<middle>/<sub>', '<main>/<sub>' or '<free>' (eg.'1/2/3', '9/234', '123'), nor xknx internal address 'i-<string>'. for dictionary value @ data['knx']['button'][0]['address']. Got ['0/0/60', '0/0/61', '0/0/62', '0/0/63']. (See /config/configuration.yaml, line 11). 

How can i pass a list to this address attribute in the knx button?

Oh, this is a bug in the documentation. A list is not supported here.

You may use the knx.send service to do that (from a template button or script or such).