Automation: why 'Below' property not allowed

Hi
Why I’m not allowed to put here the below and above property?
sorry about a new noob issue.

- id: "1703006269419"
  alias: "Rega: Check If Garden should be Watered"
  description: ""
  trigger:
    - platform: sun
      event: sunrise
      offset: 0
  condition: []
  action:
    - choose:
        - conditions:
            - condition: state
              entity_id: input_number.rega_maximum_temperature_measured
              state: ""
              below: 20
            - condition: state
              entity_id: sensor.rega_total_rain_fallen_plus_expected
              state: ""
              above: 20
          sequence: []
  mode: single

You have to use numeric state, not state.

condition:
  - condition: numeric_state
    entity_id: sensor.bedroom_temperature
    above: input_number.blind_tilt_threshold

oh ok…it works…many thanks