Am I Missing Precedence With Automations?

I have the following two automations, yet only one fires:

- id: '1601596911646'
  alias: 'Climate: Morning Heat'
  description: ''
  trigger:
  - platform: time
    at: '06:00'
  condition:
  - type: is_value
    condition: device
    device_id: 64467e70043c11eba2640f5929640a8e
    entity_id: sensor.honeywell_th6320zw2003_t6_pro_series_thermostat_temperature
    domain: sensor
    below: 73
  action:
  - service: climate.set_temperature
    data:
      temperature: 69
    entity_id: climate.honeywell_th6320zw2003_t6_pro_series_thermostat_mode
  mode: single

and

- id: '1601597049514'
  alias: 'Climate: Night Heat'
  description: ''
  trigger:
  - platform: time
    at: '22:00'
  condition:
  - type: is_value
    condition: device
    device_id: 64467e70043c11eba2640f5929640a8e
    entity_id: sensor.honeywell_th6320zw2003_t6_pro_series_thermostat_temperature
    domain: sensor
    below: 73
  action:
  - service: climate.set_temperature
    data:
      temperature: 64
    entity_id: climate.honeywell_th6320zw2003_t6_pro_series_thermostat_mode
  mode: single

It appears that only the first one created fires, and the second one never does. As can be seen, these are nearly identical, with the only difference being the time they fire, and the temperature being set.

I am at a loss for what could be causing this issue. What am I missing?

After reviewing the logs, it appears that the autogenerated IDs (1601597049514 and 1601596911646) were the problem. After I renamed the IDs to ‘climate_morning_heat’ and ‘climate_night_heat’ the issue resolved. Why is it that these unique autogenerated IDs were problematic?