def created_instances_for_date
    @created_instances_for_date.sort { |a, b|
      ret = a[:start_time] <=> b[:start_time]
      ret = a[:name] <=> b[:name] if ret == 0
      ret = a[:location] <=> b[:location] if ret == 0