Creating and restoring a scene with climate entities

Hello,

I would like to create a scene stores the current state of some climate entities. For that, i call the scene.create service with

service: scene.create
data:
  scene_id: climate_vor_absenkung
  snapshot_entities:
    - climate.thermostat_esszimmer
    - climate.thermostat_kinderzimmer
    - climate.thermostat_schlafzimmer
    - climate.thermostat_wohnzimmer

afterwards, I can find the newly created scene. Trying to activate the scene by calling scene.turn_on

service: scene.turn_on
data: {}
target:
  entity_id: scene.climate_vor_absenkung

results in an error message that very shortly appears at the bottom of the screen:

Fehler beim Aufrufen des Diensts scene.turn_on. must contain at least one of temperature, target_temp_high, target_temp_low… Got {‘type’: ‘execute_script’, ‘sequence’: [{‘service’: ‘scene.turn_on’, ‘data’: {}, ‘target’: {‘entity_id’: [‘scene.climate_vor_absenkung’]}}], ‘id’: 53}

Can anyone explain what could be the problem here?

Thanks!