YAML Config Help - Orvibo Multiple Switches

Hi,

I’m struggling to figure out how to display and control multiple Orvibo switches. From looking at other examples I could find on the website, I’ve tried the following combinations, but each one either fails or just shows one item.

Would someone mind either pointing me to an example I can use as a base to build mine from, or perhaps highlighting what the correct syntax would be please? My aim is to then include them in a group.

Website example config first:

switch:
  - platform: orvibo
    discovery: false
    switches:
      - host: IP_ADDRESS
        mac: MA:CA:DD:RE:SS:00
        name: "My Socket"

My attempts:

switch:
  - platform: orvibo
    discovery: false
    switches:
      Socket1:
        host: IP_ADDRESS
        mac: MA:CA:DD:RE:SS:00
        name: "Socket 1"
      Socket2:
        host: IP_ADDRESS
        mac: MA:CA:DD:RE:SS:00
        name: "Socket 2"

switch:
  - platform: orvibo
    discovery: false
    switches:
      - host: IP_ADDRESS
        mac: MA:CA:DD:RE:SS:00
        name: "Socket 1"
      - host: IP_ADDRESS
        mac: MA:CA:DD:RE:SS:00
        name: "Socket 2"

switch:
  - platform: orvibo
    discovery: false
    switch1:
      - host: IP_ADDRESS
        mac: MA:CA:DD:RE:SS:00
        name: "Socket 1"
    switch2:
      - host: IP_ADDRESS
        mac: MA:CA:DD:RE:SS:00
        name: "Socket 2"

Thanks in advance.

Apologies - I must have mistyped something because the following config now works for me:

switch:
  - platform: orvibo
    discovery: false
    switches:
      - host: IP_ADDRESS
        mac: MA:CA:DD:RE:SS:00
        name: "Socket 1"
      - host: IP_ADDRESS
        mac: MA:CA:DD:RE:SS:00
        name: "Socket 2"

Bro, could u help me?
I copied your config but y got this error.
image