-
Notifications
You must be signed in to change notification settings - Fork 0
/
agenda.json
2210 lines (2210 loc) · 98.1 KB
/
agenda.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
[
{
"billid": "M 0542-2017",
"item_number": 0,
"title": "Communication from the Mayor – Returning Introduction 1648-A to Council pursuant to recall.",
"text": "Communication from the Mayor – Returning Introduction 1648-A to Council pursuant to recall.",
"sponsors": null,
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07M 0542-2017"
},
{
"billid": "M 0543-2017",
"item_number": 1,
"title": "Withdrawing the nomination of Mario Gooden (M 538), Landmarks Preservation Commission.",
"text": "Communication from the Mayor - Withdrawing the nomination of Mario Gooden (M 538) from the City Council for its advice and consent concerning his appointment to the Landmarks Preservation Commission.",
"sponsors": null,
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07M 0543-2017"
},
{
"billid": "M 0544-2017",
"item_number": 2,
"title": "Withdrawing the nomination of Anne Holford-Smith (M 539), Landmarks Preservation Commission.",
"text": "Communication from the Mayor - Withdrawing the nomination of Anne Holford-Smith (M 539) from the City Council for its advice and consent concerning her appointment to the Landmarks Preservation Commission.",
"sponsors": null,
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07M 0544-2017"
},
{
"billid": "M 0545-2017",
"item_number": 3,
"title": "Zoning, Establishing a Special Harlem River Waterfront District, Bronx (C170311ZMX, C170314PPX and 170315ZSX)",
"text": "By the Chair of the Land Use Committee Council Member Greenfield:\nPursuant to Rule 11.20(c) of the Council Rules and Section 197-d(b)(3) of the New York City Charter, the Council hereby resolves that the actions of the City Planning Commission on Uniform Land Use Review Procedure application nos. C 170314 PPX and C 170315 ZSX shall be subject to Council review. These items are related to application nos. C 170311 ZMX and N 170314 PPX which are subject to Council review pursuant to Section 197-d(b)(1) of the New York City Charter.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07M 0545-2017"
},
{
"billid": "M 0546-2017",
"item_number": 4,
"title": "Zoning, Allow an automated accessory parking garage with a maximum capacity of 42 spaces in portions of a proposed mixed use building on property located at 100 Varick St (Block 477, Lots 35, 42, 44, 46, 71-76 and 1001-1005).",
"text": "By Council Member Johnson:\nPursuant to Rule 11.20(b) of the Council Rules and Section 197-d(b)(3) of the New York City Charter, the Council hereby resolves that the actions of the City Planning Commission on Uniform Land Use Review Procedure application no. C 170382 ZSM shall be subject to Council review. ",
"sponsors": [
"Corey D. Johnson"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07M 0546-2017"
},
{
"billid": "Int 1550-2017",
"item_number": 5,
"title": "Harassment in private dwellings.",
"text": "A Local Law to amend the administrative code of the city of New York, in relation to harassment in private dwellings.",
"sponsors": [
"Helen K. Rosenthal",
"Mark Levine",
"Carlos Menchaca",
"Stephen T. Levin",
"Ben Kallos",
"Vincent J. Gentile"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Int 1550-2017"
},
{
"billid": "Int 1566-2017",
"item_number": 6,
"title": "Expanding the office of immigrant affairs.",
"text": "A Local Law to amend the New York city charter, in relation to expanding the office of immigrant affairs",
"sponsors": [
"Daniel Dromm ",
"Ydanis A. Rodriguez",
"Melissa Mark-Viverito",
"Stephen T. Levin",
"Ben Kallos",
"Karen Koslowitz",
"Vanessa L. Gibson",
"Vincent J. Gentile",
"Carlos Menchaca",
"Helen K. Rosenthal",
"Peter A. Koo",
"Rafael L. Espinal, Jr."
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Int 1566-2017"
},
{
"billid": "Int 1578-2017",
"item_number": 7,
"title": "An immigrant affairs task force.",
"text": "A Local Law to amend the New York city charter, in relation to an immigrant affairs task force",
"sponsors": [
"Carlos Menchaca",
"Daniel Dromm ",
"Jumaane D. Williams",
"Melissa Mark-Viverito",
"Stephen T. Levin",
"Ben Kallos",
"Margaret S. Chin",
"Vanessa L. Gibson",
"Vincent J. Gentile",
"Helen K. Rosenthal",
"Peter A. Koo",
"Rafael L. Espinal, Jr."
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Int 1578-2017"
},
{
"billid": "LU 0730-2017",
"item_number": 8,
"title": "Zoning, 50 NEVINS STREET REZONING, Brooklyn (C170029ZMK)",
"text": "Application No. C 170029 ZMK submitted by Institute for Community Living pursuant to Sections 197-c and 201 of the New York City Charter for an amendment of the Zoning Map, Section No. 16c, changing from a C6-1 District to a C6-4 District property bounded by Schermerhorn Street, Nevins Street, a line midway between Schermerhorn Street and State Street, and a line 100 feet northwesterly of Nevins Street, Borough of Brooklyn, Community District 2, Council District 33.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0730-2017"
},
{
"billid": "Res 1641-2017",
"item_number": 9,
"title": "LU 730 - Zoning, 50 NEVINS STREET REZONING, Brooklyn (C170029ZMK)",
"text": "Resolution approving the decision of the City Planning Commission on ULURP No. C 170029 ZMX, a Zoning Map amendment (L.U. No. 730).",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1641-2017"
},
{
"billid": "LU 0731-2017",
"item_number": 10,
"title": "Zoning, 50 NEVINS STREET REZONING, Brooklyn (N170030ZRK)",
"text": "Application No. N 170030 ZRK submitted by the Institute for Community Living pursuant to Section 201 of the New York City Charter, for an amendment of the Zoning Resolution of the City of New York, modifying Appendix F, for the purpose of establishing a Mandatory Inclusionary Housing area, Borough of Brooklyn, Community District 2, Council District 33.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0731-2017"
},
{
"billid": "Res 1642-2017",
"item_number": 11,
"title": "LU 731 - Zoning, 50 NEVINS STREET REZONING, Brooklyn (N170030ZRK)",
"text": "Resolution approving the decision of the City Planning Commission on Application No. N 170030 ZRK, for an amendment of the Zoning Resolution of the City of New York, modifying Appendix F, for the purpose of establishing a Mandatory Inclusionary Housing area, within Community District 2, Borough of Brooklyn (L.U. No. 731).",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1642-2017"
},
{
"billid": "LU 0732-2017",
"item_number": 12,
"title": "Zoning, 40 Wooster Street, Manhattan (C160349ZSM)",
"text": "Application No. C 160349 ZSM submitted by 40 Wooster Restoration, LLC pursuant to Sections 197-c and 201 of the New York City Charter for the grant of a special permit pursuant to Section 74-711 of the Zoning Resolution to modify the use regulations of Section 42-10 to allow residential use on the cellar through 6th floor and retail use in the cellar and on the ground floor of an existing six-story building on property located at 40 Wooster Street (Block 475, Lot 34), Borough of Manhattan, Community District 2, Council District 1. This application is subject to review and action by the Land Use Committee only if appealed to the Council pursuant to Charter Section 197-d(b)(2) or called up by vote of the Council pursuant to Charter Section 197-d(b)(3).",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0732-2017"
},
{
"billid": "Res 1643-2017",
"item_number": 13,
"title": "LU 732 - Zoning, 40 Wooster Street, Manhattan (C160349ZSM)",
"text": "Resolution approving the decision of the City Planning Commission on ULURP No. C 160349 ZSM (L.U. No. 732), for the grant of a special permit pursuant to Section 74-711 of the Zoning Resolution of the City of New York to modify the use regulations of Section 42-10 to allow residential uses (Use Group 2 uses) on portions of the cellar and ground floor, the 2nd - 6th floors and the proposed 1-story penthouse, and the use regulations of Section 42-14(D)(2)(b) to allow retail uses (Use Group 6 uses) on portions of the ground floor and cellar of an existing 6-story building, on property located at 40 Wooster Street (Block 475, Lot 34), in an M1-5B District, Community District 2, Borough of Manhattan.",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1643-2017"
},
{
"billid": "LU 0733-2017",
"item_number": 14,
"title": "Planning, 126TH STREET BUS DEPOT, Manhattan (C170275ZMM)",
"text": "Application No. C 170275 ZMM submitted by the New York City Economic Development Corporation pursuant to Sections 197-c and 201 of the New York City Charter for an amendment of the Zoning Map, Section No. 6b, changing from an M1-2 District to an C6-3 District property bounded by East 127th Street, First Avenue, East 126th Street, and Second Avenue, in the Borough of Manhattan, Community District 11, Council District 8.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0733-2017"
},
{
"billid": "LU 0734-2017",
"item_number": 15,
"title": "Planning, 126TH STREET BUS DEPOT, Manhattan (N170276ZRM)",
"text": "Application No. N 170276 ZRM submitted by the New York City Economic Development Corporation, pursuant to Section 201 of the New York City Charter, for an amendment of the Zoning Resolution of the City of New York, modifying Appendix F, for the purpose of establishing a Mandatory Inclusionary Housing area, in the Borough of Manhattan, Community District 11, Council District 8.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0734-2017"
},
{
"billid": "LU 0735-2017",
"item_number": 16,
"title": "Planning, 126TH STREET BUS DEPOT, Manhattan (C170093MMM)",
"text": "Application No. C 170093 MMM submitted by The New York City Economic Development Corporation pursuant to Sections 197-c and 199 of the New York City Charter and Section 5-430 et seq. of the New York City Administrative Code for an amendment to the City Map involving: the elimination, discontinuance and closing of a portion of Second Avenue between East 126th Street and East 127th Street and the delineation of a sidewalk easement in the Borough of Manhattan, Community District 11, Council District 8. ",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0735-2017"
},
{
"billid": "LU 0736-2017",
"item_number": 17,
"title": "Planning, 126TH STREET BUS DEPOT, Manhattan (C170278PPM)",
"text": "Application No. C170278 PPM submitted by the Department of Citywide Administrative Services (DCAS) pursuant to Section 197-c of the New York City Charter, for the disposition of one city-owned property located at 2460 Second Avenue (Block 1803, Lot 1), pursuant to zoning, Borough of Manhattan, Community District 11, Council District 8.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0736-2017"
},
{
"billid": "LU 0743-2017",
"item_number": 18,
"title": "Zoning, Sidewalk café, ATLUS CAFE, 4325-4327 Broadway, Manhattan (20175504 TCM)",
"text": "Application No. 20175504 TCM pursuant to Section 20-226 of the Administrative Code of the City of New York, concerning the petition of Carnival Latin Bistro Corp., d/b/a Altus Cafe, for a revocable consent to establish, maintain and operate an unenclosed sidewalk café located at 4325-4327 Broadway (at the corner of West 184th Street), Borough of Manhattan, Community Board 12, Council District 10. This application is subject to review and action by the Land Use Committee only if called-up by vote of the Council pursuant to Rule 11.20b of the Council and Section 20-226 of the New York City Administrative Code.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0743-2017"
},
{
"billid": "Res 1657-2017",
"item_number": 19,
"title": "LU 743 - Zoning, Sidewalk café, ATLUS CAFE, 4325-4327 Broadway, Manhattan (20175504 TCM)",
"text": "Resolution approving with modifications the petition for a new revocable consent for an unenclosed sidewalk caf? located at 4325 Broadway, Borough of Manhattan (Non-ULURP No. 20175504 TCM; L.U. No. 743).",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1657-2017"
},
{
"billid": "LU 0744-2017",
"item_number": 20,
"title": "Zoning, EAST SHORE SPECIAL COASTAL RISK DISTRICT, Staten Island (N 170374 ZRR)",
"text": "Application No. N 170374 ZRR submitted by the Department of City Planning pursuant to Section 201 of the New York City Charter, for an amendment of the Zoning Resolution of the City of New York, relating to Article XIII, Chapter 7 (Special Coastal Risk District) to establish the Special Coastal Risk District in the Borough of Staten Island, Community Districts 2 and 3, Council District 50.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0744-2017"
},
{
"billid": "Res 1644-2017",
"item_number": 21,
"title": "LU 744 - Zoning, EAST SHORE SPECIAL COASTAL RISK DISTRICT, Staten Island (N 170374 ZRR)",
"text": "Resolution approving the decision of the City Planning Commission on Application No. N 170374 ZRR, for an amendment of the Zoning Resolution of the City of New York, relating to Article XIII, Chapter 7 (Special Coastal Risk District) to establish the Special Coastal Risk District in Community Districts 2 and 3), Borough of Staten Island (L.U. No. 744).",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1644-2017"
},
{
"billid": "LU 0745-2017",
"item_number": 22,
"title": "Zoning, EAST SHORE SPECIAL COASTAL RISK DISTRICT, Staten Island (C 170373 ZMR)",
"text": "Application No. C 170373 ZMR submitted by the Department of City Planning pursuant to Sections 197-c and 201 of the New York City Charter for the amendment of the Zoning Map, Sections Nos. 27b, 27d, and 34a to rezone all or portions of 69 blocks establishing a Special Coastal Risk District in the Borough of Staten Island, Community Districts 2 and 3, Council District 50.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0745-2017"
},
{
"billid": "Res 1645-2017",
"item_number": 23,
"title": "LU 745 - Zoning, EAST SHORE SPECIAL COASTAL RISK DISTRICT, Staten Island (C 170373 ZMR)",
"text": "Resolution approving the decision of the City Planning Commission on ULURP No. C 170373 ZMR, a Zoning Map amendment (L.U. No. 745).",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1645-2017"
},
{
"billid": "Int 1236-2016",
"item_number": 24,
"title": "Requiring autism spectrum disorder reporting.",
"text": "A Local Law to amend the administrative code of the city of New York, in relation to autism spectrum disorder reporting",
"sponsors": [
"Joseph C. Borelli",
"Corey D. Johnson",
"Jumaane D. Williams",
"Rafael L. Espinal, Jr.",
"Eric A. Ulrich",
"Peter A. Koo",
"Mark Treyger",
"Inez D. Barron",
"Deborah L. Rose",
"Alan N. Maisel",
"Andrew Cohen",
"Annabel Palma",
"Vincent J. Gentile",
"Rafael Salamanca, Jr.",
"Fernando Cabrera ",
"Chaim M. Deutsch",
"James Vacca",
"Karen Koslowitz",
"Barry S. Grodenchik",
"James G. Van Bramer",
"Margaret S. Chin",
"Ritchie J. Torres",
"Daniel R. Garodnick",
"Ben Kallos",
"Paul A. Vallone",
"Mark Levine",
"David G. Greenfield",
"Laurie A. Cumbo",
"Donovan J. Richards",
"Vanessa L. Gibson",
"Carlos Menchaca",
"Helen K. Rosenthal",
"Mathieu Eugene",
"I. Daneek Miller",
"Steven Matteo"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Int 1236-2016"
},
{
"billid": "Int 1424-2017",
"item_number": 25,
"title": "Disability classification reporting from the DOE.",
"text": "A Local Law to amend the administrative code of the city of New York, in relation to disability classification reporting from the department of education",
"sponsors": [
"Andrew Cohen",
"Joseph C. Borelli",
"Elizabeth S. Crowley",
"Rafael Salamanca, Jr.",
"Vincent J. Gentile",
"Robert E. Cornegy, Jr.",
"Margaret S. Chin",
"Carlos Menchaca",
"Corey D. Johnson",
"Ben Kallos",
"Helen K. Rosenthal",
"Eric A. Ulrich"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Int 1424-2017"
},
{
"billid": "Int 0629-2015",
"item_number": 26,
"title": "Length of the season for city beaches and pools.",
"text": "A Local Law to amend the administrative code of the city of New York, in relation to the length of the season for city beaches and pools",
"sponsors": [
"Mark Levine",
"Fernando Cabrera ",
"Donovan J. Richards",
"Deborah L. Rose",
"Ydanis A. Rodriguez",
"Mathieu Eugene",
"Andy L. King",
"Annabel Palma",
"Mark Treyger",
"Vanessa L. Gibson",
"Helen K. Rosenthal",
"Daniel Dromm ",
"Rafael L. Espinal, Jr.",
"Andrew Cohen",
"Ben Kallos",
"Chaim M. Deutsch",
"Carlos Menchaca",
"The Public Advocate (Ms. James)"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Int 0629-2015"
},
{
"billid": "Int 0401-2014",
"item_number": 27,
"title": "Requiring the DOT and the depart of parks and recreation to study the installation of bike share near parks.",
"text": "A Local Law in relation to requiring the department of transportation and the department of parks and recreation to study the installation of bike share near parks",
"sponsors": [
"Carlos Menchaca",
"Peter A. Koo",
"Rosie Mendez",
"Deborah L. Rose",
"Ydanis A. Rodriguez",
"Ben Kallos",
"Helen K. Rosenthal",
"James G. Van Bramer",
"Costa G. Constantinides"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Int 0401-2014"
},
{
"billid": "LU 0716-2017",
"item_number": 28,
"title": "Zoning, 462 Broadway, Manhattan (C 170192 ZSM)",
"text": "Application No. C 170192 ZSM submitted by 462BDWY LAND, L.P. pursuant to Sections 197-c and 201 of the New York City Charter for the grant of a special permit pursuant to Section 74-781 of the Zoning Resolution to modify the use regulations of Section 42-14(D)(2)(b) to allow Use Group 6 uses (retail uses) on property located at 462 Broadway (Block 473, Lot 1), Borough of Manhattan, Community District 2, Council District 1. ",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0716-2017"
},
{
"billid": "Res 1646-2017",
"item_number": 29,
"title": "LU 716 - Zoning, 462 Broadway, Manhattan (C 170192 ZSM)",
"text": "Resolution approving with modifications the decision of the City Planning Commission on ULURP No. C 170192 ZSM (L.U. No. 716), for the grant of a special permit pursuant to Section 74-781 of the Zoning Resolution of the City of New York to modify the use regulations of Section 42-14D(2)(b) to allow Use Group 6 (retail uses) on portions of the ground floor and the cellar of an existing 6-story building on property located at 462 Broadway (Block 473, Lot 1), in an M1-5B District, within the SoHo Cast-Iron Historic District, Community District 2, Borough of Manhattan.",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1646-2017"
},
{
"billid": "LU 0718-2017",
"item_number": 30,
"title": "Zoning, EBENEZER PLAZA, Brooklyn (C170189ZMK)",
"text": "Application No. C 170189 ZMK submitted by Brownsville Linden Plaza LLC pursuant to Sections 197-c and 201 of the New York City Charter for the amendment of the Zoning Map, Section No. 17d, changing an existing M1-1 district to R7A/C2-4 and R7D/C2-4 districts for property located North of Hegeman Avenue between Mother Gaston Boulevard and Powell Street, Borough of Brooklyn, Community District 16, Council District 42.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0718-2017"
},
{
"billid": "Res 1647-2017",
"item_number": 31,
"title": "LU 718 - Zoning, EBENEZER PLAZA, Brooklyn (C170189ZMK)",
"text": "Resolution approving with modifications the decision of the City Planning Commission on ULURP No. C 170189 ZMK, a Zoning Map amendment (L.U. No. 718).",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1647-2017"
},
{
"billid": "LU 0719-2017",
"item_number": 32,
"title": "Zoning, EBENEZER PLAZA, Brooklyn (N 170190 ZRK)",
"text": "Application No. N 170190 ZRK submitted by Brownsville Linden Plaza, LLC, pursuant to Section 201 of the New York City Charter, for an amendment of the Zoning Resolution of the City of New York, modifying Appendix F for the purpose of establishing a Mandatory Inclusionary Housing area, Borough of Brooklyn, Community District 16, Council District 42.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0719-2017"
},
{
"billid": "Res 1648-2017",
"item_number": 33,
"title": "LU 719 - Zoning, EBENEZER PLAZA, Brooklyn (N 170190 ZRK)",
"text": "Resolution approving with modifications the decision of the City Planning Commission on Application No. N 170190 ZRK, for an amendment of the Zoning Resolution of the City of New York, modifying Appendix F for the purpose of establishing a Mandatory Inclusionary Housing area in Community District 16, Borough of Brooklyn (L.U. No. 719).",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1648-2017"
},
{
"billid": "LU 0720-2017",
"item_number": 34,
"title": "Zoning, 34TH STREET HELIPORT, Manhattan (C170158ZSM)",
"text": "Application No. C 170158 ZSM submitted by the New York City Department of Small Business Services and the New York City Economic Development Corporation pursuant to Sections 197-c and 201 of the New York City Charter for the grant of a special permit pursuant to Section 74-66 of the Zoning Resolution to allow continued operation of a heliport on property generally located between the U.S. Pierhead Line of the East River and the north-bound service road of the Franklin D. Roosevelt Drive, south of East 34thStreet, (Block 962, part of Lot 50) in an M2-3 District, Borough of Manhattan, Community District 6, Council District 4.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0720-2017"
},
{
"billid": "Res 1649-2017",
"item_number": 35,
"title": "LU 720 - Zoning, 34TH STREET HELIPORT, Manhattan (C170158ZSM)",
"text": "Resolution approving with modifications the decision of the City Planning Commission on ULURP No. C 170158 ZSM (L.U. No. 720), for the grant of a special permit pursuant to Section 74-66 of the Zoning Resolution of the City of New York to allow a heliport on property generally located between the U.S. Pierhead Line of the East River and the north-bound service road of the Franklin D. Roosevelt Drive, south of East 34th Street, (Block 962, part of Lot 50) in an M2-3 District, Community District 6, Borough of Manhattan.",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1649-2017"
},
{
"billid": "LU 0721-2017",
"item_number": 36,
"title": "Zoning, DOWNTOWN FAR ROCKAWAY DEVELOPMENT PLAN, Queens (C170243(A)ZMQ)",
"text": "Application No. C 170243(A) ZMQ submitted by New York City Economic Development Corporation pursuant to Section 197-c and 201 of the New York City Charter for an amendment of the Zoning Map, Section Nos. 25b and 31a, to change existing R5, R5/C1-2, R5/C2-2, C4-2, C8-1 and M1-1 districts to R5, R5/C2-4, and R7-1/C2-4 districts and establish the Special Downtown Far Rockaway District, Borough of Queens, Community District 14, Council District 31. ",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0721-2017"
},
{
"billid": "Res 1650-2017",
"item_number": 37,
"title": "LU 721 - Zoning, DOWNTOWN FAR ROCKAWAY DEVELOPMENT PLAN, Queens (C170243(A)ZMQ)",
"text": "Resolution approving the decision of the City Planning Commission on ULURP No. C 170243(A) ZMQ, a Zoning Map amendment (L.U. No. 721).",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1650-2017"
},
{
"billid": "LU 0722-2017",
"item_number": 38,
"title": "Zoning, DOWNTOWN FAR ROCKAWAY DEVELOPMENT PLAN, Queens (N170244(A)ZRQ)",
"text": "Application no. N 170244(A) ZRQ submitted by the New York City Economic Development Corporation pursuant to Section 201 of the New York City Charter, for an amendment of the Zoning Resolution of the City of New York, relating to Article XIII, Chapter 6 (Special Far Rockaway District) to establish the Special Downtown Far Rockaway District and establish a Mandatory Inclusionary Housing area, Borough of Queens, Community District 14, Council District 31.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0722-2017"
},
{
"billid": "Res 1651-2017",
"item_number": 39,
"title": "LU 722 - Zoning, DOWNTOWN FAR ROCKAWAY DEVELOPMENT PLAN, Queens (N170244(A)ZRQ)",
"text": "Resolution approving with modifications the decision of the City Planning Commission on Application No. N 170244(A) ZRQ, for an amendment of the Zoning Resolution of the City of New York, relating to Article XIII, Chapter 6 (Special Far Rockaway District) to establish the Special Downtown Far Rockaway District and establish a Mandatory Inclusionary Housing area, within Community District 14, Borough of Queens (L.U. No. 722).",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1651-2017"
},
{
"billid": "LU 0723-2017",
"item_number": 40,
"title": "Zoning, DOWNTOWN FAR ROCKAWAY DEVELOPMENT PLAN, Queens (N 170245 HGQ)",
"text": "Application no. N 170245 HGQ submitted by the Department of Housing Preservation and Development for the designation of the Downtown Far Rockaway Urban Renewal Area, (Block 15529, Lots 9 and 10; and Block 15537, Lots p/o 1, 5, p/o 40, 46, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 63, 65, 71, 79, 89, 92, 94, 99, 100, 112, 128, and 130) as an area appropriate for urban renewal, pursuant to Section 504 of Article 15 of the General Municipal Law of New York State, Borough of Queens, Community District 14, Council District 31.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0723-2017"
},
{
"billid": "Res 1652-2017",
"item_number": 41,
"title": "LU 723 - Zoning, DOWNTOWN FAR ROCKAWAY DEVELOPMENT PLAN, Queens (N 170245 HGQ)",
"text": "Resolution approving the decision of the City Planning Commission on Non-ULURP No. N 170245 HGQ, the designation of the Downtown Far Rockaway Urban Renewal Area which consists of properties located at Block 15529, Lots 9 and 10; and Block 15537, Lots 1, 5, p/o 40, 46, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 63, 65, 71, 79, 89, 92, 94, 99, 100, 112, 128, and 130), Community District 14, Borough of Queens (L.U. No. 723).",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1652-2017"
},
{
"billid": "LU 0724-2017",
"item_number": 42,
"title": "Zoning, DOWNTOWN FAR ROCKAWAY DEVELOPMENT PLAN, Queens (C 170246 HUQ)",
"text": "Application no. C 170246 HUQ submitted by the Department of Housing Preservation and Development pursuant to Section 505 of Article 15 of the General Municipal Law of New York State and Section 197-c of the New York City Charter, for approval of the Downtown Far Rockaway Urban Renewal Plan for the Downtown Far Rockaway Urban Renewal Area, Borough of Queens, Community District 14, Council District 31.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0724-2017"
},
{
"billid": "Res 1653-2017",
"item_number": 43,
"title": "LU 724 - Zoning, DOWNTOWN FAR ROCKAWAY DEVELOPMENT PLAN, Queens (C 170246 HUQ)",
"text": "Resolution approving the Downtown Far Rockaway Urban Renewal Plan for the Downtown Far Rockaway Urban Renewal Area and approving the decision of the City Planning Commission on ULURP No. C 170246 HUQ (L.U. No. 724).",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1653-2017"
},
{
"billid": "LU 0725-2017",
"item_number": 44,
"title": "Zoning, DOWNTOWN FAR ROCKAWAY DEVELOPMENT PLAN, Queens (C 170247 HDQ)",
"text": "Application no. C 170247 HDQ, submitted by the Department of Housing Preservation and Development, pursuant to Section 197-c of the New York City Charter, for the disposition of City-owned property (Block 15529, Lots 9 and 10; and Block 15537, Lots p/o 1, 5, p/o 40, 46, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 63, 65, 71, 79, 89, 92, 94, 99, 100, 112, 128, and 130), within the Downtown Far Rockaway Urban Renewal Area, Borough of Queens, Community District 14, Council District 31.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0725-2017"
},
{
"billid": "Res 1654-2017",
"item_number": 45,
"title": "LU 725 - Zoning, DOWNTOWN FAR ROCKAWAY DEVELOPMENT PLAN, Queens (C 170247 HDQ)",
"text": "Resolution approving the decision of the City Planning Commission on ULURP No. C 170247 HDQ, for the disposition of City owned properties located at Block 15529, Lots 9 and 10; and Block 15537, 1, 5, p/o 40, 46, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 63, 65, 71, 79, 89, 92, 94, 99, 100, 112, 128, and 130), Community District 14, Borough of Queens (L.U. No. 725).",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1654-2017"
},
{
"billid": "LU 0726-2017",
"item_number": 46,
"title": "Zoning, DOWNTOWN FAR ROCKAWAY DEVELOPMENT PLAN, Queens (C 170248 PPQ)",
"text": "Application no. C 170248 PPQ submitted by the New York City Department of Citywide Administrative Services, pursuant to Section 197-c of New York City Charter, for the disposition of two city-owned properties located on Beach 21st Street, south of Mott Avenue (Block 15705, Lots 59 and 69) and on the northwest corner of Augustina and Nameoke avenues (Block 15534, Lot 70), pursuant to zoning, Borough of Queens, Community District 14, Council District 31.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0726-2017"
},
{
"billid": "Res 1655-2017",
"item_number": 47,
"title": "LU 726 - Zoning, DOWNTOWN FAR ROCKAWAY DEVELOPMENT PLAN, Queens (C 170248 PPQ)",
"text": "Resolution approving with modification the decision of the City Planning Commission on Application No. C 170248 PPQ, for the disposition of two city-owned properties located on Beach 21st Street, south of Mott Avenue (Block 15705, Lots 59 and 69) and on the northwest corner of Augustina and Nameoke avenues (Block 15534, Lot 70), pursuant to zoning, Community District 14, Borough of Queens (L.U. No. 726).",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1655-2017"
},
{
"billid": "LU 0727-2017",
"item_number": 48,
"title": "Landmarks, MANHATTAN DISTRICT 11 GARAGE AND LOT CLEANING UNIT, Manhattan (C 170269 PCM)",
"text": "Application No. C 170269 PCM submitted by the Department of Sanitation, the Department of Housing Preservation and Development and the Department of Citywide Administrative Services pursuant to Section 197-c of the New York City Charter, for the site selection acquisition of property located at 207/217 East 127th Street (Block 1792, Lots 5 and part of 28) to facilitate the relocation of Department of Sanitation Manhattan 11 District Garage and Lot Cleaning Unit Headquarters, Borough of Manhattan, Community District 11, Council District 8.",
"sponsors": [
"David G. Greenfield"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07LU 0727-2017"
},
{
"billid": "Res 1656-2017",
"item_number": 49,
"title": "LU 727 - Landmarks, MANHATTAN DISTRICT 11 GARAGE AND LOT CLEANING UNIT, Manhattan (C 170269 PCM)",
"text": "Resolution approving with modifications the decision of the City Planning Commission on ULURP No. C 170269 PCM (L.U. No. 727), a site selection and acquisition of property located at 207/217 East 127th Street (Block 1792, Lots 5 and part of 28), Community District 11, Borough of Manhattan, for use as the NYC Department of Sanitation Manhattan 11 District Garage and Lot Cleaning Unit Headquarters.",
"sponsors": [
"David G. Greenfield",
"Donovan J. Richards"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Res 1656-2017"
},
{
"billid": "T2014-0002",
"item_number": 50,
"title": "Commissioner of Deeds",
"text": "Commissioner of Deeds",
"sponsors": null,
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07T2014-0002"
},
{
"billid": "Int 1550-2017",
"item_number": 51,
"title": "Harassment in private dwellings.",
"text": "A Local Law to amend the administrative code of the city of New York, in relation to harassment in private dwellings.",
"sponsors": [
"Helen K. Rosenthal",
"Mark Levine",
"Carlos Menchaca",
"Stephen T. Levin",
"Ben Kallos",
"Vincent J. Gentile"
],
"fiscal_impact": "None",
"status_log": [
{}
],
"question": "A motion was made that this Introduction be Approved by Council approved by Roll Call",
"date": "2017-09-07",
"source_doc": null,
"uid": "2017-09-07Int 1550-2017"
},
{
"billid": "Int 1566-2017",
"item_number": 52,
"title": "Expanding the office of immigrant affairs.",