Automation error, which is the problem?

what is wrong with this automation?

  - alias: 'Airco bedroom Quite below 27'
    initial_state: 'on'
    trigger:
      platform: state
      entity_id: sensor.temperature_158d000110503c
      below: '27'
    condition:
      condition: time
      after: '02:00:00'
      before: '08:00:00'
    action:
      service: switch.turn_on
      entity_id: airco_bedroom_quite

Wrong entity_id ?

Try:

  - alias: 'Airco bedroom Quite below 27'
    initial_state: 'on'
    trigger:
      platform: numeric_state
      entity_id: sensor.temperature_158d000110503c
      below: 27
    condition:
      condition: time
      after: '02:00:00'
      before: '08:00:00'
    action:
      service: switch.turn_on
      entity_id: switch.airco_bedroom_quite

As per previous answer, double check entity ID on last line…

Changed the entity_id and the 27 not between ’

Still error…

Edit
and numeric_state

Now it passed configuration validation