-
Notifications
You must be signed in to change notification settings - Fork 4
/
input.json
3081 lines (3081 loc) · 202 KB
/
input.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[{
"body": "Leipzig",
"content": "1/1 \n \n \n \n \n \nEinwohneranfrage-Nr. VII-EF-08640 \n \nStatus: \u00f6ffentlich \n \nEingereicht von: \nHeidi Koll \n \n \n \nBetreff: \nDrohnen statt Hubschrauber? \n \n \nBeratungsfolge (\u00c4nderungen vorbehalten): \nGremium \nVoraussichtlicher \nSitzungstermin \nZust\u00e4ndigkeit \n \nRatsversammlung 14.06.2023 schriftliche \nBeantwortung \n \nSachverhalt \n \nIch wohne in der S\u00fcdvorstadt. \n \nRegelm\u00e4\u00dfig - und besonders an Wochenenden - kreist bei Demonstrationen, Veranstaltun-\ngen und zu jedem RB-Fu\u00dfballspiel stundenlang ein Hubschrauber \u00fcber diesen und angren-\nzende Stadtteile. \nIch wei\u00df nicht, ob dies eine polizeiliche Ma\u00dfnahme ist oder der \u00dcberwachung der Verkehrs-\nlage dient. \n \nIch wei\u00df aber, dass es f\u00fcr viele Menschen in der Stadt eine erhebliche L\u00e4rmbel\u00e4stigung dar-\nstellt. Und dies besonders zu Zeiten, die eigentlich der Erholung dienen sollen. \n \nIch stelle mir vor, dass es heutzutage m\u00f6glich ist, den Hubschrauber durch professionelle \nDrohnen zu ersetzen, die die Eins\u00e4tze leiser, \u00f6konomischer und \u00f6kologischer durchf\u00fchren \nk\u00f6nnen. \n \nIch bitte Sie diese Option zu pr\u00fcfen und wenn m\u00f6glich umzusetzen. \n \n \nAnlage/n \nKeine \n \n1 von 1 in Zusammenstellung\n\tVorlage",
"name": "Drohnen statt Hubschrauber?",
"resolution": null,
"originator": "Heidi Koll",
"paper_type": "Einwohneranfrage",
"published_at": "2023-05-09",
"reference": "VII-EF-08640",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2011216"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "R\u00e4umlichkeiten Sitzungen Ortschaftsrat Hartmannsdorf-Knautnaundorf (OR 0060/ 23/24)",
"resolution": null,
"originator": "OR Hartmannsdorf-Knautnaundorf",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08642",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010914"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Fortf\u00fchrung des Vorhabens \"Einbau einer Turmuhr ohne Schlagwerk\" (OR 0025/ 23)",
"resolution": null,
"originator": "OR L\u00fctzschena-Stahmeln",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08643",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010915"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Personalstellenerweiterung f\u00fcr integrierte Jugendarbeit - Kulturwerkstatt KAOS (SBB 0006/ 23/24)",
"resolution": null,
"originator": "SBB Altwest",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08640",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010912"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Instandsetzung/Erneuerung Toiletten Liebertwolkwitz Markt 9 (OR 0017/ 23/24)",
"resolution": null,
"originator": "OR Liebertwolkwitz",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08646",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010918"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "L\u00e4rmschutz f\u00fcr Clubs verbessern - Konflikten vorbeugen (A 0041/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08641",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010913"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "2 Papierk\u00f6rbe f\u00fcr Bushaltestellen in Gottscheina (OR 0007/ 23/24)",
"resolution": null,
"originator": "OR Seehausen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08645",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010917"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Erarbeiten Entwurfsplanung eines Gemeinschaftszentrums in R\u00fcckmarsdorf (OR 0026/ 23/24)",
"resolution": null,
"originator": "OR R\u00fcckmarsdorf",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08644",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010916"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Toilettenanlage im Lene-Voigt-Park (SBB 0021/ 23)",
"resolution": null,
"originator": "SBB S\u00fcdost",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08647",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010919"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Erh\u00f6hung Verkehrssicherheit - Anschaffung Blitzer (A 0166/ 23/24)",
"resolution": null,
"originator": "SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08648",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010920"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Bedrohte Freie Kunst und Kultur st\u00e4rken durch zus\u00e4tzliche F\u00f6rdermittel - Personal (A 0024/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08649",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010921"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "\"B\u00fcrger- und Akteursbeteiligung\" weiter verstetigen - Teil I - Stellen (A 0037/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08654",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010926"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Sperre zur Auslastungssicherung von Stellen (A 0068/ 23/24)",
"resolution": null,
"originator": "Fraktion CDU",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08650",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010922"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Gesundheitspr\u00e4vention, Informationsveranstaltungen und Sensibilisierungskampagnen im Bereich Sexualit\u00e4t in Gesundheitsamt (A 0033/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08651",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010923"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Streichung der Bauma\u00dfnahmen am Werk II (A 0074/ 23/24)",
"resolution": null,
"originator": "Fraktion AfD",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08652",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010924"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Familienhebamme - Projektbeteiligung (A 0034/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08653",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010925"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Aufstockung von Stellen im Klimareferat f\u00fcr Energiewende (A 0045/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08655",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010927"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "St\u00e4rkung der Energie- und Klimaschutzberatung im UiZ (A 0050/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08656",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010928"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Wohngeldreform sachgerecht umsetzen (A 0104/ 23/24)",
"resolution": null,
"originator": "Fraktion DIE LINKE",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08657",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010929"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Mehr Personal braucht mehr Personal (A 0110/ 23/24)",
"resolution": null,
"originator": "Fraktion DIE LINKE",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08658",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010930"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Digitale Schnittstellen f\u00fcr B\u00fcrgerInnen, Unternehmen und Vereine (A 0170/ 23/24)",
"resolution": null,
"originator": "SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08665",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010937"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "St\u00e4rkung von Personalbetreuung und -entwicklung (A 0186/ 23/24)",
"resolution": null,
"originator": "SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08666",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010938"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Eine zus\u00e4tzliche Stelle f\u00fcr die Vergabe von Stipendien (A 0154/ 23/24)",
"resolution": null,
"originator": "SR M. Gehrt; SR Th. Kumbernu\u00df; SR M. G\u00f6tze",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08661",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010933"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Guter B\u00fcrgerservice braucht mehr Personal (A 0112/ 23/24)",
"resolution": null,
"originator": "Fraktion DIE LINKE",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08659",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010931"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Leipiger Schulbibliotheken und Leser\u00e4ume konsequent weiterentwickeln! (A 0149/ 23/24)",
"resolution": null,
"originator": "SR Dr. A. Bednarsky; SR M. G\u00f6tze; SR Oliver Gebhardt; SR S. Pellmann; SR U. K\u00f6hler-Siegel",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08662",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010934"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Regeneration braucht Personal (A 0161/ 23/24)",
"resolution": null,
"originator": "SR Dr. A. Bednarsky; SR J. Nagel; SR B. Ehms; SR M. G\u00f6tze; SR M. K\u00fcng-Vildebrand; SR O. Gebhardt",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08660",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010932"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Streichung der Bauma\u00dfnahmen am \"Conne Island\" (A 0075/ 23/24)",
"resolution": null,
"originator": "Fraktion AfD",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08663",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010935"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Aufstockung der Umweltberatung im Umweltinformationszentrum (UiZ) (A 0129/ 23/24)",
"resolution": null,
"originator": "SR M. Neuhaus; SR Prof. Dr. G. Abraham",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08664",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010936"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Baalsdorfer Vereins- und Begegnungsst\u00e4tte vorantreiben! (A 0086/ 24)",
"resolution": null,
"originator": "Fraktion AfD",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08674",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010946"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Schulsozialarbeit; Kita- und Schulsozialarbeit aufstocken (Schulsozialarbeit) - Neufassung zu den Antr\u00e4gen A 0197/23/24 und A 0118/23/24 (A 0197/ 23/24-01-NF)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen; Fraktion DIE LINKE; SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08673",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010945"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Erh\u00f6hung Medienetat der Schulbibliotheken und Leser\u00e4ume (A 0189/ 23/24)",
"resolution": null,
"originator": "SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08672",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010944"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Quartiersschule Ihmelsstra\u00dfe - Projekt \u00d6ffnung ins Quartier (A 0040/ 23/24-01-NF)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08669",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010941"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Sachmittel f\u00fcr Leipziger Schulbibliotheken und Leser\u00e4ume (A 0148/ 23/24)",
"resolution": null,
"originator": "SR Dr. A. Bednarsky; SR M. G\u00f6tze; SR Oliver Gebhardt",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08671",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010943"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Neue Stelle Qualit\u00e4tssicherung in der Wohnungslosenhilfe der Stadt Leipzig (A 0206/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08667",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010939"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Verkehrs\u00fcberwachung im ruhenden Verkehr dem tats\u00e4chlichen Bedarf anpassen (A 0207/ 23/24)",
"resolution": null,
"originator": "Fraktion DIE LINKE",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08668",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010940"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Bearbeitungsstau abbauen, neue Aufgaben meistern: Ausl\u00e4nderbeh\u00f6rde aufstocken (Neufassung zu den Antr\u00e4gen A 0106/23/24 und A 0171/23/24) (A 0106/ 23/24-01-NF)",
"resolution": null,
"originator": "Fraktion DIE LINKE; SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08670",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010942"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Radverkehrs\u00fcbungsplatz im Stadtbezirk Leipzig-Ost (SBB 0014/ 23/24)",
"resolution": null,
"originator": "SBB Ost",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08675",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010947"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "F\u00f6rderung von baulichen und technischen Schutz- und Reparaturma\u00dfnahmen f\u00fcr muslimische und j\u00fcdische Gemeinden (A 0009/ 23/24)",
"resolution": null,
"originator": "Migrantenbeirat",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08676",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010948"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Sanierung OFT Sellerhausen (SBB 0015/ 23/24)",
"resolution": null,
"originator": "SBB Ost",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08678",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010950"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Handschwengelpumpe Wurzener Stra\u00dfe und im Stadtgebiet (SBB 0016/ 23/24)",
"resolution": null,
"originator": "SBB Ost",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08677",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010949"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Erh\u00f6hung der Druckkostenzusch\u00fcsse f\u00fcr Ortsteilbl\u00e4tter (OR 0061/ 23/24)",
"resolution": null,
"originator": "OR R\u00fcckmarsdorf",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08679",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010951"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Dynamisierung F\u00f6rderung von Vereinen und Verb\u00e4nden im Umweltbereich (A 0172/ 23/24)",
"resolution": null,
"originator": "SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08684",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010956"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Erh\u00f6hung der Druckkostenzusch\u00fcsse f\u00fcr Ortsteilbl\u00e4tter (OR 0051/ 23/24)",
"resolution": null,
"originator": "OR Burghausen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08682",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010954"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Fonds \"Leipzig. Ort der Vielfalt\" aufstocken (A 0036/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08680",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010952"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Erh\u00f6hung des Budgets f\u00fcr Sprach- und Kulturmittlung (SPRINT) (A 0151/ 23/24)",
"resolution": null,
"originator": "SR J. Nagel; SR. Dr. V. K\u00fclow; SR B. Ehms; SR S. Pellmann; SR Th. Kumbernu\u00df; SR K. Krefft; SR N. Silvestre",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08681",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010953"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Erh\u00f6hung der Druckkostenzusch\u00fcsse f\u00fcr Ortsteilbl\u00e4tter (OR 0059/ 23)",
"resolution": null,
"originator": "OR B\u00f6hlitz-Ehrenberg",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08683",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010955"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Stellenaufwuchs Bauhof Engelsdorf/M\u00f6lkau (A 0084/ 23/24)",
"resolution": null,
"originator": "Fraktion AfD",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08685",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010957"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Sanierung historischer Handschwengelpumpen (SBB 0024/ 23/24)",
"resolution": null,
"originator": "SBB Mitte",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08686",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010958"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Ausbau Beratung zu Autismus-Spektrum (A 0032/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08693",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010965"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Finanzierung der Personal- und Sachkosten f\u00fcr das \"Modellprojekt zur Verbesserung der psychosozialen Versorgung von gefl\u00fcchteten Menschen\" (A 0010/ 23/24)",
"resolution": null,
"originator": "Migrantenbeirat",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08690",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010962"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Projekt \"Offener Dialog\" zur Beratung psychisch Kranker mobilisieren (A 0030/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08692",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010964"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Erh\u00f6hung der SprInt-Mittel f\u00fcr die \u00e4rztliche Versorgung durch den Verbund Gemeindenahe Psychiatrie (A 0008/ 23/24)",
"resolution": null,
"originator": "Migrantenbeirat",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08689",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010961"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Budgetaufstockung des Migrant/-innenbeirats Leipzig (A 0003/ 23/24)",
"resolution": null,
"originator": "Migrantenbeirat",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08687",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010959"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Aufstockung der Behandlungskapazit\u00e4ten des Psychosozialen Zentrums f\u00fcr Gefl\u00fcchtete Leipzig (PSZ Leipzig) Mosaik Leipzig e. V. (A 0004/ 23/24)",
"resolution": null,
"originator": "Migrantenbeirat",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08688",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010960"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Gedenkort Riebeckstra\u00dfe 63 - Finanzierung der Betriebskosten (A 0042/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08694",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010966"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Unabh\u00e4ngige Beratung f\u00fcr Armutsbetroffene (A 0022/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08691",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010963"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "F\u00f6rderung Suchtzentrum Leipzig gGmbH (A 0195/ 23/24-01-NF)",
"resolution": null,
"originator": "SPD-Fraktion; Fraktion DIE LINKE",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08698",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010970"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Verbesserung der psychosozialen Versorgung gefl\u00fcchteter Menschen in Leipzig (A 0142/ 23/24)",
"resolution": null,
"originator": "Fraktion DIE LINKE; Fraktion B\u00fcndnis 90/Die Gr\u00fcnen; SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08695",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010967"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Beseitigung illegaler Graffiti (A 0091/ 23/24)",
"resolution": null,
"originator": "Fraktion AfD",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08696",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010968"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "F\u00f6rderung CABL e.V.; Budgeterh\u00f6hung f\u00fcr Clearingstelle/ Anonymer Behandlungsschein CABL e. V. (Beschlusspunkte 1+2) (A 0146/ 23/24-01-NF1)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen; Fraktion DIE LINKE",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08697",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010969"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Bau einer Sporthalle (OR 0056/ 23)",
"resolution": null,
"originator": "OR B\u00f6hlitz-Ehrenberg",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08704",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010976"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Sportinvestitionsf\u00f6rderung f\u00fcr Ma\u00dfnahmen zur Ressourcenschonung aufstocken (Neufassung zu den Antr\u00e4gen A 0139/23/24 und A 0173/23/24) (A 0139/ 23/24-01-NF)",
"resolution": null,
"originator": "Fraktion Die Linke; SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08706",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010978"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Zukunft f\u00fcr unser Wackerbad (A 0136/ 23)",
"resolution": null,
"originator": "SR O. Gebhardt; SR Dr. V. K\u00fclow; SR Dr. A. Bednarsky",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08702",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010974"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "F\u00f6rderung in den Bereichen Soziales, Migration, Gesundheit und Vielfalt (Neufassung zu den Antr\u00e4gen A 0108/23/24, A 0020/23/24, A0031/ 23/24, A 0200/23/24, A 0201/23/24, A 0202/23/24, A 0203/23/24) (A 0108/ 23/24-01-NF)",
"resolution": null,
"originator": "SPD-Fraktion; Fraktion B\u00fcndnis 90/Die Gr\u00fcnen; Fraktion DIE LINKE",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08699",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010971"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Kostenfreie \u00d6PNV-Tickets f\u00fcr obdachlose Menschen (A 0199/ 23/24)",
"resolution": null,
"originator": "SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08701",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010973"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Infrastrukturma\u00dfnahmen am Standort Eutritzsch (Delitzscher Stra\u00dfe 141) (A 0117/ 23/24)",
"resolution": null,
"originator": "Fraktion DIE LINKE; Fraktion B\u00fcndnis 90/Die Gr\u00fcnen; SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08700",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010972"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Gohliser Wackerbad wieder nutzbar machen (A 0163/ 23)",
"resolution": null,
"originator": "Fraktion AfD",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08703",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010975"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Machbarkeitsstudie Wackerbad (A 0175/ 23)",
"resolution": null,
"originator": "SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08705",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010977"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Nachr\u00fcstung eines Oberflurhydranten Ger\u00e4tehaus der Freiwilligen Feuerwehr B\u00f6hlitz-Ehrenberg (OR 0052/ 23)",
"resolution": null,
"originator": "OR B\u00f6hlitz-Ehrenberg",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08707",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010979"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Zusch\u00fcsse f\u00fcr Sportpachtanlagen erh\u00f6hen - Mehrbedarfe f\u00fcr Sportvereine abfedern (Neufassung zu den Antr\u00e4gen A 0113/23/24 und A 0174/23/24) (A 0174/ 23/24-01-NF)",
"resolution": null,
"originator": "SPD-Fraktion; Fraktion Die Linke",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08708",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010980"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Energieeffizienz mit stabilen Mieten (A 0103/ 24)",
"resolution": null,
"originator": "Fraktion DIE LINKE",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08712",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010984"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Kommunales F\u00f6rderprogramm Heizungsmodernisierung f\u00fcr stabile Mieten (A 0043/ 24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08710",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010982"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Quartiersmanagement f\u00fcr Aufmerksamkeitsgebiete (A 0177/ 24)",
"resolution": null,
"originator": "SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08713",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010985"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Leipziger Radrennbahn - flott machen f\u00fcr die Zukunft! (A 0155/ 23-01-NF)",
"resolution": null,
"originator": "SR Ch. Zenker; SR U. K\u00f6hler-Siegel; SR Dr. A. Bednarski; SR St. Wehmann; SR J. Lehmann; SR J. Heller; SR M. Biederstedt; SR N. Volger",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08709",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010981"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "F\u00f6rderprogramm Nachhaltiges Bauen einrichten (A 0065/ 24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08711",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010983"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Energieeffizienz mit stabilen Mieten (A 0103/ 24-01-\u00c4A)",
"resolution": null,
"originator": "SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08714",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010986"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Neugestaltung Siegfriedplatz (SBB 0007/ 23/24)",
"resolution": null,
"originator": "SBB S\u00fcd",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08716",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010988"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "\u00d6ffentlichen Raum entlang der R\u00f6del aufwerten - ErgHH (SBB 0001/ 23)",
"resolution": null,
"originator": "SBB S\u00fcdwest",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08715",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010987"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Sitzb\u00e4nke auf dem Platz vor dem PEP-Center in Gr\u00fcnau (SBB 0008/ 23/24)",
"resolution": null,
"originator": "SBB West",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08717",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010989"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Ert\u00fcchtigung des Ger\u00e4tehauses Feuerwache B\u00f6hlitz-Ehrenberg zur Nutzung und Verwendung einer Netzersatzanlage (OR 0053/ 23)",
"resolution": null,
"originator": "OR B\u00f6hlitz-Ehrenberg",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08718",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010990"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Trimm-Dich-Pfad im Leipziger S\u00fcdosten (SBB 0020/ 23/24)",
"resolution": null,
"originator": "SBB S\u00fcdost",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08722",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010994"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "F\u00f6rderprogramm f\u00fcr Ma\u00dfnahmen zur Entsiegelung und Begr\u00fcnung; Begr\u00fcnung von Innenh\u00f6fen (Neufassung zu den Antr\u00e4gen A 0055/24 und A 0164/23/24) (A 0055/ 24-01-NF)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen; SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08723",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010995"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Geh\u00f6lz- und Bl\u00fchstreifen (OR 0050/ 23/24)",
"resolution": null,
"originator": "OR M\u00f6lkau",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08721",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010993"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Umsetzung der Denkmalpflegerischen Zielstellung im Gutspark M\u00f6lkau (OR 0038/ 23/24)",
"resolution": null,
"originator": "OR M\u00f6lkau",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08720",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010992"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Fu\u00df-und Radweg Hohenheida nach Krostitz (OR 0008/ 23/24)",
"resolution": null,
"originator": "OR Seehausen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08725",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010997"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Bau eines Gehweges entlang B 181 vom \"Gr\u00fcnen Bogen\" bis zum Ochsenweg (OR 0011/ 23/24)",
"resolution": null,
"originator": "OR Burghausen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08726",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010998"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Neugestaltung des namenlosen Platzes vor dem PEP-Center in Gr\u00fcnau (SBB 0009/ 23/24)",
"resolution": null,
"originator": "SBB West",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08719",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010991"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Wiederinstandsetzung Streetballanlage Bielagarten (OR 0055/ 23)",
"resolution": null,
"originator": "OR B\u00f6hlitz-Ehrenberg",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08724",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010996"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Mittelerh\u00f6hung f\u00fcr Gehwegsanierungsprogramm (A 0116/ 23/24)",
"resolution": null,
"originator": "Fraktion DIE LINKE; Fraktion B\u00fcndnis 90/Die Gr\u00fcnen; SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08731",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2011003"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Vervollst\u00e4ndigung und Ausbau Schulweg (OR 0033/ 23)",
"resolution": null,
"originator": "OR M\u00f6lkau",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08727",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2010999"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Verbesserung der Verkehrsf\u00fchrung am Knotenpunkt St\u00f6tteritzer Landstra\u00dfe/M\u00f6lkauer Stra\u00dfe (OR 0014/ 23/24)",
"resolution": null,
"originator": "OR Holzhausen",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08734",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2011006"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Bau eines Weges zwischen Buchenweg und Sporthalle/Schulen als Schulweg (OR 0045/ 23/24)",
"resolution": null,
"originator": "OR M\u00f6lkau",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08728",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2011000"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Bedarfsampel Sommerfelder Stra\u00dfe - H\u00f6he K\u00e4rrnerweg (SBB 0005/ 23/24)",
"resolution": null,
"originator": "SBB S\u00fcdost",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08733",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2011005"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Schaffung zus\u00e4tzlicher Planstellen f\u00fcr das Sachgebiet Wasserwirtschaft (ASG) (SBB 0012/ 23/24)",
"resolution": null,
"originator": "SBB West",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08729",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2011001"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Erh\u00f6hung der Mittel f\u00fcr Fu\u00dfg\u00e4nger\u00fcberwege/Querungshilfen (A 0131/ 23/24)",
"resolution": null,
"originator": "SR F. Riekewald; SR. A. Feichtinger; SR Kristina Weyh",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08732",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2011004"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Fu\u00df- und Radwegverbindung inkl. Br\u00fccke \u00fcber die \u00f6stliche Rietzschke (OR 0046/ 23/24)",
"resolution": null,
"originator": "OR M\u00f6lkau",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08730",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2011002"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Mittel f\u00fcr Mobilit\u00e4tspunkte (A 0178/ 23/24)",
"resolution": null,
"originator": "SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08736",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2011008"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Ausbau Parkraumbewirtschaftung (A 0180/ 23/24)",
"resolution": null,
"originator": "SPD-Fraktion",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08737",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2011009"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Bewohnerparken in Leipzig ausweiten (A 0125/ 23/24)",
"resolution": null,
"originator": "Fraktion B\u00fcndnis 90/Die Gr\u00fcnen; Fraktion Freibeuter",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08735",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2011007"
}, {
"body": "Leipzig",
"content": "<empty>",
"name": "Asphaltierung der Holbeinstra\u00dfe als Hocheinbau zwischen Schnorrstra\u00dfe und Oeserstra\u00dfe (A 0120/ 24)",
"resolution": null,
"originator": "SR M. Schmidt; SR M. Weber",
"paper_type": "\u00c4nderung zum HH-Planentwurf",
"published_at": "2023-05-09",
"reference": "VII-HP-08738",
"url": "https://ratsinformation.leipzig.de/allris_leipzig_public/vo020?VOLFDNR=2011010"