Conditions

I just cannot get this to pass the config check.

The error relates to the conditions:
Invalid config for [automation]: [condiition] is an invalid option for [automation]. Check: automation->condiition. (See /config/configuration.yaml, line 83).
but if I remove conditions automation passes test and works
please help!

- alias: Ubisys_c4_1_button_1
    trigger:
      platform: state
      entity_id: sensor.0x001fee000000504d_action
      to: '1_toggle'
    condiition:
      condition: 'or'
      conditions:
        - condition: state
          entity_id: 'switch.0x00124b001cd60859_switch'
          state: 'off'
        - condition: state
          entity_id: switch.0x00124b001cd60881_switch
          state: off
        - condition: state
          entity_id: switch.0x00124b001cd5fc6e_switch
          state: off
    action:
      - service: switch.turn_on
        entity_id: switch.0x00124b001cd60859_switch
      - service: switch.turn_on
        entity_id: switch.0x00124b001cd60881_switch
      - service: switch.turn_on
        entity_id: switch.0x00124b001cd5fc6e_switch

condiition: should be condition:, and you should have quotes around off in the second and third conditions.

However, you could remove the conditions entirely and use the switch.toggle service instead (unless the condition that all of those lights are off is important). You can also list multiple entity IDs:

- service: switch.toggle
  entity_id:
  - switch.foo
  - switch.bar
  - switch.foo_bar

In addition, every line after the first one should be shifted to the left by two spaces. The words alias, trigger, condition, and action should be vertically aligned. Alternatively, shift the first line to the right by two spaces, if that’s how all other automations are aligned in the file.

Thank you!

such a stupid misspelling from my side!

Heh, it happens