Skip to content

Instantly share code, notes, and snippets.

@vdavez
Last active August 29, 2015 14:00
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vdavez/11163188 to your computer and use it in GitHub Desktop.
Save vdavez/11163188 to your computer and use it in GitHub Desktop.
Using the new LIMS
#!/usr/bin/env python3
from urllib import request, parse
import json
base_url = "http://lims.dccouncil.us/_layouts/15/uploader/AdminProxy.aspx/"
keyword_test = ""
# Generic function to get Data from LIMS
def getFromLIMS(view, payload):
url = view
d = payload
h = { "Content-Type" : "application/json"}
d = json.dumps(d).encode("utf-8")
r = request.Request(url,data=d,headers=h, method="POST")
f = request.urlopen(r)
# the response is JSON, but the 'd' key itself contains a JSON-encoded
# array, so we have to parse that too. and then inside that array,
# some fields are JSON again.
ret = json.loads(json.loads(f.read().decode('utf-8'))["d"])
for item in ret:
for k, v in item.items():
# Some fields are JSON (strange!). I'm not sure what the rule
# is for when a field is JSON and when it isn't. (We should
# check the LIMS client-side code.) A first guess is that if
# the value looks like a JSON array of objects, it probably is.
if isinstance(v, str) and v.startswith("[{"):
# re-write this value with a Python object instead of a JSON
# string
item[k] = json.loads(v)
return ret
# Get a JSON object of a measure, by ID
def getMeasure (measureNo):
url = base_url + 'GetPublicData'
d = {"legislationId":measureNo}
return getFromLIMS(url, d)
# Get ALL the things
def GetAll():
url = base_url + 'GetKeywordSearchWithCategory'
d = {'keyword': '', 'category':'0', 'documentSearch': 'false'}
return getFromLIMS(url, d)
# Search by Keyword
def GetByKeyWord(keyword):
url = base_url + 'GetKeywordSearchWithCategory'
d = {'keyword': keyword, 'category':'0', 'documentSearch': 'true'}
return getFromLIMS(url, d)
out = GetByKeyWord(keyword_test)
#print(out)
f = open('out.json','w')
json.dump(out, f, indent=True, sort_keys=True)
f.close()
This file has been truncated, but you can view the full file.
[
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract for Option Year one with Trusted Health Plan (District of Columbia), Inc. in the amount of $737,041,491.00 to provide healthcare services in its Medicaid eligible population enrolled in the District of Columbia Healthy Families Program (DCHFP) was filed in the Office of the Secretary on April 14, 2014. \n\nThe Council's ten day review begins Tuesday, April 15, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Friday, April 25, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.",
"AttachmentPath": [
{
"Name": "CA20-0303-Introduction.pdf",
"RelativePath": "31556",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 197,
"Name": "Health"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/25 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31556,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/15 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0303_Memorandum.pdf",
"RelativePath": "31556",
"Type": "Memorandum"
}
],
"Modified": "2014/04/25 14:59:03",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract for Option Year one with Trusted Health Plan (District of Columbia), Inc. ",
"Title": "CA20-0303",
"VendorName": "Trusted Health Plan (District of Columbia), Inc. ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract for Option Year one with MedStar Family Choice, Inc. in the amount of $737,041,491.00 to provide healthcare services in its Medicaid eligible population enrolled in the District of Columbia Healthy Families Program (DCHFP) was filed in the Office of the Secretary on April 14, 2014. \n\nThe Council's ten day review begins Tuesday, April 15, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Friday, April 25, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0302-Introduction.pdf",
"RelativePath": "31555",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 197,
"Name": "Health"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/25 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31555,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/14 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0302_Memorandum.pdf",
"RelativePath": "31555",
"Type": "Memorandum"
}
],
"Modified": "2014/04/25 14:59:00",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract for Option Year one with MedStar Family Choice, Inc. ",
"Title": "CA20-0302",
"VendorName": "MedStar Family Choice, Inc. ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed Human Care Agreement with Seasons Residential Treatment Program in the amount of $2,457,000.00 to provide a hardware-secured and staff secured, short-term, 24-hour, facility for up to 25 youth awaiting placement population was filed in the Office of the Secretary on April 7, 2014. \n\nThe Council's ten day review begins Tuesday, April 8, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Friday, April 18, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.",
"AttachmentPath": [
{
"Name": "CA20-0296-Introduction.pdf",
"RelativePath": "31523",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/18 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31523,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0296_Memorandum.pdf",
"RelativePath": "31523",
"Type": "Memorandum"
}
],
"Modified": "2014/04/25 14:52:57",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed Human Care Agreement with Seasons Residential Treatment Program ",
"Title": "CA20-0296",
"VendorName": "Seasons Residential Treatment Program ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract with Unity Health Care, Inc. in the amount of $11,800,290.00 for the Comprehensive Medical, Mental Health, Pharmacy and Dental Services for the Department of Corrections was filed in the Office of the Secretary on April 3, 2014. \n\nThe Council's ten day review begins Tuesday, April 8, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Friday, April 18, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0295-Introduction.pdf",
"RelativePath": "31522",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/18 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31522,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0295_Memorandum.pdf",
"RelativePath": "31522",
"Type": "Memorandum"
}
],
"Modified": "2014/04/25 14:52:13",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract with Unity Health Care, Inc. ",
"Title": "CA20-0295",
"VendorName": "Unity Health Care, Inc. ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Notice is given that the attached request to reprogram $18,123,866.00 of Capital Funds Budget Authority and Allotment from Various Agencies to the District of Columbia Public Schools (DCPS) was filed in the Office of the Secretary on April 3, 2014. This reprogramming is needed to support the modernization and renovation of Payne Elementary School, located in Ward 6 at 1445 C Street S.E.\n\nThe Council's 14 day review begins Friday, April 4, 2014, and the request will be deemed approved on Friday, April 18, 2014, unless a notice of disapproval is filed prior to that time which would extend the review period to 30 days. The request would then be deemed approved on the 31st day of receipt.",
"AttachmentPath": [
{
"Name": "REPROG20-0168-Introduction.pdf",
"RelativePath": "31493",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/18 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31493,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "11;#Reprogramming",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "13;#Reprogramming",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "REPROG20-0168_Memorandum.pdf",
"RelativePath": "31493",
"Type": "Memorandum"
}
],
"Modified": "2014/04/25 14:51:29",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Reprogramming Request for $18,123,866.00 of Capital Funds Budget Authority and Allotment from Various Agencies to the District of Columbia Public Schools",
"Title": "REPROG20-0168",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed FY 2014-2015 Annual Capital Transportation Plan for All Sources (Plan) between the Federal Highway Administration, the Government of the District of Columbia (District) and the now defunct District of Columbia Financial Responsibility and Management Assistance Authority. The projects in this year's program including, but are not limited to: 1. bridge design and construction, inspection and risk assessment; 2. street (including local) design and construction, 3. streetlight system upgrading, 4. preservation, preventative maintenance and upgrade of District tunnels; 5. construction of wheelchair ramps and the assessment, design and construction of other features required to comply with Americans with Disabilities Act; 6. traffic signal maintenance and construction; 7. integrated asset management database development; 8. safety improvements; and 9. various transportation studies financed with FHWA funds was filed in the Office of the Secretary on April 9, 2014. \n\nThe Council's ten day review begins Thursday, April 10, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Sunday, April 20, 2014 unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days. The contract will be deemed approved on the 46th day if no resolution of approval or disapproval is adopted by the Council.\n",
"AttachmentPath": [
{
"Name": "CA20-0299-Introduction.pdf",
"RelativePath": "31548",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/20 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31548,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/09 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0299_Memorandum.pdf",
"RelativePath": "31548",
"Type": "Memorandum"
}
],
"Modified": "2014/04/25 14:20:49",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed FY 2014-2015 Annual Capital Transportation Plan for All Sources (Plan) between the Federal Highway Administration, the Government of the District of Columbia (District) and the now defunct District of Columbia Financial Responsibility and Management Assistance Authority",
"Title": "CA20-0299",
"VendorName": "FY 2014-2015 Annual Capital Transportation Plan for All Sources",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed execution of a Human Care Agreement with Family Matters of Greater Washington in the amount of $3,478,241.35 to provide Case Management and Family Based Foster Care Services for children and youth that have been removed from their natural home due to abuse and/or neglect and, for those needing to be removed from their homes, ensuring a foster care placement that can effectively support children and youth in achieving their goals of safety, permanence, and well-being was filed in the Office of the Secretary on April 8, 2014.\n\n The Council's ten day review begins Wednesday, April 9, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Saturday, April 19, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.",
"AttachmentPath": [
{
"Name": "CA20-0298-Introduction.pdf",
"RelativePath": "31531",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/19 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31531,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0298_Memorandum.pdf",
"RelativePath": "31531",
"Type": "Memorandum"
}
],
"Modified": "2014/04/25 14:19:28",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed execution of a Human Care Agreement with Family Matters of Greater Washington",
"Title": "CA20-0298",
"VendorName": "Family Matters of Greater Washington ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract modification for Option Year Two with Allied Barton Security Services, LLC in the amount of $21,721,800.00 to provide armed and unarmed security guards and special police officers as necessary for protection and security of persons and property at various facilities leased or owned by the District was filed in the Office of the Secretary on April 8, 2014. \n\nThe Council's ten day review begins Wednesday, April 9, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Saturday, April 19, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0297-Introduction.pdf",
"RelativePath": "31530",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/19 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31530,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0297_Memorandum.pdf",
"RelativePath": "31530",
"Type": "Memorandum"
}
],
"Modified": "2014/04/25 14:18:45",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract modification for Option Year Two with Allied Barton Security Services, LLC ",
"Title": "CA20-0297",
"VendorName": "Allied Barton Security Services, LLC ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0734-Introduction.pdf",
"RelativePath": "31563",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/05/06 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31563,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/09 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0734_Memorandum.pdf",
"RelativePath": "31563",
"Type": "Memorandum"
}
],
"Modified": "2014/04/25 14:11:32",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "National Presbyterian School, Inc. Revenue Bonds Project Approval Resolution of 2014",
"Title": "PR20-0734",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0732-Introduction.pdf",
"RelativePath": "31557",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/05/06 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/06/21 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31557,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0732_Memorandum.pdf",
"RelativePath": "31557",
"Type": "Memorandum"
}
],
"Modified": "2014/04/25 14:10:53",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Board of Architecture and Interior Designers Patrick Xavier Williams Confirmation Resolution of 2014",
"Title": "PR20-0732",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0773-Introduction.pdf",
"RelativePath": "31562",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/05/06 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31562,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/09 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0773_Memorandum.pdf",
"RelativePath": "31562",
"Type": "Memorandum"
}
],
"Modified": "2014/04/25 14:10:24",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Workforce Investment Implementation Amendment Act of 2014",
"Title": "B20-0773",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0772-Introduction.pdf",
"RelativePath": "31561",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/05/06 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31561,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
}
],
"IntroductionDate": "2014/04/09 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0772_Memorandum.pdf",
"RelativePath": "31561",
"Type": "Memorandum"
}
],
"Modified": "2014/04/25 14:10:00",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "American Academy of Achievement Real Property Tax Exemption Act of 2014",
"Title": "B20-0772",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to Section 808(a) of the District of Columbia Appropriations Act, 2013\", the attached \"FY 2014 Grant Budget Modifications of March 29, 2014\", GBM 20-96, was filed on April 9, 2014 in the Office of the Secretary. The Council's 14 calendar day review period begins Thursday, April 10, 2014 and ends Wednesday, April 23, 2014. The modification will be deemed approved on Thursday, April 24 2014, unless a notice of disapproval is filed within the 14 days. If a notice of disapproval is filed prior to that date, the Council's review period will be extended to 30 calendar days.",
"AttachmentPath": [
{
"Name": "GBM20-0096-Introduction.pdf",
"RelativePath": "31546",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/24 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31546,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/09 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "8;#Grant Budget Modification",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "11;#Grant Budget Modification",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "GBM20-0096_Memorandum.pdf",
"RelativePath": "31546",
"Type": "Memorandum"
}
],
"Modified": "2014/04/24 16:41:21",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Grant Budget Modifications of March 29, 2014 Approval Request",
"Title": "GBM20-0096",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract with Broughton Construction Company, LLC in the amount of $17,001,639 for Design-Build Services for the Stuart Hobson Middle School Modernization was filed in the Office of the Secretary on April 11, 2014.\n\nThe Council's ten day review begins Monday, April 14, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Thursday, April 24, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0300-Introduction.pdf",
"RelativePath": "31553",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
},
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/24 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31553,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/11 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0300_Memorandum.pdf",
"RelativePath": "31553",
"Type": "Memorandum"
}
],
"Modified": "2014/04/24 16:40:42",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract with Broughton Construction Company, LLC ",
"Title": "CA20-0300",
"VendorName": "Broughton Construction Company, LLC",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract for Option Year one with Marquis ID Systems in the amount of $1,456,000.00 to continue providing the District Department of Motor Vehicles a Secure Credentialing System was filed in the Office of the Secretary on April 11, 2014. \n\nThe Council's ten day review begins Monday, April 14, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Thursday, April 24, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.",
"AttachmentPath": [
{
"Name": "CA20-0301-Introduction.pdf",
"RelativePath": "31554",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/24 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31554,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/11 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0301_Memorandum.pdf",
"RelativePath": "31554",
"Type": "Memorandum"
}
],
"Modified": "2014/04/24 16:40:38",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract for Option Year one with Marquis ID Systems ",
"Title": "CA20-0301",
"VendorName": "Marquis ID Systems",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to D.C. Official Code 2-302.08(a)(3)(I) (2001), the Office of the Inspector General's \"Fiscal Year 2013 Management Letter Report\" is circulated for your review. Copies are available in Legislative Services.",
"AttachmentPath": [
{
"Name": "IG20-0076-Introduction.pdf",
"RelativePath": "31573",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31573,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/04/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "20;#Inspector General",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "IG20-0076_Memorandum.pdf",
"RelativePath": "31573",
"Type": "Memorandum"
}
],
"Modified": "2014/04/24 13:36:38",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Fiscal Year 2013 Management Letter Report",
"Title": "IG20-0076",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to D.C. Official Code 2-302.08(a)(3)(I) (2001), the Office of the Inspector General's \"Annuitants' Health and Life Insurance Employer Contribution Trust Fund Financial Statements and Management's Discussion and Analysis and Independent Auditor's Report Fiscal Years Ended September 30, 2013 and 2012\" is circulated for your review. Copies are available in Legislative Services.",
"AttachmentPath": [
{
"Name": "IG20-0077-Introduction.pdf",
"RelativePath": "31574",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31574,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/04/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "20;#Inspector General",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "IG20-0077_Memorandum.pdf",
"RelativePath": "31574",
"Type": "Memorandum"
}
],
"Modified": "2014/04/24 13:36:04",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Annuitants' Health and Life Insurance Employer Contribution Trust Fund",
"Title": "IG20-0077",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to D.C. Official Code 2-302.08(a)(3)(I) (2001), the Office of the Inspector General's \"Washington Convention and Sports Authority Financial Statements and Management's Discussion and Analysis and Independent Auditor's Report Fiscal Years Ended September 30, 2013 and 2012\" is circulated for your review. Copies are available in Legislative Services.",
"AttachmentPath": [
{
"Name": "IG20-0078-Introduction.pdf",
"RelativePath": "31575",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31575,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/04/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "20;#Inspector General",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "IG20-0078_Memorandum.pdf",
"RelativePath": "31575",
"Type": "Memorandum"
}
],
"Modified": "2014/04/24 13:35:30",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Washington Convention and Sports Authority",
"Title": "IG20-0078",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to D.C. Official Code 2-302.08(a)(3)(I) (2001), the Office of the Inspector General's \"Not-For-Profit Hospital Corporation United Medical Center Financial Statements (With Independent Auditor's Report Thereon) Fiscal Years Ended September 30, 2013 and 2012\" is circulated for your review. Copies are available in Legislative Services.",
"AttachmentPath": [
{
"Name": "IG20-0079-Introduction.pdf",
"RelativePath": "31576",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31576,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/04/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "20;#Inspector General",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "IG20-0079_Memorandum.pdf",
"RelativePath": "31576",
"Type": "Memorandum"
}
],
"Modified": "2014/04/24 13:32:43",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Not-For-Profit Hospital Corporation United Medical Center",
"Title": "IG20-0079",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to D.C. Official Code 2-302.08(a)(3)(I) (2001), the Office of the Inspector General's \"Not-For-Profit Hospital Corporation/United Medical Center Report on Internal Control Over Financial Reporting and on Compliance and Other Matters Years Ended September 30, 2013 and 2012\" is circulated for your review. Copies are available in Legislative Services.",
"AttachmentPath": [
{
"Name": "IG20-0080-Introduction.pdf",
"RelativePath": "31577",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31577,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/04/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "20;#Inspector General",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "IG20-0080_Memorandum.pdf",
"RelativePath": "31577",
"Type": "Memorandum"
}
],
"Modified": "2014/04/24 13:30:50",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Not-For-Profit Hospital Corporation/United Medical Center (a)",
"Title": "IG20-0080",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0649-Introduction.pdf",
"RelativePath": "30971",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/23 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30971,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/23 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0649_Memorandum.pdf",
"RelativePath": "30971",
"Type": "Memorandum"
}
],
"Modified": "2014/04/24 11:55:27",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/01/31 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Contractor Pay-to-Play Elimination Amendment Act of 2014",
"Title": "B20-0649",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0477-INTRODUCTION.pdf",
"RelativePath": "29633",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29633,
"Introducer": [
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2013/09/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/24 11:54:42",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/09/20 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "CRITERIA FOR COUNCIL REVIEW OF CONTRACTS SUBCONTRACTOR REQUIREMENT AMENDMENT ACT OF 2013.",
"Title": "B20-0477",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0075-INTRODUCTION.pdf",
"RelativePath": "29231",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/22 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29231,
"Introducer": [
{
"Id": 221,
"Name": "Mary M.Cheh"
}
],
"IntroductionDate": "2013/01/22 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/24 11:54:13",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/02/01 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "DISTRICT CONTRACTING PRICE REASONABLENESS ASSURANCE AMENDMENT ACT OF 2013.",
"Title": "B20-0075",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0021-INTRODUCTION.pdf",
"RelativePath": "29177",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 221,
"Name": "Mary M.Cheh"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/08 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29177,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 224,
"Name": "David Grosso"
}
],
"IntroductionDate": "2013/01/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/24 11:53:43",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/01/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "COUNCIL CONTRACT REVIEW REPEAL ACT OF 2013.",
"Title": "B20-0021",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0710-Introduction.pdf",
"RelativePath": "31467",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31467,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/24 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0710_Memorandum.pdf",
"RelativePath": "31467",
"Type": "Memorandum"
}
],
"Modified": "2014/04/24 11:52:03",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/04 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Trinity College Refunding Revenue Bonds Project Approval Resolution of 2014",
"Title": "PR20-0710",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0720-Introduction.pdf",
"RelativePath": "31502",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/07/16 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31502,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0720_Memorandum.pdf",
"RelativePath": "31502",
"Type": "Memorandum"
}
],
"Modified": "2014/04/24 11:51:31",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Real Property Tax Appeals Commission May S. Chan Confirmation Resolution of 2014",
"Title": "PR20-0720",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0709-Introduction.pdf",
"RelativePath": "31334",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31334,
"Introducer": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0709_Memorandum.pdf",
"RelativePath": "31334",
"Type": "Memorandum"
}
],
"Modified": "2014/04/24 11:50:29",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/03/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Hardship Green Grant and Rent Stabilization Act of 2014",
"Title": "B20-0709",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0679-Introduction.pdf",
"RelativePath": "31211",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 227,
"Name": "Phil Mendelson"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"ComitteeReferral": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31211,
"Introducer": [
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 218,
"Name": "Anita Bonds"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0679_Memorandum.pdf",
"RelativePath": "31211",
"Type": "Memorandum"
}
],
"Modified": "2014/04/24 10:48:46",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/02/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Homeless Services Reform Amendment Act of 2014",
"Title": "B20-0679",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Notice is given that the attached request to reprogram $6,607,330.00 of Paygo Capital Funds Budget Authority and Allotment to the operating budget within the Office of Deputy Mayor for Planning and Economic Development (DMPED) was filed in the Office of the Secretary on April 2, 2014. This reprogramming will fund on a one-time basis up to 52 units of affordable workforce rental housing at a private development project located at 23rd and M Streets, NW (Square 50).\n\nThe Council's 14 day review begins Thursday, April 3, 2014, and the request will be deemed approved on Thursday, April 17, 2014, unless a notice of disapproval is filed prior to that time which would extend the review period to 30 days. The request would then be deemed approved on the 31st day of receipt.",
"AttachmentPath": [
{
"Name": "REPROG20-0167-Introduction.pdf",
"RelativePath": "31491",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/17 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31491,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "11;#Reprogramming",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "13;#Reprogramming",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "REPROG20-0167_Memorandum.pdf",
"RelativePath": "31491",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 17:18:06",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Reprogramming Request for $6,607,330.00 of Paygo Capital Funds Budget Authority and Allotment to the Operating Budget within the Office of Deputy Mayor for Planning and Economic Development",
"Title": "REPROG20-0167",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to Section 808(a) of the District of Columbia Appropriations Act, 2013\", the attached \"FY 2014 Grant Budget Modifications of March 19, 2014 and March 21, 2014\", GBM 20-95, was filed on April 1, 2014 in the Office of the Secretary. The Council's 14 calendar day review period begins Wednesday, April 2, 2014 and ends Tuesday, April 15, 2014. The modification will be deemed approved on Wednesday, April 16 2014, unless a notice of disapproval is filed within the 14 days. If a notice of disapproval is filed prior to that date, the Council's review period will be extended to 30 calendar days.",
"AttachmentPath": [
{
"Name": "GBM20-0095-Introduction.pdf",
"RelativePath": "31486",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/16 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31486,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "8;#Grant Budget Modification",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "11;#Grant Budget Modification",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "GBM20-0095_Memorandum.pdf",
"RelativePath": "31486",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 17:17:32",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Grant Budget Modifications of March 19, 2014 and March 21, 2014 Approval Request",
"Title": "GBM20-0095",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0382-Introduction.pdf",
"RelativePath": "29538",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
},
{
"Id": 196,
"Name": "Government Operations"
},
{
"Id": 193,
"Name": "Economic Development"
},
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29538,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/07/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0382_Memorandum.pdf",
"RelativePath": "29538",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 16:23:37",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/07/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "SKYLAND TOWN CENTER OMNIBUS ACT OF 2013.",
"Title": "B20-0382",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "See \"Other Documents\" tab for referral memo",
"AttachmentPath": [
{
"Name": "B20-0573-Introduction.pdf",
"RelativePath": "30722",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30722,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/06 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0573_Memorandum.pdf",
"RelativePath": "30722",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 15:49:00",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/11/29 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Sustainable DC Omnibus Act of 2013",
"Title": "B20-0573",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0601-Introduction.pdf",
"RelativePath": "30919",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
}
],
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30919,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 220,
"Name": "David Catania"
}
],
"IntroductionDate": "2013/12/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0601_Memorandum.pdf",
"RelativePath": "30919",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 13:51:14",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/12/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Sense of the Council for a Hearing on the CSX Virginia Avenue Tunnel Project Resolution of 2013",
"Title": "PR20-0601",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0725-Introduction.pdf",
"RelativePath": "31381",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31381,
"Introducer": [
{
"Id": 220,
"Name": "David Catania"
}
],
"IntroductionDate": "2014/03/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0725_Memorandum.pdf",
"RelativePath": "31381",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 13:49:32",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/21 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Special Education Quality Improvement Act of 2014",
"Title": "B20-0725",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0724-Introduction.pdf",
"RelativePath": "31380",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31380,
"Introducer": [
{
"Id": 220,
"Name": "David Catania"
}
],
"IntroductionDate": "2014/03/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0724_Memorandum.pdf",
"RelativePath": "31380",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 13:48:58",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/21 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Enhanced Special Education Services Act of 2014",
"Title": "B20-0724",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0723-Introduction.pdf",
"RelativePath": "31379",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31379,
"Introducer": [
{
"Id": 220,
"Name": "David Catania"
}
],
"IntroductionDate": "2014/03/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0723_Memorandum.pdf",
"RelativePath": "31379",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 13:48:21",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/21 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Special Education Student Rights Act of 2014",
"Title": "B20-0723",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0721-Introduction.pdf",
"RelativePath": "31346",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31346,
"Introducer": [
{
"Id": 223,
"Name": "Jim Graham"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0721_Memorandum.pdf",
"RelativePath": "31346",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 13:46:26",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/03/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "U Street/14th Street NW Great Streets Neighborhood Retail Priority Amendment Act of 2014",
"Title": "B20-0721",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0707-Introduction.pdf",
"RelativePath": "31332",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 227,
"Name": "Phil Mendelson"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31332,
"Introducer": [
{
"Id": 219,
"Name": "Muriel Bowser"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0707_Memorandum.pdf",
"RelativePath": "31332",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 13:45:50",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/03/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Land Disposition Transparency Act of 2014",
"Title": "B20-0707",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0648-Introduction.pdf",
"RelativePath": "30970",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 223,
"Name": "Jim Graham"
}
],
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/23 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30970,
"Introducer": [
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/01/23 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0648_Memorandum.pdf",
"RelativePath": "30970",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 13:45:17",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/01/31 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Condominium Fee Fairness Act of 2014",
"Title": "B20-0648",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0728-Introduction.pdf",
"RelativePath": "31521",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31521,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0728_Memorandum.pdf",
"RelativePath": "31521",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 13:43:05",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Settlements and Interest Arbitration Award between the District of Columbia Government and the Fraternal Order of Police MPD Labor Committee (Compensation Unit 3) Emergency Approval Resolution of 2014",
"Title": "PR20-0728",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0723-Introduction.pdf",
"RelativePath": "31508",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31508,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0723_Memorandum.pdf",
"RelativePath": "31508",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 13:42:29",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Compensation Collective Bargaining Agreement between the District of Columbia Department of Behavioral Health and Public Service Employees Local 572, Laborers International Union of North America (LIUNA) affiliated with AFL-CIO Emergency Approval Resolution of 2014",
"Title": "PR20-0723",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0717-Introduction.pdf",
"RelativePath": "31484",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31484,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0717_Memorandum.pdf",
"RelativePath": "31484",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 13:40:50",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Compensation Award for the Collective Bargaining Agreement between the Government of the District of Columbia Department of Health, Department of Youth Rehabilitation Services, Department on Disability Services, Department of Health Care Finance, Child and Family Services Agency and the Office of the Chief Medical Examiner (Compensation Unit 13) and the District of Columbia Nurses Association Emergency Approval Resolution of 2014",
"Title": "PR20-0717",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "In accordance with the District of Columbia Quick Payment Act of 1984, effective March 15, 1985, as amended (D.C. Law 5-164; D.C. Code 2-221.1 et seq.), the Office of the Chief Financial Officer submits their report on the \"Interest Penalties Paid in FY 2013\". The schedule shows interest penalties payments by agency. Copies of the report can be reviewed in the Legislative Services Division, Room 10.",
"AttachmentPath": [
{
"Name": "CFO20-0007-Introduction.pdf",
"RelativePath": "31572",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31572,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/04/21 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 10.0,
"LegislationType": "18;#Chief Financial Officer",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "CFO20-0007_Memorandum.pdf",
"RelativePath": "31572",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 13:23:05",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Interest Penalties Paid in FY 2013",
"Title": "CFO20-0007",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0693-Introduction.pdf",
"RelativePath": "31415",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/04/18 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31415,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/12 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0693_Memorandum.pdf",
"RelativePath": "31415",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 13:21:42",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Medicaid Updates to the Reimbursement Methodology for Intermediate Care Facilities for Individuals with Intellectual Disabilities State Plan Amendment Approval Resolution of 2014",
"Title": "PR20-0693",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0755-Introduction.pdf",
"RelativePath": "31527",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/15 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31527,
"Introducer": [
{
"Id": 223,
"Name": "Jim Graham"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0755_Memorandum.pdf",
"RelativePath": "31527",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 12:00:23",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Child Development Home License Emergency Amendment Act of 2014",
"Title": "B20-0755",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0754-Introduction.pdf",
"RelativePath": "31525",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/15 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31525,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/04/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0754_Memorandum.pdf",
"RelativePath": "31525",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:59:53",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Comprehensive Code of Conduct and BEGA Emergency Amendment Act of 2014",
"Title": "B20-0754",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0740-Introduction.pdf",
"RelativePath": "31474",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31474,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/24 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0740_Memorandum.pdf",
"RelativePath": "31474",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:59:22",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Scholastic Inc. Purchase Orders PO481712, PO466824 and PO466825 Approval and Payment Authorization Emergency Act of 2014",
"Title": "B20-0740",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0731-Introduction.pdf",
"RelativePath": "31541",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31541,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0731_Memorandum.pdf",
"RelativePath": "31541",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:26:09",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Sense of the Council Not-for-Profit Hospital Corporation Transformation and Sustainability Resolution of 2014",
"Title": "PR20-0731",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0769-Introduction.pdf",
"RelativePath": "31545",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 223,
"Name": "Jim Graham"
}
],
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31545,
"Introducer": [
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0769_Memorandum.pdf",
"RelativePath": "31545",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:25:37",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Protecting Pregnant Workers Fairness Act of 2014",
"Title": "B20-0769",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0768-Introduction.pdf",
"RelativePath": "31544",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
}
],
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31544,
"Introducer": [
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0768_Memorandum.pdf",
"RelativePath": "31544",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:25:16",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Egregious First-Time Sale to Minor Regulation Clarification Amendment Act of 2014",
"Title": "B20-0768",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0767-Introduction.pdf",
"RelativePath": "31543",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"ComitteeReferral": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31543,
"Introducer": [
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0767_Memorandum.pdf",
"RelativePath": "31543",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:24:48",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Dignity for Homeless Families Amendment Act of 2014",
"Title": "B20-0767",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0766-Introduction.pdf",
"RelativePath": "31542",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
},
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31542,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0766_Memorandum.pdf",
"RelativePath": "31542",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:24:27",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Medical Marijuana Expansion Amendment Act of 2014",
"Title": "B20-0766",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0765-Introduction.pdf",
"RelativePath": "31540",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
},
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31540,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0765_Memorandum.pdf",
"RelativePath": "31540",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:24:04",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Student Certificate of Health Amendment Act of 2014",
"Title": "B20-0765",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0764-Introduction.pdf",
"RelativePath": "31539",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31539,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0764_Memorandum.pdf",
"RelativePath": "31539",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:23:45",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Prohibition of Bottled Water Act of 2014",
"Title": "B20-0764",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0763-Introduction.pdf",
"RelativePath": "31538",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31538,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 224,
"Name": "David Grosso"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0763_Memorandum.pdf",
"RelativePath": "31538",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:23:24",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Multi-Hazard Approach to Preparedness in Schools Amendment Act of 2014",
"Title": "B20-0763",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0762-Introduction.pdf",
"RelativePath": "31537",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 222,
"Name": "Jack Evans"
}
],
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31537,
"Introducer": [
{
"Id": 219,
"Name": "Muriel Bowser"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0762_Memorandum.pdf",
"RelativePath": "31537",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:23:05",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Relationship Privacy Protection Act of 2014",
"Title": "B20-0762",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0761-Introduction.pdf",
"RelativePath": "31536",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31536,
"Introducer": [
{
"Id": 219,
"Name": "Muriel Bowser"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0761_Memorandum.pdf",
"RelativePath": "31536",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:22:47",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Recreation Facilities Expanded Operating Hours Amendment Act of 2014",
"Title": "B20-0761",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0760-Introduction.pdf",
"RelativePath": "31535",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 217,
"Name": "Marion Barry"
}
],
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31535,
"Introducer": [
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0760_Memorandum.pdf",
"RelativePath": "31535",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:22:28",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Repeal of Prostitution Free Zones Amendment Act of 2014",
"Title": "B20-0760",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0759-Introduction.pdf",
"RelativePath": "31534",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31534,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0759_Memorandum.pdf",
"RelativePath": "31534",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:22:05",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Transportation Reorganization Act of 2014",
"Title": "B20-0759",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0758-Introduction.pdf",
"RelativePath": "31533",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31533,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0758_Memorandum.pdf",
"RelativePath": "31533",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:21:46",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Omnibus Elections Amendment Act of 2014",
"Title": "B20-0758",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0757-Introduction.pdf",
"RelativePath": "31532",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 222,
"Name": "Jack Evans"
}
],
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
},
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31532,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0757_Memorandum.pdf",
"RelativePath": "31532",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:21:25",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Wage Transparency Amendment Act of 2014",
"Title": "B20-0757",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0459",
"AdditionalInformation": "Vendor - Truman Arnold Companies",
"AttachmentPath": [
{
"Name": "PR20-0689-Introduction.pdf",
"RelativePath": "31387",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31387,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0689_Memorandum.pdf",
"RelativePath": "31387",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:20:44",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "District Multiyear Delivery Order No. CW23558 under Federal Contract No. SP0600-13-D-4037 Approval and Payment Authorization Emergency Declaration Resolution of 2014",
"Title": "PR20-0689",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0458",
"AdditionalInformation": "Vendor - Alta Bicycle Share, Inc.",
"AttachmentPath": [
{
"Name": "PR20-0708-Introduction.pdf",
"RelativePath": "31464",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31464,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/21 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0708_Memorandum.pdf",
"RelativePath": "31464",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:20:02",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Modifications 8 and 9 to Task Order No. DCKA-2013-T-0006 Approval and Payment Authorization Emergency Declaration Resolution of 2014",
"Title": "PR20-0708",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0457",
"AdditionalInformation": "Vendor - International Salt Co.",
"AttachmentPath": [
{
"Name": "PR20-0688-Introduction.pdf",
"RelativePath": "31385",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31385,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0688_Memorandum.pdf",
"RelativePath": "31385",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:18:56",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Contract No. PO489769 and Modifications Nos. 2 and 3 Approval and Payment Authorization Emergency Declaration Resolution of 2014",
"Title": "PR20-0688",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0456",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0714-Introduction.pdf",
"RelativePath": "31473",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31473,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/24 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0714_Memorandum.pdf",
"RelativePath": "31473",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:18:09",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Scholastic Inc. Purchase Orders PO481712, PO466824 and PO466825 Approval and Payment Authorization Emergency Declaration Resolution of 2014",
"Title": "PR20-0714",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0455",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0713-Introduction.pdf",
"RelativePath": "31471",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31471,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/24 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0713_Memorandum.pdf",
"RelativePath": "31471",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:17:15",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Dell Marketing LP Purchase Orders No. PO480603 Approval and Payment Authorization Emergency Declaration Resolution of 2014",
"Title": "PR20-0713",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0454",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0712-Introduction.pdf",
"RelativePath": "31469",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31469,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/24 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0712_Memorandum.pdf",
"RelativePath": "31469",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:16:14",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Office Depot Purchase Orders Nos. PO467381 and PO480871 Approval and Payment Authorization Emergency Declaration Resolution of 2014",
"Title": "PR20-0712",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0453",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0730-Introduction.pdf",
"RelativePath": "31526",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/15 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31526,
"Introducer": [
{
"Id": 223,
"Name": "Jim Graham"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0730_Memorandum.pdf",
"RelativePath": "31526",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:15:21",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Child Development Home License Emergency Declaration Resolution of 2014",
"Title": "PR20-0730",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0452",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0729-Introduction.pdf",
"RelativePath": "31524",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/15 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31524,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/04/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0729_Memorandum.pdf",
"RelativePath": "31524",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:14:34",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Comprehensive Code of Conduct and BEGA Emergency Declaration Resolution of 2014",
"Title": "PR20-0729",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0451",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0650-Introduction.pdf",
"RelativePath": "31240",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31240,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0650_Memorandum.pdf",
"RelativePath": "31240",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:13:32",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/02/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Sense of the Council for Ending Chronic Homelessness Resolution of 2014",
"Title": "PR20-0650",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0450",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0630-Introduction.pdf",
"RelativePath": "31145",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/04/09 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31145,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/29 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0630_Memorandum.pdf",
"RelativePath": "31145",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:12:45",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/02/07 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Foster Youth Statement of Rights Rules Approval Resolution of 2014",
"Title": "PR20-0630",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0449",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0663-Introduction.pdf",
"RelativePath": "31288",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/04/28 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31288,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/19 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0663_Memorandum.pdf",
"RelativePath": "31288",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:11:53",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/03/07 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Commission on the Arts and Humanities Antoinette Ford Confirmation Resolution of 2014",
"Title": "PR20-0663",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0448",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0640-Introduction.pdf",
"RelativePath": "31192",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/05/28 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31192,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0640_Memorandum.pdf",
"RelativePath": "31192",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:11:14",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/02/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Real Property Tax Appeals Commission John N. Ollivierra Confirmation Resolution of 2014",
"Title": "PR20-0640",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0447",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0687-Introduction.pdf",
"RelativePath": "31362",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31362,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0687_Memorandum.pdf",
"RelativePath": "31362",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:10:22",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "The Ingleside Presbyterian Retirement Community, Inc., Revenue Bonds Project Approval Resolution of 2014",
"Title": "PR20-0687",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0446",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0525-Introduction.pdf",
"RelativePath": "30651",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30651,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/24 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0525_Memorandum.pdf",
"RelativePath": "30651",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:09:33",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/11/22 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Domestic Violence Fatality Review Board Sharlene J. Kranz Confirmation Resolution of 2013",
"Title": "PR20-0525",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0445",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0499-Introduction.pdf",
"RelativePath": "30590",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30590,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0499_Memorandum.pdf",
"RelativePath": "30590",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:08:41",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA SENTENCING AND CRIMINAL CODE REVISION COMMISSION MARVIN TURNER CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0499",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0444",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0490-Introduction.pdf",
"RelativePath": "30581",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30581,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0490_Memorandum.pdf",
"RelativePath": "30581",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:07:52",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DOMESTIC VIOLENCE FATALITY REVIEW BOARD LAURIE S. KOHN CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0490",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0443",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0488-Introduction.pdf",
"RelativePath": "30579",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30579,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0488_Memorandum.pdf",
"RelativePath": "30579",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:07:00",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DOMESTIC VIOLENCE FATALITY REVIEW BOARD VARINA JANE WINDER CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0488",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0442",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0487-Introduction.pdf",
"RelativePath": "30578",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30578,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0487_Memorandum.pdf",
"RelativePath": "30578",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:06:08",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DOMESTIC VIOLENCE FATALITY REVIEW BOARD ERIN S. LARKIN CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0487",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0441",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0486-Introduction.pdf",
"RelativePath": "30577",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30577,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0486_Memorandum.pdf",
"RelativePath": "30577",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:05:01",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DOMESTIC VIOLENCE FATALITY REVIEW BOARD JONATHAN Y. O'REILLY CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0486",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0440",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0445-INTRODUCTION.pdf",
"RelativePath": "30536",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30536,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0445_Memorandum.pdf",
"RelativePath": "30536",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:04:11",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/09/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHILD FATALITY REVIEW COMMITTEE JELANI A. FREEMAN CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0445",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0439",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0378-Introduction.pdf",
"RelativePath": "30469",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30469,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/07/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0378_Memorandum.pdf",
"RelativePath": "30469",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:03:12",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/07/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA CORRECTIONS INFORMATION COUNCIL REVEREND SAMUEL W. WHITAKER CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0378",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0307",
"AdditionalInformation": "Incorporated provisions from Bill 20-422.",
"AttachmentPath": [
{
"Name": "B20-0181-INTRODUCTION.pdf",
"RelativePath": "29337",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/03/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29337,
"Introducer": [
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2013/03/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0181_Memorandum.pdf",
"RelativePath": "29337",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:01:54",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/03/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "SMALL AND CERTIFIED BUSINESS ENTERPRISE DEVELOPMENT AND ASSISTANCE AMENDMENT ACT OF 2013.",
"Title": "B20-0181",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0703-Introduction.pdf",
"RelativePath": "31425",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31425,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/14 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0703_Memorandum.pdf",
"RelativePath": "31425",
"Type": "Memorandum"
}
],
"Modified": "2014/04/22 11:00:32",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "FEMS Redistribution Resolution of 2014",
"Title": "PR20-0703",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0113-INTRODUCTION.pdf",
"RelativePath": "29269",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 221,
"Name": "Mary M.Cheh"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
},
{
"Id": 227,
"Name": "Phil Pmendelson"
}
],
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29269,
"Introducer": [
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 223,
"Name": "Jim Graham"
}
],
"IntroductionDate": "2013/02/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/22 10:59:30",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/02/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "RENT CONTROL HARDSHIP PETITION LIMITATION AMENDMENT ACT OF 2013.",
"Title": "B20-0113",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0410-INTRODUCTION.pdf",
"RelativePath": "29566",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
},
{
"Id": 227,
"Name": "Phil Pmendelson"
}
],
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29566,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 221,
"Name": "Mary M.Cheh"
}
],
"IntroductionDate": "2013/07/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/22 10:39:30",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/07/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "BREASTMILK BANK AND LACTATION SUPPORT ACT OF 2013.",
"Title": "B20-0410",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0313-INTRODUCTION.pdf",
"RelativePath": "29469",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
},
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29469,
"Introducer": [
{
"Id": 220,
"Name": "David Catania"
}
],
"IntroductionDate": "2013/06/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/22 10:33:45",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/06/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "COMPREHENSIVE PLANNING AND UTILIZATION OF SCHOOL FACILITIES ACT OF 2013.",
"Title": "B20-0313",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0268",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0397-INTRODUCTION.pdf",
"RelativePath": "30488",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30488,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"IntroductionDate": "2013/07/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0397_Memorandum.pdf",
"RelativePath": "30488",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 15:25:48",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "CONTRACT NUMBER DCHBX-2013-C-0001 EMERGENCY APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0397",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0267",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0396-INTRODUCTION.pdf",
"RelativePath": "30487",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30487,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"IntroductionDate": "2013/07/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0396_Memorandum.pdf",
"RelativePath": "30487",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 15:22:43",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "CONTRACT NUMBER DCHBX-2013-C-0001 EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0396",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0212",
"AdditionalInformation": "Vendor - Policy Studies, Inc.",
"AttachmentPath": [
{
"Name": "B20-0493-Introduction.pdf",
"RelativePath": "29649",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 197,
"Name": "Health"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29649,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0493_Memorandum.pdf",
"RelativePath": "29649",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 15:16:35",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CONTRACT DCHT-2011-C-001 MODIFICATIONS APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0493",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0338",
"AdditionalInformation": "Vendor - Policy Studies, Inc.",
"AttachmentPath": [
{
"Name": "PR20-0474-Introduction.pdf",
"RelativePath": "30565",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 197,
"Name": "Health"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30565,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0474_Memorandum.pdf",
"RelativePath": "30565",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 15:15:38",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CONTRACT DCHT-2011-C-001 MODIFICATIONS APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0474",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0202",
"AdditionalInformation": "Vendor - Turner Construction Company",
"AttachmentPath": [
{
"Name": "B20-0492-Introduction.pdf",
"RelativePath": "29648",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29648,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0492_Memorandum.pdf",
"RelativePath": "29648",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 15:02:14",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHANGE ORDERS NO. FY13-002 THROUGH NO. FY13-008 TO CONTRACT GM-10-S-0707B-FM APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0492",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0308",
"AdditionalInformation": "Vendor - Turner Construction Company",
"AttachmentPath": [
{
"Name": "PR20-0471-Introduction.pdf",
"RelativePath": "30562",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30562,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0471_Memorandum.pdf",
"RelativePath": "30562",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 15:01:06",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHANGE ORDERS NO. FY13-002 THROUGH NO. FY13-008 TO CONTRACT GM-10-S-0707B-FM APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0471",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0201",
"AdditionalInformation": "Vendor - C&D Tree Service, Inc.",
"AttachmentPath": [
{
"Name": "B20-0491-Introduction.pdf",
"RelativePath": "29647",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29647,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/25 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0491_Memorandum.pdf",
"RelativePath": "29647",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 14:58:45",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "MODIFICATION NO. 13 TO CONTRACT NO. DCKA-2010-C-0219 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0491",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0307",
"AdditionalInformation": "Vendor - C&D Tree Service, Inc.",
"AttachmentPath": [
{
"Name": "PR20-0465-Introduction.pdf",
"RelativePath": "30556",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30556,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/25 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0465_Memorandum.pdf",
"RelativePath": "30556",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 14:57:51",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "MODIFICATION NO. 13 TO CONTRACT NO. DCKA-2010-C-0219 APPROVAL AND PAYMENT AUTHORIZATION DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0465",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0200",
"AdditionalInformation": "Vendor - Fannon Petroleum Services, Inc.",
"AttachmentPath": [
{
"Name": "B20-0490-Introduction.pdf",
"RelativePath": "29646",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29646,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/25 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0490_Memorandum.pdf",
"RelativePath": "29646",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 14:55:54",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DELIVERY ORDER CW23328 UNDER FEDERAL CONTRACT NO. SP0600-13-D-4016 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0490",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0311",
"AdditionalInformation": "Vendor - Fannon Petroleum Services, Inc.",
"AttachmentPath": [
{
"Name": "PR20-0464-Introduction.pdf",
"RelativePath": "30555",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30555,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/25 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0464_Memorandum.pdf",
"RelativePath": "30555",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 14:53:49",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DELIVERY ORDER CW23328 UNDER FEDERAL CONTRACT NO. SP0600-13-D-4016 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0464",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Vendor - Truman Arnold Companies",
"AttachmentPath": [
{
"Name": "B20-0730-Introduction.pdf",
"RelativePath": "31388",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31388,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0730_Memorandum.pdf",
"RelativePath": "31388",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 14:51:24",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "District Multiyear Delivery Order No. CW23558 under Federal Contract No. SP0600-13-D-4037 Approval and Payment Authorization Emergency Act of 2014",
"Title": "B20-0730",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0693-Introduction.pdf",
"RelativePath": "31311",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31311,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0693_Memorandum.pdf",
"RelativePath": "31311",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 11:15:19",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Driver Safety Clarification Temporary Amendment Act of 2014",
"Title": "B20-0693",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Vendor - International Salt Co.",
"AttachmentPath": [
{
"Name": "B20-0729-Introduction.pdf",
"RelativePath": "31386",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31386,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0729_Memorandum.pdf",
"RelativePath": "31386",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 11:12:02",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Contract No. PO489769 and Modifications Nos. 2 and 3 Approval and Payment Authorization Emergency Act of 2014",
"Title": "B20-0729",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0705-Introduction.pdf",
"RelativePath": "31330",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31330,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0705_Memorandum.pdf",
"RelativePath": "31330",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 11:10:45",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Tobacco Product Manufacturer Reserve Fund Temporary Amendment Act of 2014",
"Title": "B20-0705",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0703-Introduction.pdf",
"RelativePath": "31326",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31326,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0703_Memorandum.pdf",
"RelativePath": "31326",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 11:09:42",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Department of Parks and Recreation Fee-based Use Permit Authority Clarification Temporary Act of 2014",
"Title": "B20-0703",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0701-Introduction.pdf",
"RelativePath": "31323",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31323,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0701_Memorandum.pdf",
"RelativePath": "31323",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 11:08:40",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Transportation Infrastructure Mitigation Clarification Temporary Act of 2014",
"Title": "B20-0701",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0699-Introduction.pdf",
"RelativePath": "31320",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31320,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0699_Memorandum.pdf",
"RelativePath": "31320",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 11:06:46",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Kelsey Gardens Redevelopment Temporary Act of 2014",
"Title": "B20-0699",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0739-Introduction.pdf",
"RelativePath": "31472",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31472,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/24 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0739_Memorandum.pdf",
"RelativePath": "31472",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 11:05:17",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Dell Marketing LP Purchase Orders No. PO480603 Approval and Payment Authorization Emergency Act of 2014",
"Title": "B20-0739",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0738-Introduction.pdf",
"RelativePath": "31470",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31470,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/24 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0738_Memorandum.pdf",
"RelativePath": "31470",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 11:01:51",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Office Depot Purchase Orders Nos. PO467381 and PO480871 Approval and Payment Authorization Emergency Act of 2014 ",
"Title": "B20-0738",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Vendor - Alta Bicycle Share, Inc.",
"AttachmentPath": [
{
"Name": "B20-0737-Introduction.pdf",
"RelativePath": "31465",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31465,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/21 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0737_Memorandum.pdf",
"RelativePath": "31465",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 11:00:20",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Modifications 8 and 9 to Task Order No. DCKA-2013-T-0006 Approval and Payment Authorization Emergency Act of 2014",
"Title": "B20-0737",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0022-INTRODUCTION.pdf",
"RelativePath": "29178",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 221,
"Name": "Mary M.Cheh"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
},
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/08 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29178,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
}
],
"IntroductionDate": "2013/01/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/21 10:46:39",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/01/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "RESIDENTIAL REAL PROPERTY TAX RELIEF ACT OF 2013.",
"Title": "B20-0022",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0139-INTRODUCTION.pdf",
"RelativePath": "29295",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29295,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2013/02/19 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0139_Memorandum.pdf",
"RelativePath": "29295",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 10:43:29",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/03/04 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "CONDOMINIUM AMENDMENT ACT OF 2013.",
"Title": "B20-0139",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0174-INTRODUCTION.pdf",
"RelativePath": "29330",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 219,
"Name": "Muriel Bowser"
}
],
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/03/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29330,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
}
],
"IntroductionDate": "2013/03/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 50.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0174_Memorandum.pdf",
"RelativePath": "29330",
"Type": "Memorandum"
}
],
"Modified": "2014/04/21 10:41:17",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/03/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "MEDICAID REIMBURSEMENT FOR CHIROPRACTIC SERVICES ACT OF 2013.",
"Title": "B20-0174",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to D.C. Code 47-355.05(a), the Chief Financial Officer has submitted the \"Report of Variances between Actual Agency Expenditures and Approved Spending Plans through the First Quarter of FY 2014\". This summary report is divided into two sections: the Operating Budget and the Capital Improvements Program. Each section includes observations of the Chief Financial Officer and Agency Fiscal Officers, jointly reported as \"OCFO Observations\". Copies of the report can be reviewed in the Legislative Services Division, Room 10.",
"AttachmentPath": [
{
"Name": "CFO20-0006-Introduction.pdf",
"RelativePath": "31571",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31571,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/04/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "18;#Chief Financial Officer",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "CFO20-0006_Memorandum.pdf",
"RelativePath": "31571",
"Type": "Memorandum"
}
],
"Modified": "2014/04/18 12:37:06",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Report of Variances between Actual Agency Expenditures and Approved Spending Plans through the First Quarter of FY 2014",
"Title": "CFO20-0006",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to PL 113-6, the Chief Financial Officer has submitted the \"Fourth Quarter Fiscal Year 2013 Congressional Grant Report\". The report details the FY2013 fourth quarter financial activity of all federal, private and other grants through September 30, 2013. Copies of the Report can be reviewed in the Legislative Services Division, Room 10.",
"AttachmentPath": [
{
"Name": "CFO20-0005-Introduction.pdf",
"RelativePath": "31570",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31570,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/02/21 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "18;#Chief Financial Officer",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "CFO20-0005_Memorandum.pdf",
"RelativePath": "31570",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 20:52:28",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Fourth Quarter Fiscal Year 2013 Congressional Grant Report",
"Title": "CFO20-0005",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to D.C. Code \u00a7 24-282(e) (2007), the Chief Financial Officer submits the Office of Integrity and Oversight's (OIO) audit on the \"Residential Real Property Tax Lien Sales required by the Tax Lien Compensation and Relief Reporting Act of 2013\". Copies of the report can be reviewed in the Legislative Services Division, Room 10. ",
"AttachmentPath": [
{
"Name": "CFO20-0004-Introduction.pdf",
"RelativePath": "31569",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31569,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/02/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "18;#Chief Financial Officer",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "CFO20-0004_Memorandum.pdf",
"RelativePath": "31569",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 20:51:49",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Residential Real Property Tax Lien Sales required by the Tax Lien Compensation and Relief Report Act of 2013",
"Title": "CFO20-0004",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0702-Introduction.pdf",
"RelativePath": "31424",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/05/30 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31424,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/14 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0702_Memorandum.pdf",
"RelativePath": "31424",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 17:19:40",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Rent Reasonableness Standard Approval Resolution of 2014",
"Title": "PR20-0702",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0695-Introduction.pdf",
"RelativePath": "31417",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/06/26 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31417,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0695_Memorandum.pdf",
"RelativePath": "31417",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 17:16:27",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "District of Columbia Commission on Human Rights Motoko Aizawa Confirmation Resolution of 2014",
"Title": "PR20-0695",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0694-Introduction.pdf",
"RelativePath": "31416",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/06/26 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31416,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0694_Memorandum.pdf",
"RelativePath": "31416",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 17:15:57",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "District of Columbia Commission on Human Rights David Scruggs Confirmation Resolution of 2014",
"Title": "PR20-0694",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0692-Introduction.pdf",
"RelativePath": "31414",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/05/12 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31414,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/11 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0692_Memorandum.pdf",
"RelativePath": "31414",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 17:14:52",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Real Estate Commission Helen McMurdock Dodson Confirmation Resolution of 2014",
"Title": "PR20-0692",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0691-Introduction.pdf",
"RelativePath": "31393",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/05/12 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31393,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/06 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0691_Memorandum.pdf",
"RelativePath": "31393",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 17:14:10",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Board of Veterinary Examiners Dr. Aruna Noon Kampani Confirmation Resolution of 2014",
"Title": "PR20-0691",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0733-Introduction.pdf",
"RelativePath": "31392",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31392,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0733_Memorandum.pdf",
"RelativePath": "31392",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 17:13:25",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Tobacco Product Manufacturer Reserve Fund Amendment Act of 2014",
"Title": "B20-0733",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0677-Introduction.pdf",
"RelativePath": "31209",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
},
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31209,
"Introducer": [
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0677_Memorandum.pdf",
"RelativePath": "31209",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 17:12:58",
"Phase": 6.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
},
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"ReCommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"ReIntroducer": null,
"ReReferral": true,
"ReReferralDate": "2014/03/13 00:00:00",
"ReReferralPublishedDate": "2014/03/28 00:00:00",
"RequestOf": null,
"ShortTitle": "D.C. Urban Farming and Food Security Act of 2014",
"Title": "B20-0677",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0734-Introduction.pdf",
"RelativePath": "31426",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31426,
"Introducer": [
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/03/14 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0734_Memorandum.pdf",
"RelativePath": "31426",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 17:12:35",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Fair Leave Act of 2014",
"Title": "B20-0734",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0701-Introduction.pdf",
"RelativePath": "31423",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/05/12 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31423,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0701_Memorandum.pdf",
"RelativePath": "31423",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 16:38:33",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Commission on Asian and Pacific Islander Community Development Sapna D. Pandya Confirmation Resolution of 2014",
"Title": "PR20-0701",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0700-Introduction.pdf",
"RelativePath": "31422",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/05/12 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31422,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0700_Memorandum.pdf",
"RelativePath": "31422",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 16:36:21",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Commission on Asian and Pacific Islander Community Development Dana Burgess Confirmation Resolution of 2014",
"Title": "PR20-0700",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0699-Introduction.pdf",
"RelativePath": "31421",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/05/12 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31421,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0699_Memorandum.pdf",
"RelativePath": "31421",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 16:33:37",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Commission on Asian and Pacific Islander Community Development Simone E. Jacobson Confirmation Resolution of 2014",
"Title": "PR20-0699",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0698-Introduction.pdf",
"RelativePath": "31420",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/05/12 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31420,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0698_Memorandum.pdf",
"RelativePath": "31420",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 16:31:26",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Commission on Asian and Pacific Islander Community Development Ajay K. Ojha Confirmation Resolution of 2014",
"Title": "PR20-0698",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0697-Introduction.pdf",
"RelativePath": "31419",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/05/12 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31419,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0697_Memorandum.pdf",
"RelativePath": "31419",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 16:26:04",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Commission on Asian and Pacific Islander Community Development Laura Shin Confirmation Resolution of 2014",
"Title": "PR20-0697",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0696-Introduction.pdf",
"RelativePath": "31418",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/05/12 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31418,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0696_Memorandum.pdf",
"RelativePath": "31418",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 16:19:38",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Commission on Asian and Pacific Islander Community Development Nicholas C. Lepham Confirmation Resolution of 2014",
"Title": "PR20-0696",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to D.C. Code 24-282(e), the Chief Financial Officer submits the Office of Integrity and Oversight's \"Quarterly Audit Report for the First Quarter Ended December 31, 2013\". Copies of the report can be reviewed in the Legislative Services Division, Room 10.",
"AttachmentPath": [
{
"Name": "CFO20-0002-Introduction.pdf",
"RelativePath": "31567",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31567,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/01/24 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "18;#Chief Financial Officer",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "CFO20-0002_Memorandum.pdf",
"RelativePath": "31567",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 15:05:44",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Office of Integrity and Oversight Quarterly Audit Report for the First Quarter Ended December 31, 2013",
"Title": "CFO20-0002",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to D.C. Code 24-282(e) (2007), the Chief Financial Officer submits the Office of Integrity and Oversight's \"Audit of the Inmate Welfare Fund Financial Statements for the Fiscal Year Ended September 30, 2013\". Copies of the report can be reviewed in the Legislative Services Division, Room 10.",
"AttachmentPath": [
{
"Name": "CFO20-0003-Introduction.pdf",
"RelativePath": "31568",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31568,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/01/31 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "18;#Chief Financial Officer",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "CFO20-0003_Memorandum.pdf",
"RelativePath": "31568",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 15:04:57",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Audit of the Inmate Welfare Fund Financial Statements for the Fiscal Year Ended September 30, 2013",
"Title": "CFO20-0003",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract with Arbor E&T, LLC in the amount of $1,588,907.00 for continued provision of Job Placement services was filed in the Office of the Secretary on April 14, 2014. \n\nThe Council's ten day review begins Thursday, April 17, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Sunday, April 27, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0304-Introduction.pdf",
"RelativePath": "31565",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/27 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31565,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/14 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "CA20-0304_Memorandum.pdf",
"RelativePath": "31565",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 15:03:46",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract with Arbor E&T, LLC ",
"Title": "CA20-0304",
"VendorName": "Arbor E&T, LLC ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract Human Care Agreement with KidsPeace National Centers of North America, Inc. in the amount of $2,188,362,29 to provide Case Management and Family Based Foster Care Services for children and youth that have been removed from their natural home due to abuse and/or neglect and, for those needing to be removed from their homes, ensuring a foster care placement that can effectively support children and youth in achieving their goals of safety, permanence, and well-being was filed in the Office of the Secretary on April 3, 2014. \n\nThe Council's ten day review begins Friday, April 4, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Monday, April 14, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0294-Introduction.pdf",
"RelativePath": "31499",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/14 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31499,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0294_Memorandum.pdf",
"RelativePath": "31499",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 14:51:18",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed Human Care Agreement with KidsPeace National Centers of North America, Inc. ",
"Title": "CA20-0294",
"VendorName": "KidsPeace National Centers of North America, Inc. ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract modification with CTB/McGraw Hill, LLC in the amount of $1,272,192.30 to add 2nd and 9th grades to the development of the statewide assessment program for DC students in reading and mathematics was filed in the Office of the Secretary on April 3, 2014. \n\nThe Council's ten day review begins Friday, April 4, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Monday, April 14, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0293-Introduction.pdf",
"RelativePath": "31497",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/14 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31497,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0293_Memorandum.pdf",
"RelativePath": "31497",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 14:51:14",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract modification with CTB/McGraw Hill, LLC for $1,272,192.30",
"Title": "CA20-0293",
"VendorName": "CTB/McGraw Hill, LLC",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract to exercise the 4th option year with KPMG LLP in the amount of $2,658,225.18 for auditing the District's Comprehensive Annual Financial Report (CAFR) for fiscal year 2014 was filed in the Office of the Secretary on April 2, 2014.\n\nThe Council's ten day review begins Thursday, April 3, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved Sunday, April 13, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period.",
"AttachmentPath": [
{
"Name": "CA20-0292-Introduction.pdf",
"RelativePath": "31492",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/13 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31492,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0292_Memorandum.pdf",
"RelativePath": "31492",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 14:50:46",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract to exercise the 4th Option Year with KPMG LLP for auditing the District's Comprehensive Annual Financial Report (CAFR) for fiscal year 2014",
"Title": "CA20-0292",
"VendorName": "KPMG LLP",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract with Underwood & Associates for the Broad Branch Stream Restoration and Culvert Daylight Project in the amount of $1,200,000.00 for construction services for the Department of General Services was filed in the Office of the Secretary on April 2, 2014\n\nThe Council's ten day review begins Thursday, April 3, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved Sunday, April 13, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period. ",
"AttachmentPath": [
{
"Name": "CA20-0291-Introduction.pdf",
"RelativePath": "31489",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
},
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/13 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31489,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0291_Memorandum.pdf",
"RelativePath": "31489",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 14:50:43",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract with Underwood & Associates for Restoration and Culvert Daylight Project",
"Title": "CA20-0291",
"VendorName": "Underwood & Associates ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract with DC Partners for the Revitalization of Education Projects for (\"DCPEP\") in the amount of $9,421,025.61 for Program Management Services for the DGS District of Columbia Public Schools (\"DCPS\") was filed in the Office of the Secretary on April 1, 2014. \n\nThe Council's ten day review begins Wednesday, April 2, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Saturday, April 12, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days. \n",
"AttachmentPath": [
{
"Name": "CA20-0290-Introduction.pdf",
"RelativePath": "31487",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
},
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/12 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31487,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0290_Memorandum.pdf",
"RelativePath": "31487",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 14:50:39",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract with DC Partners for the Revitalization of Education Projects for (\"DCPEP\") ",
"Title": "CA20-0290",
"VendorName": "DC Partners for the Revitalization of Education Projects for (\"DCPEP\")",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to D.C. Code 24-282(e), the Chief Financial Officer has submitted the Office of Integrity and Oversight's (OIO) \"Audit of the Inmate Welfare Fund Financial Statements for Fiscal Year Ended September 30, 2012\". Copies of the report can be reviewed in the Legislative Services Division, Room 10.",
"AttachmentPath": [
{
"Name": "CFO20-0001-Introduction.pdf",
"RelativePath": "31566",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31566,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2013/02/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "18;#Chief Financial Officer",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "CFO20-0001_Memorandum.pdf",
"RelativePath": "31566",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 13:44:38",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Audit of the Inmate Welfare Fund Financial Statements for the Fiscal Year Ended September 30, 2012",
"Title": "CFO20-0001",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0668-Introduction.pdf",
"RelativePath": "31298",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/06/11 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31298,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0668_Memorandum.pdf",
"RelativePath": "31298",
"Type": "Memorandum"
}
],
"Modified": "2014/04/17 11:11:19",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/03/07 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "District of Columbia Board of Library Trustees Neil Albert Confirmation Resolution of 2014",
"Title": "PR20-0668",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "To disapprove CA 20-62. The Council approved CA 20-62 on 4/30/13 via PR 20-222.",
"AttachmentPath": [
{
"Name": "PR20-0200-INTRODUCTION.pdf",
"RelativePath": "30290",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30290,
"Introducer": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2013/04/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0200_Memorandum.pdf",
"RelativePath": "30290",
"Type": "Memorandum"
}
],
"Modified": "2014/04/16 16:51:28",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/04/26 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PROPOSED CONTRACT WITH THRIVE HEALTH PLANS, INC., DISAPPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0200",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0463-Introduction.pdf",
"RelativePath": "30554",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30554,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0463_Memorandum.pdf",
"RelativePath": "30554",
"Type": "Memorandum"
}
],
"Modified": "2014/04/16 16:48:15",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PRIMARY ELECTION DATE EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0463",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0385-Introduction.pdf",
"RelativePath": "30476",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30476,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/07/09 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0385_Memorandum.pdf",
"RelativePath": "30476",
"Type": "Memorandum"
}
],
"Modified": "2014/04/16 16:47:25",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PRIMARY ELECTION DATE EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0385",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0571-Introduction.pdf",
"RelativePath": "30824",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/03 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30824,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/12/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0571_Memorandum.pdf",
"RelativePath": "30824",
"Type": "Memorandum"
}
],
"Modified": "2014/04/16 16:45:03",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Medical Marijuana Facility Overconcentration Emergency Declaration Resolution of 2013",
"Title": "PR20-0571",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0264",
"AdditionalInformation": "Vendor - Baker and Taylor Inc.",
"AttachmentPath": [
{
"Name": "B20-0630-Introduction.pdf",
"RelativePath": "30942",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30942,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0630_Memorandum.pdf",
"RelativePath": "30942",
"Type": "Memorandum"
}
],
"Modified": "2014/04/16 16:43:19",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "District of Columbia Public Library",
"ShortTitle": "Contract DCPL-2009-C-0004B Modification Approval and Payment Authorization Emergency Act of 2013 ",
"Title": "B20-0630",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0383",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0616-Introduction.pdf",
"RelativePath": "30936",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30936,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"IntroductionDate": "2014/01/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "6;#Congressional Review Emer. Decl. Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0616_Memorandum.pdf",
"RelativePath": "30936",
"Type": "Memorandum"
}
],
"Modified": "2014/04/16 16:36:25",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Extension of Time to Dispose of the Strand Theater Congressional Review Emergency Declaration Resolution of 2014",
"Title": "PR20-0616",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0085",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0175-INTRODUCTION.pdf",
"RelativePath": "30265",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30265,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "6;#Congressional Review Emer. Decl. Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0175_Memorandum.pdf",
"RelativePath": "30265",
"Type": "Memorandum"
}
],
"Modified": "2014/04/16 16:34:58",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "SAFETY-BASED TRAFFIC ENFORCEMENT CONGRESSIONAL REVIEW EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0175",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0212",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0165-INTRODUCTION.pdf",
"RelativePath": "30255",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30255,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/03/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0165_Memorandum.pdf",
"RelativePath": "30255",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:51:56",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HOUSING PRODUCTION TRUST FUND BOARD ROBERT H. POHLMAN CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0165",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0358",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0558-Introduction.pdf",
"RelativePath": "30811",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/19 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/01/28 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30811,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/15 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0558_Memorandum.pdf",
"RelativePath": "30811",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:47:37",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Mundo Verde Bilingual Public Charter School Revenue Bonds Project Emergency Approval Resolution of 2013",
"Title": "PR20-0558",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0336",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0537-Introduction.pdf",
"RelativePath": "30664",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30664,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0537_Memorandum.pdf",
"RelativePath": "30664",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:46:48",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Department of Corrections Central Cellblock Management Clarification Emergency Declaration Resolution of 2013",
"Title": "PR20-0537",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0195",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0339-INTRODUCTION.pdf",
"RelativePath": "30430",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/26 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30430,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/06/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0339_Memorandum.pdf",
"RelativePath": "30430",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:46:03",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "NATIONAL LAW ENFORCEMENT OFFICERS MEMORIAL FUND, INC. REVENUE BONDS PROJECT EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0339",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0154",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0331-INTRODUCTION.pdf",
"RelativePath": "30422",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/18 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30422,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/06/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0331_Memorandum.pdf",
"RelativePath": "30422",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:45:19",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "Not-for-Profit Hospital Corp.",
"ShortTitle": "CONTRACT NO. NFPHC-8 MODIFICATIONS 2-4 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0331",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0145",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0244-INTRODUCTION.pdf",
"RelativePath": "30335",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
},
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30335,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/05/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0244_Memorandum.pdf",
"RelativePath": "30335",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:44:38",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHANGE ORDERS NO. 001 AND 002 AND CHANGE DIRECTIVE NO. 002 TO CONTRACT NO. DCAM-12-M-1031J-FM APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0244",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0557-Introduction.pdf",
"RelativePath": "30810",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/19 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30810,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/11/19 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0557_Memorandum.pdf",
"RelativePath": "30810",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:41:48",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/11/29 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "SENSE OF THE COUNCIL AGAINST AMENDING THE 1910 HEIGHT ACT RESOLUTION OF 2013",
"Title": "PR20-0557",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0032",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0081-INTRODUCTION.pdf",
"RelativePath": "30171",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30171,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/02/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0081_Memorandum.pdf",
"RelativePath": "30171",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:40:52",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "DEPARTMENT OF FIRE AND EMERGENCY MEDICAL SERVICES INAUGURAL OVERTIME CLARIFICATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0081",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0239",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0542-Introduction.pdf",
"RelativePath": "30650",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30650,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/01 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0073",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0542_Memorandum.pdf",
"RelativePath": "30650",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:39:14",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Department of Corrections Central Cellblock Management Clarification Temporary Amendment Act of 2013",
"Title": "B20-0542",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0080",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0271-INTRODUCTION.pdf",
"RelativePath": "29427",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
},
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29427,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/05/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0271_Memorandum.pdf",
"RelativePath": "29427",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:37:42",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHANGE ORDERS NO. 005 THROUGH NO. 009 TO CONTRACT NO. GM-11-M-0531-FM APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0271",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0039",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0154-INTRODUCTION.pdf",
"RelativePath": "29310",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/03/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29310,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/02/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0154_Memorandum.pdf",
"RelativePath": "29310",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:36:47",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CAPTIVE EARTHQUAKE PROPERTY INSURANCE EMERGENCY AMENDMENT ACT OF 2013.",
"Title": "B20-0154",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0244",
"AdditionalInformation": "Vendor - IPS Group Inc.",
"AttachmentPath": [
{
"Name": "B20-0585-Introduction.pdf",
"RelativePath": "30734",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/03 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30734,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0585_Memorandum.pdf",
"RelativePath": "30734",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:36:03",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Modification No. 8 and Modification No. 10 to Contract No. DCKA-2010-C-0206 Approval and Payment Authorization Emergency Act of 2013",
"Title": "B20-0585",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0230",
"AdditionalInformation": "Vendor - Parkmobile USA Inc.",
"AttachmentPath": [
{
"Name": "B20-0584-Introduction.pdf",
"RelativePath": "30733",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/03 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30733,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/21 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0584_Memorandum.pdf",
"RelativePath": "30733",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:35:23",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Modification No. 9 to Contract No. DCKA-2011-C-0026 Approval and Payment Authorization Emergency Act of 2013",
"Title": "B20-0584",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0215",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0541-Introduction.pdf",
"RelativePath": "30649",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30649,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0541_Memorandum.pdf",
"RelativePath": "30649",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:34:40",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Department of Corrections Central Cellblock Management Clarification Emergency Amendment Act of 2013",
"Title": "B20-0541",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0217",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0553-Introduction.pdf",
"RelativePath": "30688",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30688,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"IntroductionDate": "2013/11/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0553_Memorandum.pdf",
"RelativePath": "30688",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:33:55",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Department of Health Grant Making Authority for Clinical Nutritional Home Services Emergency Amendment Act of 2013",
"Title": "B20-0553",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0264-INTRODUCTION.pdf",
"RelativePath": "29420",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 223,
"Name": "Jim Graham"
}
],
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29420,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/04/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0264_Memorandum.pdf",
"RelativePath": "29420",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:32:55",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/05/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "VOTER REGISTRATION ACCESS AND MODERNIZATION AMENDMENT ACT OF 2013.",
"Title": "B20-0264",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to Section 808(a) of the District of Columbia Appropriations Act, 2013\", the attached \"FY 2014 Grant Budget Modifications of April 4, 2014\", GBM 20-97, was filed on April 14, 2014 in the Office of the Secretary. The Council's 14 calendar day review period begins Tuesday, April 15, 2014 and ends Monday, April 28, 2014. The modification will be deemed approved on Tuesday, April 29, 2014, unless a notice of disapproval is filed within the 14 days. If a notice of disapproval is filed prior to that date, the Council's review period will be extended to 30 calendar days.",
"AttachmentPath": [
{
"Name": "GBM20-0097-Introduction.pdf",
"RelativePath": "31564",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/29 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31564,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/14 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "8;#Grant Budget Modification",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "11;#Grant Budget Modification",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "GBM20-0097_Memorandum.pdf",
"RelativePath": "31564",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 15:01:35",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Grant Budget Modifications of April 4, 2014",
"Title": "GBM20-0097",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0771-Introduction.pdf",
"RelativePath": "31560",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/05/06 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31560,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0771_Memorandum.pdf",
"RelativePath": "31560",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 14:06:09",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "LIHEAP Heat and Eat Eligibility Preservation Temporary Amendment Act of 2014",
"Title": "B20-0771",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0770-Introduction.pdf",
"RelativePath": "31559",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/05/06 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31559,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0770_Memorandum.pdf",
"RelativePath": "31559",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 14:05:01",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "LIHEAP Heat and Eat Eligibility Preservation Emergency Amendment Act of 2014",
"Title": "B20-0770",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0733-Introduction.pdf",
"RelativePath": "31558",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/05/06 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31558,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0733_Memorandum.pdf",
"RelativePath": "31558",
"Type": "Memorandum"
}
],
"Modified": "2014/04/15 14:03:46",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "LIHEAP Heat and Eat Eligibility Preservation Emergency Declaration Resolution of 2014",
"Title": "PR20-0733",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0417-INTRODUCTION.pdf",
"RelativePath": "29573",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": "219",
"Name": "Muriel Bowser"
},
{
"Id": "224",
"Name": "David Grosso"
},
{
"Id": "221",
"Name": "Mary M.Cheh"
},
{
"Id": "218",
"Name": "Anita Bonds"
},
{
"Id": "220",
"Name": "David Catania"
},
{
"Id": "223",
"Name": "Jim Graham"
},
{
"Id": "225",
"Name": "Kenyan Mcduffie"
}
],
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29573,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
},
{
"Id": "228",
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/07/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/14 15:08:36",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/07/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "SEXUAL ASSAULT VICTIMS\u2019 RIGHTS AMENDMENT ACT OF 2013.",
"Title": "B20-0417",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0365-INTRODUCTION.pdf",
"RelativePath": "29521",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 223,
"Name": "Jim Graham"
}
],
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/26 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29521,
"Introducer": [
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2013/06/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/14 14:56:23",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/07/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "UNDERINSURED MOTORIST CARRIER FAIRNESS AMENDMENT ACT OF 2013.",
"Title": "B20-0365",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Notice is given that the attached request to reprogram $1,653,317 of Fiscal Year 2014 Special Purpose Revenue funds budget authority from the Office of the Chief Technology Officer (OCTO) to the District of Columbia Taxicab Commission (DCTC) was filed in the Office of the Secretary on April 11, 2014. This reprogramming will allow DCTC to continue procurement activities relative to the Modern Taxi Meter System initiative as well as providing funding for management and administrative positions. \n\nThe Council's 14 day review begins Monday, April 14, 2014, and the request will be deemed approved on Wednesday, May 7, 2014, unless a notice of disapproval is filed prior to that time which would extend the review period to 30 days. The request would then be deemed approved on the 31st day of receipt unless an approval or disapproval resolution is adopted prior to that time. ",
"AttachmentPath": [
{
"Name": "REPROG20-0173-Introduction.pdf",
"RelativePath": "31552",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/05/07 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31552,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/11 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "11;#Reprogramming",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "13;#Reprogramming",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "REPROG20-0173_Memorandum.pdf",
"RelativePath": "31552",
"Type": "Memorandum"
}
],
"Modified": "2014/04/14 13:59:31",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Notice of Reprogramming Request for $1,653,317 of Special Purpose Revenue Funds Budget Authority from the Office of the Chief Technology to the District of Columbia Taxicab Commission ",
"Title": "REPROG20-0173",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Notice is given that the attached request to reprogram $1,800,000 of Capital funds budget authority and allotment from the Commission on Arts and Humanities (CAH), Department of Health (DOH), Office of the Chief Financial Officer (OCFO), Department of Transportation (DDOT), and Office of the Chief Technology Officer (OCTO) to the Department of Parks and Recreation (DPR) was filed in the Office of the Secretary on April 11, 2014. This reprogramming will enable the Department of General Services (DGS) to implement the facility renovations for DPR.\n\nThe Council's 14 day review begins Monday, April 14, 2014, and the request will be deemed approved on Wednesday, May 7, 2014, unless a notice of disapproval is filed prior to that time which would extend the review period to 30 days. The request would then be deemed approved on the 31st day of receipt unless an approval or disapproval resolution is adopted prior to that time. \n",
"AttachmentPath": [
{
"Name": "REPROG20-0172-Introduction.pdf",
"RelativePath": "31551",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/05/07 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31551,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/11 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "11;#Reprogramming",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "13;#Reprogramming",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "REPROG20-0172_Memorandum.pdf",
"RelativePath": "31551",
"Type": "Memorandum"
}
],
"Modified": "2014/04/14 13:58:27",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Notice of Reprogramming Request for $1,800,000 of Capital Funds Budget Authority and Allotment from Multiple Agencies to the Department of Parks and Recreation ",
"Title": "REPROG20-0172",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0577-Introduction.pdf",
"RelativePath": "30726",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/03 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30726,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/11/19 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0577_Memorandum.pdf",
"RelativePath": "30726",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:48:32",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/11/29 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Shiloh Way Designation Act of 2013",
"Title": "B20-0577",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0756-Introduction.pdf",
"RelativePath": "31528",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/15 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31528,
"Introducer": [
{
"Id": 223,
"Name": "Jim Graham"
}
],
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0756_Memorandum.pdf",
"RelativePath": "31528",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:47:29",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Child Development Home License Temporary Amendment Act of 2014",
"Title": "B20-0756",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0243",
"AdditionalInformation": "Vendor - Consys, Inc.",
"AttachmentPath": [
{
"Name": "B20-0524-Introduction.pdf",
"RelativePath": "30592",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30592,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0524_Memorandum.pdf",
"RelativePath": "30592",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:36:21",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "UDC",
"ShortTitle": "CONTRACT NO. GF-2011-C-0039 AND CHANGE ORDER'S NO. 4-5 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0524",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0242",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0314-INTRODUCTION.pdf",
"RelativePath": "29470",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29470,
"Introducer": [
{
"Id": 220,
"Name": "David Catania"
}
],
"IntroductionDate": "2013/06/04 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0076",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:35:01",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/06/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PARENT AND STUDENT EMPOWERMENT ACT OF 2013.",
"Title": "B20-0314",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0240",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0559-Introduction.pdf",
"RelativePath": "30694",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30694,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/11/05 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0074",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0559_Memorandum.pdf",
"RelativePath": "30694",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:34:36",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Board of Elections Nominating Petition Circulator Affidavit Temporary Amendment Act of 2013",
"Title": "B20-0559",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0238",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0561-Introduction.pdf",
"RelativePath": "30696",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30696,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/11/05 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0072",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0561_Memorandum.pdf",
"RelativePath": "30696",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:33:19",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Party Officer Elections Temporary Amendment of 2013",
"Title": "B20-0561",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0237",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0557-Introduction.pdf",
"RelativePath": "30692",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30692,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/05 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0071",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0557_Memorandum.pdf",
"RelativePath": "30692",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:32:56",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Critical Infrastructure Freedom of Information Temporary Amendment Act of 2013",
"Title": "B20-0557",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0236",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0554-Introduction.pdf",
"RelativePath": "30689",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30689,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"IntroductionDate": "2013/11/05 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0070",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0554_Memorandum.pdf",
"RelativePath": "30689",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:32:33",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Department of Health Grant Making Authority for Clinical Nutritional Home Services Temporary Amendment Act of 2013",
"Title": "B20-0554",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0235",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0545-Introduction.pdf",
"RelativePath": "30671",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30671,
"Introducer": [
{
"Id": 227,
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/11/01 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0069",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0545_Memorandum.pdf",
"RelativePath": "30671",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:32:08",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Transportation Infrastructure Improvements GARVEE Bond Financing Temporary Amendment Act of 2013",
"Title": "B20-0545",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0234",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0430-INTRODUCTION.pdf",
"RelativePath": "29586",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29586,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/16 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0068",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0430_Memorandum.pdf",
"RelativePath": "29586",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:31:42",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "TRANSPORTATION INFRASTRUCTURE MITIGATION TEMPORARY AMENDMENT ACT OF 2013.",
"Title": "B20-0430",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0233",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0280-INTRODUCTION.pdf",
"RelativePath": "29436",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29436,
"Introducer": [
{
"Id": 223,
"Name": "Jim Graham"
}
],
"IntroductionDate": "2013/05/07 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0067",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0280_Memorandum.pdf",
"RelativePath": "29436",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:31:21",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "YMCA COMMUNITY INVESTMENT INITIATIVE REAL PROPERTY TAX EXEMPTION ACT OF 2013.",
"Title": "B20-0280",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0232",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0127-INTRODUCTION.pdf",
"RelativePath": "29283",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29283,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/02/07 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0066",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0127_Memorandum.pdf",
"RelativePath": "29283",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:30:55",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/02/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "PRESCRIPTION DRUG MONITORING PROGRAM ACT OF 2013.",
"Title": "B20-0127",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0231",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0587-Introduction.pdf",
"RelativePath": "30736",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/03 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30736,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/11/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "2;#Congressional Review Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0587_Memorandum.pdf",
"RelativePath": "30736",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:30:32",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Prohibition on Government Employee Engagement in Political Activity Congressional Review Emergency Amendment Act of 2013",
"Title": "B20-0587",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0255",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0348-INTRODUCTION.pdf",
"RelativePath": "29504",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/18 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29504,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 227,
"Name": "Phil Mendelson"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/06/18 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0085",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:29:27",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/06/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "TAX CLARITY EQUITY AMENDMENT ACT OF 2013.",
"Title": "B20-0348",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0254",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0311-INTRODUCTION.pdf",
"RelativePath": "29467",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29467,
"Introducer": [
{
"Id": 220,
"Name": "David Catania"
}
],
"IntroductionDate": "2013/06/04 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0084",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:29:05",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/06/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "FOCUSED STUDENT ACHIEVEMENT ACT OF 2013.",
"Title": "B20-0311",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0253",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0235-INTRODUCTION.pdf",
"RelativePath": "29391",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29391,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/04/09 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0083",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:28:32",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "FUNERAL AND MEMORIAL SERVICE LEAVE AMENDMENT ACT OF 2013.",
"Title": "B20-0235",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0252",
"AdditionalInformation": "Legislation title was changed by the Committee on Business, Consumer and Regulatory Affairs on 09/25/13 at mark-up.",
"AttachmentPath": [
{
"Name": "B20-0234-INTRODUCTION.pdf",
"RelativePath": "29390",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29390,
"Introducer": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/04/09 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0082",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:28:11",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "MANUFACTURER SUNDAY TASTING PERMIT AMENDMENT ACT OF 2013 (now known as \"Manufacturer Tasting Permit Act of 2013\")",
"Title": "B20-0234",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0251",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0197-INTRODUCTION.pdf",
"RelativePath": "29353",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29353,
"Introducer": [
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/03/27 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0081",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0197_Memorandum.pdf",
"RelativePath": "29353",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:27:50",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "MANUFACTURERS SUNDAY SALE AMENDMENT ACT OF 2013.",
"Title": "B20-0197",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0250",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0117-INTRODUCTION.pdf",
"RelativePath": "29273",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 221,
"Name": "Mary M.Cheh"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29273,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan Mcduffie"
}
],
"IntroductionDate": "2013/02/05 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0080",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:27:24",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/02/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PROHIBITION ON GOVERNMENT EMPLOYEE ENGAGEMENT IN POLITICAL ACTIVITY AMENDMENT ACT OF 2013.",
"Title": "B20-0117",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0249",
"AdditionalInformation": "AKA \"Campaign Finance Reform and Transparency Amendment Act of 2013.\" The legislation title was changed by the Committee on Government Operations at mark-up. Related bills: B20-3, B20-25, B20-28, B20-37, B20-42 and B20-43",
"AttachmentPath": [
{
"Name": "B20-0076-INTRODUCTION.pdf",
"RelativePath": "29232",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 220,
"Name": "David Catania"
}
],
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/22 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29232,
"Introducer": [
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/01/22 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0079",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0076_Memorandum.pdf",
"RelativePath": "29232",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:27:01",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/02/01 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "CAMPAIGN FINANCE TRAINING AMENDMENT ACT OF 2013 (aka Campaign Finance Reform and Transparency Amendment Act of 2013)",
"Title": "B20-0076",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0248",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0029-INTRODUCTION.pdf",
"RelativePath": "29185",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 221,
"Name": "Mary M.Cheh"
},
{
"Id": 227,
"Name": "Phil Pmendelson"
}
],
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/08 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29185,
"Introducer": [
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/01/08 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0078",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:26:36",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/01/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "DISTRICT OF COLUMBIA DISTILLERY PUB LICENSURE ACT OF 2013.",
"Title": "B20-0029",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0247",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0562-Introduction.pdf",
"RelativePath": "30697",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30697,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/05 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0077",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0562_Memorandum.pdf",
"RelativePath": "30697",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:26:07",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Controlled Substance, Alcohol Testing, Criminal Background Check and Background Investigation Temporary Amendment Act of 2013",
"Title": "B20-0562",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0246",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0592-Introduction.pdf",
"RelativePath": "30741",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30741,
"Introducer": [
{
"Id": 220,
"Name": "David Catania"
}
],
"IntroductionDate": "2013/12/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0592_Memorandum.pdf",
"RelativePath": "30741",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:25:40",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Tax Exemption for Teacher Awards Emergency Act of 2013",
"Title": "B20-0592",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0245",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0588-Introduction.pdf",
"RelativePath": "30737",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/03 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30737,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/11/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "2;#Congressional Review Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0588_Memorandum.pdf",
"RelativePath": "30737",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:25:18",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Board of Ethics and Government Accountability Congressional Review Emergency Amendment Act of 2013",
"Title": "B20-0588",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0394",
"AdditionalInformation": "Vendor - Wisconsin Avenue Psychiatric Center",
"AttachmentPath": [
{
"Name": "PR20-0607-Introduction.pdf",
"RelativePath": "30927",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 197,
"Name": "Health"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30927,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0607_Memorandum.pdf",
"RelativePath": "30927",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:24:39",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "Not-for-Profit Hospital Corp.",
"ShortTitle": "Contract No. NFPHC-151 Modifications 4-7 Approval and Payment Authorization Emergency Declaration Resolution of 2013",
"Title": "PR20-0607",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0393",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0438-INTRODUCTION.pdf",
"RelativePath": "30529",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/01/08 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30529,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0438_Memorandum.pdf",
"RelativePath": "30529",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:24:19",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/09/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "RENTAL HOUSING COMMISSION CLAUDIA MCKOIN CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0438",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0392",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0536-Introduction.pdf",
"RelativePath": "30663",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/02/13 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30663,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/31 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0536_Memorandum.pdf",
"RelativePath": "30663",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:23:58",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/11/08 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Alcoholic Beverage Control Board James N. Short Confirmation Resolution of 2013",
"Title": "PR20-0536",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0391",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0535-Introduction.pdf",
"RelativePath": "30662",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/02/13 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30662,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/31 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0535_Memorandum.pdf",
"RelativePath": "30662",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:23:38",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/11/08 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Alcoholic Beverage Control Board Victor H. Rodriguez Confirmation Resolution of 2013",
"Title": "PR20-0535",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Notice is given that the attached request to reprogram $450,000 of Master Equipment Lease Capital funds budget authority and allotment from the Child and family Services Agency (CFSA) to the Office of the Chief Technology Officer (OCTO) was filed in the Office of the Secretary on April 10, 2014. This reprogramming is necessary to protect upgrade network infrastructure in the John A. Wilson Building.\n\nThe Council's 14 day review begins Friday, April 11, 2014, and the request will be deemed approved on Sunday, May 4, 2014, unless a notice of disapproval is filed prior to that time which would extend the review period to 30 days. The request would then be deemed approved on the 31st day of receipt unless an approval or disapproval resolution is adopted prior to that time. \n",
"AttachmentPath": [
{
"Name": "REPROG20-0170-Introduction.pdf",
"RelativePath": "31549",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/05/04 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31549,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "11;#Reprogramming",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "13;#Reprogramming",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "REPROG20-0170_Memorandum.pdf",
"RelativePath": "31549",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:23:24",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Notice of Reprogramming Request for $450,000 of FY 2014 Master Equipment Lease Capital Budget to the Office of the Chief Technology Officer ",
"Title": "REPROG20-0170",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0390",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0516-INTRODUCTION.pdf",
"RelativePath": "30638",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/02/13 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30638,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0516_Memorandum.pdf",
"RelativePath": "30638",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:23:18",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/11/01 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "COMMISSION ON FASHION ARTS AND EVENTS MARCUS A. WILLIAMS CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0516",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0389",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0515-INTRODUCTION.pdf",
"RelativePath": "30637",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/02/13 00:00:00",
"FromOCR": true,
"HasCount": true,
"ID": 30637,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0515_Memorandum.pdf",
"RelativePath": "30637",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:22:57",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/11/01 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "COMMISSION ON FASHION ARTS AND EVENTS JENNIFER M. FISHER CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0515",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0388",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0286-INTRODUCTION.pdf",
"RelativePath": "30377",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/22 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30377,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/05/15 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0286_Memorandum.pdf",
"RelativePath": "30377",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:22:33",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/24 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA OCCUPATIONAL SAFETY AND HEALTH BOARD EARL WOODLAND CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0286",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Notice is given that the attached request to reprogram $561,995 of Fiscal Year 2014 Local funds budget authority within the Office of the Chief Financial Officer (OCFO) was filed in the Office of the Secretary on April 10, 2014. This reprogramming aligns the budget with anticipated expenditures.\n\nThe Council's 14 day review begins Friday, April 11, 2014, and the request will be deemed approved on Sunday, May 4, 2014, unless a notice of disapproval is filed prior to that time which would extend the review period to 30 days. The request would then be deemed approved on the 31st day of receipt unless an approval or disapproval resolution is adopted prior to that time. \n",
"AttachmentPath": [
{
"Name": "REPROG20-0171-Introduction.pdf",
"RelativePath": "31550",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/05/04 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31550,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "11;#Reprogramming",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "13;#Reprogramming",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "REPROG20-0171_Memorandum.pdf",
"RelativePath": "31550",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:22:31",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Notice of Reprogramming Request for $561,995 of Local Funds Budget Authority within the Office of the Chief Financial Officer ",
"Title": "REPROG20-0171",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0387",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0285-INTRODUCTION.pdf",
"RelativePath": "30376",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/22 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30376,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/05/15 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0285_Memorandum.pdf",
"RelativePath": "30376",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:21:54",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/24 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA OCCUPATIONAL SAFETY AND HEALTH BOARD ARYAN RODRIGUEZ BOCQUET CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0285",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0386",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0284-INTRODUCTION.pdf",
"RelativePath": "30375",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/22 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30375,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/05/15 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0284_Memorandum.pdf",
"RelativePath": "30375",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:21:31",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/24 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA OCCUPATIONAL SAFETY AND HEALTH BOARD MICHAEL KIRKPATRICK CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0284",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0385",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0282-INTRODUCTION.pdf",
"RelativePath": "30373",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/22 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30373,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/05/15 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0282_Memorandum.pdf",
"RelativePath": "30373",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:21:11",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/24 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA OCCUPATIONAL SAFETY AND HEALTH BOARD KATHLEEN MCKIRCHY CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0282",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0384",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0611-Introduction.pdf",
"RelativePath": "30931",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30931,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2014/01/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "6;#Congressional Review Emer. Decl. Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0611_Memorandum.pdf",
"RelativePath": "30931",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:20:31",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Transportation Infrastructure Mitigation Congressional Review Emergency Declaration Resolution of 2014",
"Title": "PR20-0611",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0369",
"AdditionalInformation": " (PR 20-581) \nExtends the Council's review period for (Reprog.20-132) to 30 days starting on 11/26/13 deemed approved on 1/4/14, unless the Council adopts a disapproval or approval resolution prior to that time\n ",
"AttachmentPath": [
{
"Name": "PR20-0581-Introduction.pdf",
"RelativePath": "30899",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/17 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/01/04 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30899,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/06 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0581_Memorandum.pdf",
"RelativePath": "30899",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:19:06",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/12/13 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Reprogramming No.20-132 Disapproval Resolution of 2013",
"Title": "PR20-0581",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0368",
"AdditionalInformation": " (PR 20-581) \nExtends the Council's review period for (Reprog.20-132) to 30 days starting on 11/26/13 deemed approved on 1/4/14, unless the Council adopts a disapproval or approval resolution prior to that time\n ",
"AttachmentPath": [
{
"Name": "PR20-0580-Introduction.pdf",
"RelativePath": "30898",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/17 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/01/04 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30898,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/09 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0580_Memorandum.pdf",
"RelativePath": "30898",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:18:13",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/12/13 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Reprogramming No.20-130 Disapproval Resolution of 2013",
"Title": "PR20-0580",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0367",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0551-Introduction.pdf",
"RelativePath": "30708",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 221,
"Name": "Mary M.Cheh"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30708,
"Introducer": [
{
"Id": 227,
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/11/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0551_Memorandum.pdf",
"RelativePath": "30708",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:17:51",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Fiscal Year 2015 Budget Submission Requirements Resolution of 2013",
"Title": "PR20-0551",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0366",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0448-INTRODUCTION.pdf",
"RelativePath": "30539",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/01/08 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30539,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0448_Memorandum.pdf",
"RelativePath": "30539",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:17:23",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/09/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HISTORIC PRESERVATION REVIEW BOARD MARIA CASARELLA CUNNINGHAM CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0448",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0365",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0447-INTRODUCTION.pdf",
"RelativePath": "30538",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/01/08 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30538,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0447_Memorandum.pdf",
"RelativePath": "30538",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:16:59",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/09/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HISTORIC PRESERVATION REVIEW BOARD NANCY L. PRYOR METZGER CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0447",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0364",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0446-INTRODUCTION.pdf",
"RelativePath": "30537",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/01/08 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30537,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0446_Memorandum.pdf",
"RelativePath": "30537",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:16:37",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/09/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HISTORIC PRESERVATION REVIEW BOARD DONALD GRAHAM DAVIDSON CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0446",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0263",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0614-Introduction.pdf",
"RelativePath": "30793",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30793,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"IntroductionDate": "2013/12/12 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "2;#Congressional Review Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0614_Memorandum.pdf",
"RelativePath": "30793",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:16:00",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Medical Marijuana Cultivation Center Second Congressional Review Emergency Amendment Act of 2013",
"Title": "B20-0614",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0262",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0617-Introduction.pdf",
"RelativePath": "30796",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30796,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/12/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0617_Memorandum.pdf",
"RelativePath": "30796",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:15:25",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Closing of a Public Alley in Square 858, S.O. 12-03336, Emergency Act of 2013",
"Title": "B20-0617",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0260",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0593-Introduction.pdf",
"RelativePath": "30742",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30742,
"Introducer": [
{
"Id": 220,
"Name": "David Catania"
}
],
"IntroductionDate": "2013/12/03 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0090",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0593_Memorandum.pdf",
"RelativePath": "30742",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:14:54",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Tax Exemption for Teacher Awards Temporary Act of 2013",
"Title": "B20-0593",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0259",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0480-INTRODUCTION.pdf",
"RelativePath": "29636",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"ComitteeReferral": [
{
"Id": 202,
"Name": "Workforce and Community Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29636,
"Introducer": [
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/17 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0089",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:14:29",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/09/20 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": true,
"ReReferralDate": "2013/10/15 00:00:00",
"ReReferralPublishedDate": "2013/10/18 00:00:00",
"RequestOf": null,
"ShortTitle": "EARNED SICK AND SAFE LEAVE ACT OF 2013.",
"Title": "B20-0480",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0193",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0442-Introduction.pdf",
"RelativePath": "29598",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29598,
"Introducer": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/09/16 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0054",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:12:56",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "TAX LIEN COMPENSATION AND RELIEF REPORTING TEMPORARY AMENDMENT ACT OF 2013.",
"Title": "B20-0442",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0194",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0450-Introduction.pdf",
"RelativePath": "29606",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29606,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 221,
"Name": "Mary M.Cheh"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 227,
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/09/16 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0055",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:12:34",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "DISTRICT TAX SALE TEMPORARY ACT OF 2013.",
"Title": "B20-0450",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0195",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0452-Introduction.pdf",
"RelativePath": "29608",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29608,
"Introducer": [
{
"Id": 227,
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/09/17 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0056",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:12:10",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "FISCAL YEAR 2014 BUDGET SUPPORT TECHNICAL CLARIFICATION TEMPORARY AMENDMENT ACT OF 2013.",
"Title": "B20-0452",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0196",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0456-Introduction.pdf",
"RelativePath": "29612",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29612,
"Introducer": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
}
],
"IntroductionDate": "2013/09/17 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0057",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:11:47",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "BOARD OF ETHICS AND GOVERNMENT ACCOUNTABILITY ESTABLISHMENT AND COMPREHENSIVE ETHICS REFORM TEMPORARY AMENDMENT ACT OF 2013.",
"Title": "B20-0456",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0206",
"AdditionalInformation": "Incorporated provisions from B20-30.",
"AttachmentPath": [
{
"Name": "B20-0128-INTRODUCTION.pdf",
"RelativePath": "29284",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
},
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29284,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/02/08 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0059",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0128_Memorandum.pdf",
"RelativePath": "29284",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:11:25",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/02/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "MEDICAL MARIJUANA CULTIVATION CENTER AMENDMENT ACT OF 2013.",
"Title": "B20-0128",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0207",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0134-INTRODUCTION.pdf",
"RelativePath": "29290",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29290,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/02/12 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0060",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:10:56",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/02/22 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "ELECTED ATTORNEY GENERAL IMPLEMENTATION AND LEGAL SERVICE ESTABLISHMENT AMENDMENT ACT OF 2013.",
"Title": "B20-0134",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0190",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0177-INTRODUCTION.pdf",
"RelativePath": "29333",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/03/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29333,
"Introducer": [
{
"Id": 221,
"Name": "Mary M.Cheh"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/03/05 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0051",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:09:43",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/03/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "OLDER ADULT DRIVER SAFETY AMENDMENT ACT OF 2013.",
"Title": "B20-0177",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0189",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0143-INTRODUCTION.pdf",
"RelativePath": "29299",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 223,
"Name": "Jim Graham"
}
],
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29299,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/02/19 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0050",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:09:20",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/03/04 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PERSONAL PROPERTY ROBBERY PREVENTION AMENDMENT ACT OF 2013.",
"Title": "B20-0143",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0186",
"AdditionalInformation": " Introduced in CP 19 as B19-715 ",
"AttachmentPath": [
{
"Name": "B20-0057-INTRODUCTION.pdf",
"RelativePath": "29213",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/08 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29213,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/01/08 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0047",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:08:20",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/01/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "COMMUNITY RENEWABLE ENERGY ACT OF 2013.",
"Title": "B20-0057",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0270",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0637-Introduction.pdf",
"RelativePath": "30949",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30949,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"IntroductionDate": "2014/01/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "2;#Congressional Review Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0637_Memorandum.pdf",
"RelativePath": "30949",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:06:18",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Extension of Time to Dispose of the Strand Theater Congressional Review Emergency Amendment Act of 2014",
"Title": "B20-0637",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0269",
"AdditionalInformation": "Vendor - Wisconsin Avenue Psychiatric Center",
"AttachmentPath": [
{
"Name": "B20-0629-Introduction.pdf",
"RelativePath": "30941",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 197,
"Name": "Health"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30941,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0629_Memorandum.pdf",
"RelativePath": "30941",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:05:56",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "Not-for-Profit Hospital Corp.",
"ShortTitle": "Contract No. NFPHC-151 Modifications 4-7 Approval and Payment Authorization Emergency Act of 2013",
"Title": "B20-0629",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0268",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0633-Introduction.pdf",
"RelativePath": "30945",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30945,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2014/01/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "2;#Congressional Review Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0633_Memorandum.pdf",
"RelativePath": "30945",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:05:24",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Transportation Infrastructure Mitigation Congressional Review Emergency Amendment Act of 2014",
"Title": "B20-0633",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0267",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0613-Introduction.pdf",
"RelativePath": "30792",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30792,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/12 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0093",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0613_Memorandum.pdf",
"RelativePath": "30792",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:05:03",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Microstamping Implementation Temporary Amendment Act of 2013",
"Title": "B20-0613",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0266",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0298-INTRODUCTION.pdf",
"RelativePath": "29454",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29454,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/05/31 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0092",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:04:42",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/06/07 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CLOSING OF A PUBLIC ALLEY IN SQUARE 5452, S.O. 12-03541, ACT OF 2013.",
"Title": "B20-0298",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0265",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0459-Introduction.pdf",
"RelativePath": "29615",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29615,
"Introducer": [
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2013/09/17 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0091",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:04:14",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/09/20 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "MINIMUM WAGE AMENDMENT ACT OF 2013",
"Title": "B20-0459",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0272",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0364-INTRODUCTION.pdf",
"RelativePath": "29520",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/26 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29520,
"Introducer": [
{
"Id": 223,
"Name": "Jim Graham"
}
],
"IntroductionDate": "2013/06/26 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0095",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 18:03:07",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/07/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PUBLIC CHARTER SCHOOL HISTORIC PRESERVATION AMENDMENT ACT OF 2013.",
"Title": "B20-0364",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0271",
"AdditionalInformation": "aka PROCUREMENT PRACTICES REFORM EXEMPTION AMENDMENT ACT OF 2013. Incorporated B20-196",
"AttachmentPath": [
{
"Name": "B20-0152-INTRODUCTION.pdf",
"RelativePath": "29308",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/03/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29308,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/02/27 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0094",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0152_Memorandum.pdf",
"RelativePath": "29308",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:02:45",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/03/08 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "PERMANENT SUPPORTIVE HOUSING APPLICATION STREAMLINING AMENDMENT ACT OF 2013 (aka \"PROCUREMENT PRACTICES REFORM EXEMPTION AMENDMENT ACT OF 2013\")",
"Title": "B20-0152",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0157",
"AdditionalInformation": "See \"Other Documents\" Tab for Referral Memo for information about Committee referrals.",
"AttachmentPath": [
{
"Name": "B20-0199-INTRODUCTION.pdf",
"RelativePath": "29355",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29355,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/03/28 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0061",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0199_Memorandum.pdf",
"RelativePath": "29355",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:02:16",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "FISCAL YEAR 2014 BUDGET SUPPORT ACT OF 2013.",
"Title": "B20-0199",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0422",
"AdditionalInformation": "Vendor - General Service Inc.",
"AttachmentPath": [
{
"Name": "PR20-0632-Introduction.pdf",
"RelativePath": "31147",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31147,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/29 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0632_Memorandum.pdf",
"RelativePath": "31147",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:01:14",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Modification to Contract CW23183 Approval and Payment Authorization Emergency Declaration Resolution of 2014",
"Title": "PR20-0632",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0421",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0627-Introduction.pdf",
"RelativePath": "31141",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31141,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0627_Memorandum.pdf",
"RelativePath": "31141",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:00:53",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Kenilworth Section of the Anacostia Riverwalk Trail Contract Emergency Approval Resolution of 2014",
"Title": "PR20-0627",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0420",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0626-Introduction.pdf",
"RelativePath": "31140",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31140,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0626_Memorandum.pdf",
"RelativePath": "31140",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:00:31",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Kenilworth Section of the Anacostia Riverwalk Trail Contract Approval Emergency Declaration Resolution of 2014",
"Title": "PR20-0626",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0419",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0637-Introduction.pdf",
"RelativePath": "31163",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31163,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0637_Memorandum.pdf",
"RelativePath": "31163",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 18:00:11",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Closing of a Public Alley in Square 150, S.O. 13-10218, Emergency Declaration Resolution of 2014",
"Title": "PR20-0637",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0418",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0635-Introduction.pdf",
"RelativePath": "31161",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/02/04 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31161,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/29 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0635_Memorandum.pdf",
"RelativePath": "31161",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:59:50",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Washington Convention and Sports Authority",
"ShortTitle": "Destination DC Marketing Services Contract Emergency Approval Resolution of 2014",
"Title": "PR20-0635",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0417",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0634-Introduction.pdf",
"RelativePath": "31160",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/02/04 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31160,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/29 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0634_Memorandum.pdf",
"RelativePath": "31160",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:59:28",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Washington Convention and Sports Authority",
"ShortTitle": "Destination DC Marketing Services Contract Emergency Declaration Resolution of 2014",
"Title": "PR20-0634",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0416",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0649-Introduction.pdf",
"RelativePath": "31239",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31239,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0649_Memorandum.pdf",
"RelativePath": "31239",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:59:06",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Vending Regulations Emergency Declaration Resolution of 2014",
"Title": "PR20-0649",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0415",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0648-Introduction.pdf",
"RelativePath": "31238",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31238,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0648_Memorandum.pdf",
"RelativePath": "31238",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:58:46",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Classroom Animal for Educational Purposes Clarification Emergency Declaration Resolution of 2014",
"Title": "PR20-0648",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0414",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0633-Introduction.pdf",
"RelativePath": "31148",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31148,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/29 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0633_Memorandum.pdf",
"RelativePath": "31148",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:58:27",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Procurement Practices Reform Exemption Emergency Declaration Resolution of 2014",
"Title": "PR20-0633",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0413",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0574-Introduction.pdf",
"RelativePath": "30892",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/03 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30892,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0574_Memorandum.pdf",
"RelativePath": "30892",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:58:07",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/12/06 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Code of Official Conduct Amendment Resolution of 2013",
"Title": "PR20-0574",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0412",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0538-Introduction.pdf",
"RelativePath": "30665",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/02/14 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30665,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0538_Memorandum.pdf",
"RelativePath": "30665",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:57:48",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/11/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "State Superintendent of Education Jesus Aguirre Confirmation Resolution of 2013",
"Title": "PR20-0538",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0411",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0508-INTRODUCTION.pdf",
"RelativePath": "30630",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/02/13 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30630,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0508_Memorandum.pdf",
"RelativePath": "30630",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:57:27",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/10/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BOARD OF LIBRARY TRUSTEES DONALD F. RICHARDSON CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0508",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0410",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0507-INTRODUCTION.pdf",
"RelativePath": "30629",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/02/13 00:00:00",
"FromOCR": true,
"HasCount": true,
"ID": 30629,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0507_Memorandum.pdf",
"RelativePath": "30629",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:57:05",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/10/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BOARD OF LIBRARY TRUSTEES BRENDA LEE RICHARDSON CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0507",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0409",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0604-Introduction.pdf",
"RelativePath": "30922",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/03/26 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30922,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/16 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0604_Memorandum.pdf",
"RelativePath": "30922",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:56:46",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/12/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Office of Employee Appeals Patricia Hobson Wilson Confirmation Resolution of 2013",
"Title": "PR20-0604",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0405",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0645-Introduction.pdf",
"RelativePath": "31235",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31235,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "6;#Congressional Review Emer. Decl. Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0645_Memorandum.pdf",
"RelativePath": "31235",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:55:19",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Controlled Substance, Alcohol Testing, Criminal Background Check and Background Investigation Congressional Review Emergency Declaration Resolution of 2014",
"Title": "PR20-0645",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0404",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0644-Introduction.pdf",
"RelativePath": "31234",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31234,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "6;#Congressional Review Emer. Decl. Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0644_Memorandum.pdf",
"RelativePath": "31234",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:54:53",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Department of Corrections Central Cellblock Management Clarification Congressional Review Emergency Declaration Resolution of 2014",
"Title": "PR20-0644",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0403",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0636-Introduction.pdf",
"RelativePath": "31162",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31162,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
}
],
"IntroductionDate": "2014/01/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "6;#Congressional Review Emer. Decl. Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0636_Memorandum.pdf",
"RelativePath": "31162",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:54:34",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Cost-of-Living Adjustment Personal Income Tax Standard Deduction and Exemption Technical Clarification Congressional Review Emergency Declaration Resolution of 2014",
"Title": "PR20-0636",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0402",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0643-Introduction.pdf",
"RelativePath": "31233",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31233,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/02/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "6;#Congressional Review Emer. Decl. Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0643_Memorandum.pdf",
"RelativePath": "31233",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:54:14",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Board of Elections Nominating Petition Circulator Affidavit Congressional Review Emergency Declaration Resolution of 2014",
"Title": "PR20-0643",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0401",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0642-Introduction.pdf",
"RelativePath": "31232",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31232,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/02/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "6;#Congressional Review Emer. Decl. Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0642_Memorandum.pdf",
"RelativePath": "31232",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:53:26",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Party Officer Elections Congressional Review Emergency Declaration Resolution of 2014",
"Title": "PR20-0642",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0400",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0641-Introduction.pdf",
"RelativePath": "31231",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31231,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/02/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "6;#Congressional Review Emer. Decl. Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0641_Memorandum.pdf",
"RelativePath": "31231",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:53:04",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Critical Infrastructure Freedom of Information Congressional Review Emergency Declaration Resolution of 2014",
"Title": "PR20-0641",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0399",
"AdditionalInformation": "Vendor - Novec Energy Solutions Inc.",
"AttachmentPath": [
{
"Name": "PR20-0613-Introduction.pdf",
"RelativePath": "30933",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30933,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0613_Memorandum.pdf",
"RelativePath": "30933",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:52:45",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed Multiyear Contract No. DCAM-14-NC-0085 Emergency Approval Resolution of 2014",
"Title": "PR20-0613",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0398",
"AdditionalInformation": "Vendor - Novec Energy Solutions Inc.",
"AttachmentPath": [
{
"Name": "PR20-0612-Introduction.pdf",
"RelativePath": "30932",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30932,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0612_Memorandum.pdf",
"RelativePath": "30932",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:51:59",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed Multiyear Contract No. DCAM-14-NC-0085 Approval Emergency Declaration Resolution of 2014",
"Title": "PR20-0612",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0274",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0666-Introduction.pdf",
"RelativePath": "31198",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31198,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0666_Memorandum.pdf",
"RelativePath": "31198",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:51:34",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Classroom Animal for Educational Purposes Clarification Emergency Amendment Act of 2014",
"Title": "B20-0666",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0273",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0153-INTRODUCTION.pdf",
"RelativePath": "29309",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/03/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29309,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/02/28 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0096",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 17:51:06",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/03/08 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "OMNIBUS HEALTH REGULATION AMENDMENT ACT OF 2013.",
"Title": "B20-0153",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0221",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0499-Introduction.pdf",
"RelativePath": "29655",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29655,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"IntroductionDate": "2013/10/01 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0065",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 17:49:25",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "EXTENSION OF TIME TO DISPOSE OF THE STRAND THEATER TEMPORARY AMENDMENT ACT OF 2013.",
"Title": "B20-0499",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0220",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0232-INTRODUCTION.pdf",
"RelativePath": "29388",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29388,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 222,
"Name": "Jack Evans"
}
],
"IntroductionDate": "2013/04/09 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0064",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 17:48:56",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "TRAUMA TECHNOLOGISTS AMENDMENT ACT OF 2013.",
"Title": "B20-0232",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0219",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0168-INTRODUCTION.pdf",
"RelativePath": "29324",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 218,
"Name": "Anita Bonds"
}
],
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/03/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29324,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2013/03/05 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0063",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0168_Memorandum.pdf",
"RelativePath": "29324",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:48:33",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/03/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "COTTAGE FOOD ACT OF 2013.",
"Title": "B20-0168",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0211",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0275-INTRODUCTION.pdf",
"RelativePath": "29431",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29431,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/05/02 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0062",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 17:47:11",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA DRIVERS SAFETY AMENDMENT ACT OF 2013.",
"Title": "B20-0275",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0287",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0663-Introduction.pdf",
"RelativePath": "31195",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31195,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/02/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "2;#Congressional Review Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0663_Memorandum.pdf",
"RelativePath": "31195",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:46:15",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Board of Elections Nominating Petition Circulator Affidavit Congressional Review Emergency Amendment Act of 2014",
"Title": "B20-0663",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0286",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0662-Introduction.pdf",
"RelativePath": "31194",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31194,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/02/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "2;#Congressional Review Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0662_Memorandum.pdf",
"RelativePath": "31194",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:45:50",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Party Officer Elections Congressional Review Emergency Amendment Act of 2014",
"Title": "B20-0662",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0285",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0661-Introduction.pdf",
"RelativePath": "31193",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31193,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/02/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "2;#Congressional Review Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0661_Memorandum.pdf",
"RelativePath": "31193",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:45:24",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Critical Infrastructure Freedom of Information Congressional Review Emergency Amendment Act of 2014",
"Title": "B20-0661",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0284",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0658-Introduction.pdf",
"RelativePath": "31152",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31152,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0658_Memorandum.pdf",
"RelativePath": "31152",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:45:02",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Closing of a Public Alley in Square 150, S.O. 13-10218, Emergency Act of 2014",
"Title": "B20-0658",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0283",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0657-Introduction.pdf",
"RelativePath": "31151",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31151,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
}
],
"IntroductionDate": "2014/01/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "2;#Congressional Review Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0657_Memorandum.pdf",
"RelativePath": "31151",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:44:41",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Cost-of-Living Adjustment Personal Income Tax Standard Deduction and Exemption Technical Clarification Congressional Review Emergency Act of 2014",
"Title": "B20-0657",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0282",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0656-Introduction.pdf",
"RelativePath": "31150",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31150,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/29 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0656_Memorandum.pdf",
"RelativePath": "31150",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:44:21",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Procurement Practices Reform Exemption Emergency Amendment Act of 2014",
"Title": "B20-0656",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0281",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0525-Introduction.pdf",
"RelativePath": "30593",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30593,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 70.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0525_Memorandum.pdf",
"RelativePath": "30593",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:43:56",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "ANNIE'S WAY DESIGNATION ACT OF 2013.",
"Title": "B20-0525",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0280",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0439-Introduction.pdf",
"RelativePath": "29595",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29595,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/16 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 70.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0439_Memorandum.pdf",
"RelativePath": "29595",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:43:33",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/09/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CLOSING OF A PUBLIC ALLEY IN SQUARE 150, S.O. 13-10218, ACT OF 2013.",
"Title": "B20-0439",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0279",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0343-INTRODUCTION.pdf",
"RelativePath": "29499",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/18 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29499,
"Introducer": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/06/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 70.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 17:42:44",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/06/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "EXPEDITED PARTNER THERAPY ACT OF 2013.",
"Title": "B20-0343",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0278",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0668-Introduction.pdf",
"RelativePath": "31200",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31200,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0668_Memorandum.pdf",
"RelativePath": "31200",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:42:21",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Vending Regulations Emergency Amendment Act of 2014",
"Title": "B20-0668",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0277",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0665-Introduction.pdf",
"RelativePath": "31197",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31197,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "2;#Congressional Review Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0665_Memorandum.pdf",
"RelativePath": "31197",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:41:58",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Controlled Substance, Alcohol Testing, Criminal Background Check and Background Investigation Congressional Review Emergency Amendment Act of 2014",
"Title": "B20-0665",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0276",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0664-Introduction.pdf",
"RelativePath": "31196",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31196,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "2;#Congressional Review Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0664_Memorandum.pdf",
"RelativePath": "31196",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:41:38",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Department of Corrections Central Cellblock Management Clarification Congressional Review Emergency Amendment Act of 2014",
"Title": "B20-0664",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0275",
"AdditionalInformation": "Vendor - General Service Inc.",
"AttachmentPath": [
{
"Name": "B20-0655-Introduction.pdf",
"RelativePath": "31149",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31149,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/29 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0655_Memorandum.pdf",
"RelativePath": "31149",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:41:10",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Modification to Contract CW23183 Approval and Payment Authorization Emergency Act of 2014",
"Title": "B20-0655",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0290",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0387-INTRODUCTION.pdf",
"RelativePath": "29543",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
},
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29543,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/07/09 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 70.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0387_Memorandum.pdf",
"RelativePath": "29543",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:40:27",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/07/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "ELECTRIC COMPANY INFRASTRUCTURE IMPROVEMENT FINANCING ACT OF 2013.",
"Title": "B20-0387",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0289",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0346-INTRODUCTION.pdf",
"RelativePath": "29502",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 217,
"Name": "Marion Barry"
}
],
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/18 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29502,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2013/06/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 70.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0346_Memorandum.pdf",
"RelativePath": "29502",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:40:06",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/06/28 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PUBLIC SERVICE COMMISSION AND PEOPLE'S COUNSEL TERMS OF SERVICE HARMONIZATION AMENDMENT ACT OF 2013.",
"Title": "B20-0346",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0288",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0051-INTRODUCTION.pdf",
"RelativePath": "29207",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
},
{
"Id": 227,
"Name": "Phil Pmendelson"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"ComitteeReferral": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/08 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29207,
"Introducer": [
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 221,
"Name": "Mary M.Cheh"
}
],
"IntroductionDate": "2013/01/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 70.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 17:39:40",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/01/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "LGBTQ HOMELESS YOUTH REFORM ACT OF 2013.",
"Title": "B20-0051",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0438",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0672-Introduction.pdf",
"RelativePath": "31304",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31304,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0672_Memorandum.pdf",
"RelativePath": "31304",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:38:58",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Driver Safety Clarification Emergency Declaration Resolution of 2014",
"Title": "PR20-0672",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0437",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0679-Introduction.pdf",
"RelativePath": "31328",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31328,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0679_Memorandum.pdf",
"RelativePath": "31328",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:38:35",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Tobacco Product Manufacturer Reserve Fund Emergency Declaration Resolution of 2014",
"Title": "PR20-0679",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0436",
"AdditionalInformation": "Vendor - OST Inc.",
"AttachmentPath": [
{
"Name": "PR20-0638-Introduction.pdf",
"RelativePath": "31164",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31164,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/31 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0638_Memorandum.pdf",
"RelativePath": "31164",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:38:02",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Modification No. M0020 to Contract Number DCTO-2008-C-0135 Approval and Payment Authorization Emergency Declaration Resolution of 2014",
"Title": "PR20-0638",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0435",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0677-Introduction.pdf",
"RelativePath": "31324",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31324,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0677_Memorandum.pdf",
"RelativePath": "31324",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:37:39",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Department of Parks and Recreation Fee-based Use Permit Authority Clarification Emergency Declaration Resolution of 2014",
"Title": "PR20-0677",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0434",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0676-Introduction.pdf",
"RelativePath": "31321",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31321,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0676_Memorandum.pdf",
"RelativePath": "31321",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:37:12",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Transportation Infrastructure Mitigation Clarification Emergency Declaration Resolution of 2014",
"Title": "PR20-0676",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0433",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0675-Introduction.pdf",
"RelativePath": "31318",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31318,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0675_Memorandum.pdf",
"RelativePath": "31318",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:36:48",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Kelsey Gardens Redevelopment Emergency Declaration Resolution of 2014",
"Title": "PR20-0675",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0432",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0674-Introduction.pdf",
"RelativePath": "31316",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31316,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0674_Memorandum.pdf",
"RelativePath": "31316",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:36:26",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Advisory Neighborhood Commission 5C Allotments Authorization Emergency Declaration Resolution of 2014",
"Title": "PR20-0674",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0431",
"AdditionalInformation": "Vendor - KPMG",
"AttachmentPath": [
{
"Name": "PR20-0671-Introduction.pdf",
"RelativePath": "31302",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31302,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0671_Memorandum.pdf",
"RelativePath": "31302",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:36:05",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Chief Financial Officer",
"ShortTitle": "Contract No. CFOPD-11-C-026 Approval and Payment Authorization Emergency Declaration Resolution of 2014",
"Title": "PR20-0671",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0430",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0657-Introduction.pdf",
"RelativePath": "31247",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 220,
"Name": "David Catania"
}
],
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31247,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2014/02/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0657_Memorandum.pdf",
"RelativePath": "31247",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:35:42",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/02/21 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Sense of the Council in Support of DC Water's Long Term Control Plan Modification to include Green Infrastructure Resolution of 2014",
"Title": "PR20-0657",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0429",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0651-Introduction.pdf",
"RelativePath": "31241",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31241,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0651_Memorandum.pdf",
"RelativePath": "31241",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:35:17",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/02/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Sense of the Council in Support of a Prohibition on Fracking in the George Washington Forest Resolution of 2014",
"Title": "PR20-0651",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0428",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0678-Introduction.pdf",
"RelativePath": "31327",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31327,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0678_Memorandum.pdf",
"RelativePath": "31327",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:34:56",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/03/07 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Budget Autonomy Litigation Authorization Resolution of 2014",
"Title": "PR20-0678",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0427",
"AdditionalInformation": "RSI Solutions, Inc.",
"AttachmentPath": [
{
"Name": "PR20-0658-Introduction.pdf",
"RelativePath": "31282",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31282,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/11 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0658_Memorandum.pdf",
"RelativePath": "31282",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:34:31",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Chief Financial Officer",
"ShortTitle": "Contract No. CFOPD-08-C-048 Extension Approval and Payment Authorization Emergency Declaration Resolution of 2014",
"Title": "PR20-0658",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0426",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0567-Introduction.pdf",
"RelativePath": "30820",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/03 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/03/14 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30820,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/22 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0567_Memorandum.pdf",
"RelativePath": "30820",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:33:57",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/12/06 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Office of Human Rights Monica Palacio Confirmation Resolution of 2013",
"Title": "PR20-0567",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0425",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0606-Introduction.pdf",
"RelativePath": "30924",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/03/26 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30924,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0606_Memorandum.pdf",
"RelativePath": "30924",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:32:58",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/12/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Board of Trustees of the University of the District of Columbia Joshua S. Wyner Confirmation Resolution of 2013",
"Title": "PR20-0606",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0424",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0605-Introduction.pdf",
"RelativePath": "30923",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/03/26 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30923,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0605_Memorandum.pdf",
"RelativePath": "30923",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:32:35",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/12/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Board of Trustees of the University of the District of Columbia Dr. Anthony C. Tardd Confirmation Resolution of 2013",
"Title": "PR20-0605",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0291",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0482-INTRODUCTION.pdf",
"RelativePath": "29638",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29638,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/09/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 70.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 17:31:48",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/09/20 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "FISCAL YEAR 2014 BUDGET SUPPORT TECHNICAL CLARIFICATION ACT OF 2013.",
"Title": "B20-0482",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0294",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0704-Introduction.pdf",
"RelativePath": "31329",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31329,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0704_Memorandum.pdf",
"RelativePath": "31329",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:30:57",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Tobacco Product Manufacturer Reserve Fund Emergency Amendment Act of 2014",
"Title": "B20-0704",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0293",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0692-Introduction.pdf",
"RelativePath": "31310",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31310,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0692_Memorandum.pdf",
"RelativePath": "31310",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:30:35",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Driver Safety Clarification Emergency Amendment Act of 2014",
"Title": "B20-0692",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0292",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0669-Introduction.pdf",
"RelativePath": "31201",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31201,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0669_Memorandum.pdf",
"RelativePath": "31201",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:30:10",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Vending Regulations Temporary Amendment Act of 2014",
"Title": "B20-0669",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0300",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0667-Introduction.pdf",
"RelativePath": "31199",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31199,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2014/02/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 70.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0667_Memorandum.pdf",
"RelativePath": "31199",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:28:49",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Classroom Animal for Educational Purposes Clarification Temporary Amendment of 2014",
"Title": "B20-0667",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0299",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0702-Introduction.pdf",
"RelativePath": "31325",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31325,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0702_Memorandum.pdf",
"RelativePath": "31325",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:27:43",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Department of Parks and Recreation Fee-based Use Permit Authority Clarification Emergency Act of 2014",
"Title": "B20-0702",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0298",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0700-Introduction.pdf",
"RelativePath": "31322",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31322,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0700_Memorandum.pdf",
"RelativePath": "31322",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:26:32",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Transportation Infrastructure Mitigation Clarification Emergency Act of 2014",
"Title": "B20-0700",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0297",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0697-Introduction.pdf",
"RelativePath": "31317",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31317,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0697_Memorandum.pdf",
"RelativePath": "31317",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:25:23",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Advisory Neighborhood Commission 5C Allotments Authorization Emergency Amendment Act of 2014",
"Title": "B20-0697",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0296",
"AdditionalInformation": "RSI Solutions, Inc.",
"AttachmentPath": [
{
"Name": "B20-0686-Introduction.pdf",
"RelativePath": "31283",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31283,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/11 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0686_Memorandum.pdf",
"RelativePath": "31283",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:24:23",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Chief Financial Officer",
"ShortTitle": "Contract No. CFOPD-08-C-048 Extension Approval and Payment Authorization Emergency Act of 2014",
"Title": "B20-0686",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0295",
"AdditionalInformation": "Vendor - OST Inc.",
"AttachmentPath": [
{
"Name": "B20-0659-Introduction.pdf",
"RelativePath": "31158",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 31158,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/31 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0659_Memorandum.pdf",
"RelativePath": "31158",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:23:11",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Modification No. M0020 to Contract Number DCTO-2008-C-0135 Approval and Payment Authorization Emergency Act of 2014",
"Title": "B20-0659",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0306",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0528-INTRODUCTION.pdf",
"RelativePath": "30596",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": true,
"HasCount": false,
"ID": 30596,
"Introducer": [
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/15 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 70.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0528_Memorandum.pdf",
"RelativePath": "30596",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:20:54",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "D.C. PROMISE ESTABLISHMENT ACT OF 2013.",
"Title": "B20-0528",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0305",
"AdditionalInformation": "AKA \"Marijuana Possession Decriminalization Amendment Act of 2014\" as renamed by the Committee at mark-up.",
"AttachmentPath": [
{
"Name": "B20-0409-INTRODUCTION.pdf",
"RelativePath": "29565",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29565,
"Introducer": [
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/07/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 70.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0409_Memorandum.pdf",
"RelativePath": "29565",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:20:31",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/07/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "SIMPLE POSSESSION OF SMALL QUANTITIES OF MARIJUANA DECRIMINALIZATION AMENDMENT ACT OF 2013 (aka \"Marijuana Possession Decriminalization Amendment Act of 2014\")",
"Title": "B20-0409",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0304",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0110-INTRODUCTION.pdf",
"RelativePath": "29266",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29266,
"Introducer": [
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 221,
"Name": "Mary M.Cheh"
},
{
"Id": 222,
"Name": "Jack Evans"
}
],
"IntroductionDate": "2013/02/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 70.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 17:20:05",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/02/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "BELMONT PARK DESIGNATION AND ESTABLISHMENT ACT OF 2013.",
"Title": "B20-0110",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0303",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0318-INTRODUCTION.pdf",
"RelativePath": "29474",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29474,
"Introducer": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2013/06/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 70.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0318_Memorandum.pdf",
"RelativePath": "29474",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:19:36",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/06/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "SENIOR CITIZEN REAL PROPERTY TAX RELIEF ACT OF 2013.",
"Title": "B20-0318",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0302",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0698-Introduction.pdf",
"RelativePath": "31319",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31319,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0698_Memorandum.pdf",
"RelativePath": "31319",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:19:04",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Kelsey Gardens Redevelopment Emergency Act of 2014",
"Title": "B20-0698",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0301",
"AdditionalInformation": "Vendor - KPMG",
"AttachmentPath": [
{
"Name": "B20-0691-Introduction.pdf",
"RelativePath": "31303",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31303,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0691_Memorandum.pdf",
"RelativePath": "31303",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:18:40",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Chief Financial Officer",
"ShortTitle": "Contract No. CFOPD-11-C-026 Approval and Payment Authorization Emergency Act of 2014",
"Title": "B20-0691",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0241",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0116-INTRODUCTION.pdf",
"RelativePath": "29272",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 221,
"Name": "Mary M.Cheh"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29272,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan Mcduffie"
}
],
"IntroductionDate": "2013/02/05 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0075",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 17:15:39",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/02/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "BOARD OF ETHICS AND GOVERNMENT ACCOUNTABILITY AMENDMENT ACT OF 2013.",
"Title": "B20-0116",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0423",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0575-Introduction.pdf",
"RelativePath": "30893",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
},
{
"Id": 193,
"Name": "Economic Development"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30893,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0575_Memorandum.pdf",
"RelativePath": "30893",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:09:42",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/12/13 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Abandonment of the Highway Plan for a Portion of 28th and Austin Streets, SE S.O. 13-11875 Resolution of 2013",
"Title": "PR20-0575",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0407",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0597-Introduction.pdf",
"RelativePath": "30915",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/17 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/03/26 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30915,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0597_Memorandum.pdf",
"RelativePath": "30915",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:08:28",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/12/20 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Zoning Commission of the District of Columbia Anthony J. Hood Confirmation Resolution of 2013",
"Title": "PR20-0597",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0406",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0552-Introduction.pdf",
"RelativePath": "30717",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/19 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/02/27 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30717,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0552_Memorandum.pdf",
"RelativePath": "30717",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 17:07:34",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/11/22 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Board of Zoning Adjustment Marnique Heath Confirmation Resolution of 2013",
"Title": "PR20-0552",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0258",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0388-INTRODUCTION.pdf",
"RelativePath": "29544",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29544,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/07/09 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0088",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 17:00:47",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/07/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "CLOSING OF A PUBLIC ALLEY IN SQUARE 858, S.O. 12-03336, ACT OF 2013.",
"Title": "B20-0388",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0257",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0309-INTRODUCTION.pdf",
"RelativePath": "29465",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29465,
"Introducer": [
{
"Id": 220,
"Name": "David Catania"
}
],
"IntroductionDate": "2013/06/04 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0087",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 17:00:19",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/06/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "FAIR STUDENT FUNDING AND SCHOOL BASED BUDGETING ACT OF 2013.",
"Title": "B20-0309",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0256",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0070-INTRODUCTION.pdf",
"RelativePath": "29226",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/22 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29226,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
}
],
"IntroductionDate": "2013/01/15 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0086",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 16:59:48",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/01/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "HISTORIC MUSIC CULTURAL INSTITUTIONS EXPANSION TAX ABATEMENT ACT OF 2013.",
"Title": "B20-0070",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0724-Introduction.pdf",
"RelativePath": "31509",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/07/16 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31509,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0724_Memorandum.pdf",
"RelativePath": "31509",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 16:40:18",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Public Employee Relations Board Keith Washington Confirmation Resolution of 2014",
"Title": "PR20-0724",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0719-Introduction.pdf",
"RelativePath": "31501",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/06/20 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31501,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/31 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0719_Memorandum.pdf",
"RelativePath": "31501",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 16:39:08",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "District of Columbia Small and Local Business Opportunity Commission Lloyd Henry Confirmation Resolution of 2014",
"Title": "PR20-0719",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0718-Introduction.pdf",
"RelativePath": "31500",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/06/20 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31500,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/31 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0718_Memorandum.pdf",
"RelativePath": "31500",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 16:38:36",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "District of Columbia Small and Local Business Opportunity Commission Vinoda Basnayke Confirmation Resolution of 2014",
"Title": "PR20-0718",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0753-Introduction.pdf",
"RelativePath": "31519",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31519,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 224,
"Name": "David Grosso"
}
],
"IntroductionDate": "2014/04/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0753_Memorandum.pdf",
"RelativePath": "31519",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 16:37:39",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Transportation Network Services Innovation Act of 2014",
"Title": "B20-0753",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0750-Introduction.pdf",
"RelativePath": "31515",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31515,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0750_Memorandum.pdf",
"RelativePath": "31515",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 16:37:04",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Fiscal Year 2015 Budget Support Act of 2014",
"Title": "B20-0750",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0749-Introduction.pdf",
"RelativePath": "31513",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31513,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0749_Memorandum.pdf",
"RelativePath": "31513",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 16:36:39",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Fiscal Year 2015 Budget Request Act of 2014",
"Title": "B20-0749",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0746-Introduction.pdf",
"RelativePath": "31506",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31506,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0746_Memorandum.pdf",
"RelativePath": "31506",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 16:36:16",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Vending Regulations Amendment Act of 2014",
"Title": "B20-0746",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0020",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0007-INTRODUCTION.pdf",
"RelativePath": "30097",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": "192",
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30097,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2012/10/24 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 15:07:50",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "3;#",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BOARD OF ZONING ADJUSTMENT KATHRYN ALLEN CONFIRMATION RESOLUTION OF 2012.",
"Title": "PR20-0007",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0735-Introduction.pdf",
"RelativePath": "31458",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31458,
"Introducer": [
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/03/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0735_Memorandum.pdf",
"RelativePath": "31458",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 14:38:12",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/04 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "End Youth Homelessness Amendment Act of 2014",
"Title": "B20-0735",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0036",
"AdditionalInformation": "To approve multiyear CA 20-5.",
"AttachmentPath": [
{
"Name": "PR20-0056-INTRODUCTION.pdf",
"RelativePath": "30146",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30146,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/01/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0056_Memorandum.pdf",
"RelativePath": "30146",
"Type": "Memorandum"
}
],
"Modified": "2014/04/11 13:13:35",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "2013/02/01 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CONTRACT NO. DCHT-2012-C-0014 APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0056",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0016",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0009-INTRODUCTION.pdf",
"RelativePath": "30099",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": "198",
"Name": "Human Services"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30099,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2012/10/25 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 11:06:11",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "3;#",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "TEMPORARY ASSISTANCE FOR NEEDY FAMILIES SANCTION POLICY APPROVAL RESOLUTION OF 2012.",
"Title": "PR20-0009",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0007",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0017-INTRODUCTION.pdf",
"RelativePath": "30107",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": "192",
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30107,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2012/11/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/11 11:05:38",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "3;#",
"PublicationDate": "2013/01/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "METROPOLITAN WASHINGTON AIRPORTS AUTHORITY BOARD OF DIRECTORS MR. JOSLYN N. WILLIAMS CONFIRMATION RESOLUTION OF 2012.",
"Title": "PR20-0017",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Notice is given that the attached request to reprogram $800,000 of Fiscal Year 2014 Special Purpose Revenue funds budget authority from the Metropolitan Police Department (MPD) and the Office of the Deputy Mayor for Public Safety and Justice (ODMPSJ) was filed in the Office of the Secretary on April 9, 2014. This Reprogramming is needed to allow DOC to spend revenues to cover the costs associated with housing inmates at the Correctional Treatment Facility.\n\nThe Council's 14 day review begins Thursday, April 10, 2014, and the request will be deemed approved on Saturday, May 3, 2014, unless a notice of disapproval is filed prior to that time which would extend the review period to 30 days. The request would then be deemed approved on the 31st day of receipt unless an approval or disapproval resolution is adopted prior to that time. \n",
"AttachmentPath": [
{
"Name": "REPROG20-0169-Introduction.pdf",
"RelativePath": "31547",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/05/03 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31547,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/09 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "11;#Reprogramming",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "13;#Reprogramming",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "REPROG20-0169_Memorandum.pdf",
"RelativePath": "31547",
"Type": "Memorandum"
}
],
"Modified": "2014/04/10 17:39:54",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Notice of Reprogramming Request for $800,000 of Special Purpose Revenue Funds Budget Authority: $300,000 from the Metropolitan Police Department and $500,000 from the Office of the Deputy Mayor for Public Safety and Justice to the Department of Corrections ",
"Title": "REPROG20-0169",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0412-INTRODUCTION.pdf",
"RelativePath": "29568",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": "218",
"Name": "Anita Bonds"
},
{
"Id": "222",
"Name": "Jack Evans"
},
{
"Id": "220",
"Name": "David Catania"
}
],
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29568,
"Introducer": [
{
"Id": "225",
"Name": "Kenyan Mcduffie"
},
{
"Id": "224",
"Name": "David Grosso"
},
{
"Id": "221",
"Name": "Mary M.Cheh"
},
{
"Id": "228",
"Name": "Tommy Wells"
},
{
"Id": "219",
"Name": "Muriel Bowser"
},
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/07/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/10 14:53:04",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/07/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "UNIVERSAL CODE OF CONDUCT AND BEGA AMENDMENT ACT OF 2013.",
"Title": "B20-0412",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0240-INTRODUCTION.pdf",
"RelativePath": "29396",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29396,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/15 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0240_Memorandum.pdf",
"RelativePath": "29396",
"Type": "Memorandum"
}
],
"Modified": "2014/04/10 12:35:10",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "2013/04/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BETTER PRICES, BETTER QUALITY, BETTER CHOICES FOR HEALTH COVERAGE AMENDMENT ACT OF 2013.",
"Title": "B20-0240",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0212-INTRODUCTION.pdf",
"RelativePath": "29368",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29368,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0212_Memorandum.pdf",
"RelativePath": "29368",
"Type": "Memorandum"
}
],
"Modified": "2014/04/10 12:30:48",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/12 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "LIFE AND HEALTH INSURANCE GUARANTY ASSOCIATION CONSUMER PROTECTION AMENDMENT ACT OF 2013.",
"Title": "B20-0212",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0023-INTRODUCTION.pdf",
"RelativePath": "29179",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 221,
"Name": "Mary M.Cheh"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 227,
"Name": "Phil Pmendelson"
}
],
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/08 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": true,
"HasCount": false,
"ID": 29179,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 224,
"Name": "David Grosso"
}
],
"IntroductionDate": "2013/01/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/10 12:29:19",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/01/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "RESIDENTIAL REAL PROPERTY EQUITY AND TRANSPARENCY ACT OF 2013.",
"Title": "B20-0023",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0615-Introduction.pdf",
"RelativePath": "30794",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30794,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0615_Memorandum.pdf",
"RelativePath": "30794",
"Type": "Memorandum"
}
],
"Modified": "2014/04/10 12:28:01",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/12/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Closing of a Portion of the Public Alley and Acceptance of Dedication of Land for Alley Purposes in Square 75, S.O. 12-03806, Act of 2013",
"Title": "B20-0615",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0546-Introduction.pdf",
"RelativePath": "30672",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30672,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0546_Memorandum.pdf",
"RelativePath": "30672",
"Type": "Memorandum"
}
],
"Modified": "2014/04/10 12:10:55",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/11/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Transportation Infrastructure Improvements GARVEE Bond Financing Amendment Act of 2013",
"Title": "B20-0546",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0431-Introduction.pdf",
"RelativePath": "29587",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29587,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/16 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0431_Memorandum.pdf",
"RelativePath": "29587",
"Type": "Memorandum"
}
],
"Modified": "2014/04/10 12:09:58",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/09/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "TRANSPORTATION INFRASTRUCTURE MITIGATION AMENDMENT ACT OF 2013.",
"Title": "B20-0431",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0324-INTRODUCTION.pdf",
"RelativePath": "29480",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 218,
"Name": "Anita Bonds"
}
],
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29480,
"Introducer": [
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/06/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0324_Memorandum.pdf",
"RelativePath": "29480",
"Type": "Memorandum"
}
],
"Modified": "2014/04/10 12:09:05",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/06/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "TRAFFIC ADJUDICATION AMENDMENT ACT OF 2013.",
"Title": "B20-0324",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Notice is given that the attached request to reprogram $800,000 of Fiscal Year 2014 Local funds budget authority from the Emergency and Contingency Reserve Funds (ECRF) to the Children and Youth Investment Collaborative (CYIC) was filed in the Office of the Secretary on March 20, 2014. This reprogramming is needed to provide funding to organizations seeking small grants to deliver programs. \n\nThe Council's 14 day review begins Friday, March 21, 2014, and the request will be deemed approved on Friday, April 4, 2014, unless a notice of disapproval is filed prior to that time which would extend the review period to 30 days. The request would then be deemed approved on the 31st day of receipt unless an approval or disapproval resolution is adopted prior to that time. \n",
"AttachmentPath": [
{
"Name": "REPROG20-0166-Introduction.pdf",
"RelativePath": "31427",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
},
{
"Id": 198,
"Name": "Human Services"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/04 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31427,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/20 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "11;#Reprogramming",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "13;#Reprogramming",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "REPROG20-0166_Memorandum.pdf",
"RelativePath": "31427",
"Type": "Memorandum"
}
],
"Modified": "2014/04/10 09:25:04",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": " Reprogramming Request for $800,000 of Local Funds Budget Authority from the Emergency and Contingency Reserve Funds to the Children and Youth Investment Collaborative ",
"Title": "REPROG20-0166",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract with Fairness Environmental Services, Inc. for Option Year 4 in the not-to-exceed amount of $1,000,000 to provide services for the removal, encapsulation or abatement, and disposal of hazardous materials regulated under the Toxic Substance Control Act including but not limited to lead paint, asbestos, mold chemicals and microbiological hazards such as N1H1 was filed in the Office of the Secretary on March 27, 2014. \n\nThe Council's ten day review begins Friday, March 28, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Monday, April 7, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0289-Introduction.pdf",
"RelativePath": "31479",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/07 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31479,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0289_Memorandum.pdf",
"RelativePath": "31479",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 15:01:11",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract with Fairness Environmental Services, Inc. ",
"Title": "CA20-0289",
"VendorName": "Fairness Environmental Services, Inc. ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract with JJPS, Inc. for Option Year 4 in the not-to-exceed amount of $1,000,000 to provide services for the removal, encapsulation or abatement, and disposal of hazardous materials regulated under the Toxic Substance Control Act including but not limited to lead paint, asbestos, mold chemicals and microbiological hazards such as N1H1 was filed in the Office of the Secretary on March 27, 2014. \n\nThe Council's ten day review begins Friday, March 28, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Monday, April 7, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0288-Introduction.pdf",
"RelativePath": "31478",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/07 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31478,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0288_Memorandum.pdf",
"RelativePath": "31478",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 15:00:50",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract with JJPS, Inc. for Option Year 4 ",
"Title": "CA20-0288",
"VendorName": "JJPS, Inc. ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract with Liberty Healthcare Corporation in the amount of $1,859,808.80 to provide the followings clinicians: two (2) Ph.D. Clinical Psychologists, Physical Therapist, Occupational Therapist, Advanced Practice Registered Nurse or Family Nurse Practitioner, Speech Language Pathologist, Nutritionist and four (4) Registered Nurse for the base year was filed in the Office of the Secretary on March 26, 2014. \n\nThe Council's ten day review begins Thursday, March 27, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Sunday, April 6, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0287-Introduction.pdf",
"RelativePath": "31477",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/06 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31477,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0287_Memorandum.pdf",
"RelativePath": "31477",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 15:00:26",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract with Liberty Healthcare Corporation ",
"Title": "CA20-0287",
"VendorName": "Liberty Healthcare Corporation ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract with Tompkins Builders, Inc. in the amount of $6,157,692 for Design-Build Services for Janney Elementary School was filed in the Office of the Secretary on March 25, 2014. \n\nThe Council's ten day review begins Wednesday, March 26, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Saturday, April 5, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0286-Introduction.pdf",
"RelativePath": "31476",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
},
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/05 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31476,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/25 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0286_Memorandum.pdf",
"RelativePath": "31476",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 15:00:02",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract with Tompkins Builders, Inc. ",
"Title": "CA20-0286",
"VendorName": "Tompkins Builders, Inc. ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract with Lance Bailey & Associates/Cox Graae + Spack Joint Venture in the amount of $4,335,000 for Architectural/Engineering Services for the Modernization of Duke Ellington School of the Arts was filed in the Office of the Secretary on March 25, 2014. \n\nThe Council's ten day review begins Wednesday, March 26, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Saturday, April 5, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days. \n",
"AttachmentPath": [
{
"Name": "CA20-0285-Introduction.pdf",
"RelativePath": "31475",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
},
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/05 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31475,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/25 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0285_Memorandum.pdf",
"RelativePath": "31475",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 14:59:40",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract with Lance Bailey & Associates/Cox Graae + Spack Joint Venture ",
"Title": "CA20-0285",
"VendorName": "Lance Bailey & Associates/Cox Graae + Spack Joint Venture ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract with AmeriNational Community Services, Inc. in the amount of $1,963,621.72 for Loan Services, Loan Collections, Lease Services, Lease Collections and Foreclosure Services was filed in the Office of the Secretary on March 21, 2014. \n\nThe Council's ten day review begins Monday, March 24, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Thursday, April 3, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0284-Introduction.pdf",
"RelativePath": "31430",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/03 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31430,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/21 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0284_Memorandum.pdf",
"RelativePath": "31430",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 14:59:17",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract with AmeriNational Community Services, Inc. ",
"Title": "CA20-0284",
"VendorName": "AmeriNational Community Services, Inc. ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "CA20-0061-INTRODUCTION.pdf",
"RelativePath": "29740",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2013/04/19 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 29740,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0061_Memorandum.pdf",
"RelativePath": "29740",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 13:10:53",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "3;#",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "PROPOSED CONTRACT MODIFICATION TO EXERCISE OPTION YEAR 1 WITH ALLIED BARTON SECURITY SERVICES, LLC FOR $21,299,700.00.",
"Title": "CA20-0061",
"VendorName": "Allied Barton Security Services, LLC",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "AG20-0023-Agenda.pdf",
"RelativePath": "31529",
"Type": "Agenda"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31529,
"Introducer": null,
"IntroductionDate": "2014/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "18;#Agenda",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "28;#Agenda",
"LetterGenerated": false,
"MemoLink": null,
"Modified": "2014/04/09 12:57:23",
"Phase": 3.0,
"PlaceOfIntroduction": null,
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "TWENTY-THIRD LEGISLATIVE MEETING",
"Title": "AG20-0023",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0682-Introduction.pdf",
"RelativePath": "31357",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/04/04 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31357,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0682_Memorandum.pdf",
"RelativePath": "31357",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 11:54:41",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/03/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Medicaid Supplemental Rebate Agreement Amendment Approval Resolution of 2014",
"Title": "PR20-0682",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0653-Introduction.pdf",
"RelativePath": "31243",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/04/05 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31243,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0653_Memorandum.pdf",
"RelativePath": "31243",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 11:54:09",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/02/21 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Board of Medicine Treasure Johnson Confirmation Resolution of 2014",
"Title": "PR20-0653",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0392-Introduction.pdf",
"RelativePath": "29548",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29548,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/07/09 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0392_Memorandum.pdf",
"RelativePath": "29548",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 11:21:19",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PRIMARY ELECTION DATE EMERGENCY AMENDMENT ACT OF 2013.",
"Title": "B20-0392",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "April 8, 2014 - on Committee of the Whole agenda. Not considered.",
"AttachmentPath": [
{
"Name": "B20-0602-Introduction.pdf",
"RelativePath": "30781",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/03 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30781,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2013/12/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0602_Memorandum.pdf",
"RelativePath": "30781",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 11:18:16",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/12/20 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Attorney General Partisan Election Implementation Amendment Act of 2013",
"Title": "B20-0602",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Oct 1, 2013 - Roll call vote on emergency declaration (PR 20-463) failed. Not considered.",
"AttachmentPath": [
{
"Name": "B20-0489-Introduction.pdf",
"RelativePath": "29645",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29645,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0489_Memorandum.pdf",
"RelativePath": "29645",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 11:12:54",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PRIMARY ELECTION DATE TEMPORARY AMENDMENT ACT OF 2013.",
"Title": "B20-0489",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Oct 1, 2013 - Roll call vote on emergency declaration (PR 20-463) failed. Not considered.",
"AttachmentPath": [
{
"Name": "B20-0488-Introduction.pdf",
"RelativePath": "29644",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29644,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0488_Memorandum.pdf",
"RelativePath": "29644",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 11:10:02",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PRIMARY ELECTION DATE EMERGENCY AMENDMENT ACT OF 2013.",
"Title": "B20-0488",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to D.C. Official Code 2-302.08(a)(3)(I) (2001), the Office of the Inspector General's \"Highway Trust Fund Memorandum of Recommendations for the Fiscal Year Ended September 30, 2012\" is circulated for your review. Copies are available in Legislative Services.",
"AttachmentPath": [
{
"Name": "IG20-0075-Introduction.pdf",
"RelativePath": "31514",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31514,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/04/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "20;#Inspector General",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "IG20-0075_Memorandum.pdf",
"RelativePath": "31514",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 11:05:53",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Highway Trust Fund Memorandum of Recommendations for the Fiscal Year Ended September 30, 2012",
"Title": "IG20-0075",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0742-Introduction.pdf",
"RelativePath": "31482",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31482,
"Introducer": [
{
"Id": 217,
"Name": "Marion Barry"
}
],
"IntroductionDate": "2014/03/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0742_Memorandum.pdf",
"RelativePath": "31482",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 11:00:21",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Affordable Housing Preservation Temporary Amendment Act of 2014",
"Title": "B20-0742",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0741-Introduction.pdf",
"RelativePath": "31481",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31481,
"Introducer": [
{
"Id": 217,
"Name": "Marion Barry"
}
],
"IntroductionDate": "2014/03/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0741_Memorandum.pdf",
"RelativePath": "31481",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 10:59:31",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Affordable Housing Preservation Emergency Amendment Act of 2014",
"Title": "B20-0741",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0715-Introduction.pdf",
"RelativePath": "31480",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31480,
"Introducer": [
{
"Id": 217,
"Name": "Marion Barry"
}
],
"IntroductionDate": "2014/03/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0715_Memorandum.pdf",
"RelativePath": "31480",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 10:59:00",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Affordable Housing Preservation Amendment Emergency Declaration Resolution of 2014",
"Title": "PR20-0715",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0720-Introduction.pdf",
"RelativePath": "31345",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 222,
"Name": "Jack Evans"
}
],
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31345,
"Introducer": [
{
"Id": 223,
"Name": "Jim Graham"
}
],
"IntroductionDate": "2014/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0720_Memorandum.pdf",
"RelativePath": "31345",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 10:46:46",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/03/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Enhanced Notice Requirements for Historic District Development Amendment Act of 2014",
"Title": "B20-0720",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0586-Introduction.pdf",
"RelativePath": "30735",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/03 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30735,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
}
],
"IntroductionDate": "2013/11/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0586_Memorandum.pdf",
"RelativePath": "30735",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 10:46:15",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/12/06 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Historic District Neighbor Notification Act of 2013",
"Title": "B20-0586",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0619-Introduction.pdf",
"RelativePath": "30798",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30798,
"Introducer": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/12/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0619_Memorandum.pdf",
"RelativePath": "30798",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 10:45:16",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/12/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Justice for Ex-Spouses Act of 2013",
"Title": "B20-0619",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0529-INTRODUCTION.pdf",
"RelativePath": "30597",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30597,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2013/10/15 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0529_Memorandum.pdf",
"RelativePath": "30597",
"Type": "Memorandum"
}
],
"Modified": "2014/04/09 10:44:43",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "DOMESTIC VIOLENCE CRIMINAL JUSTICE RESPONSE IMPROVEMENT AMENDMENT ACT OF 2013.",
"Title": "B20-0529",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0472-INTRODUCTION.pdf",
"RelativePath": "29628",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29628,
"Introducer": [
{
"Id": 221,
"Name": "Mary M.Cheh"
}
],
"IntroductionDate": "2013/09/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/09 10:43:51",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/09/20 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "TEMPORARY PROTECTION ORDER FIREARM RELINQUISHMENT AMENDMENT ACT OF 2013.",
"Title": "B20-0472",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0727-Introduction.pdf",
"RelativePath": "31520",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31520,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0727_Memorandum.pdf",
"RelativePath": "31520",
"Type": "Memorandum"
}
],
"Modified": "2014/04/08 18:49:18",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Settlements and Interest Arbitration Award between the District of Columbia Government and the Fraternal Order of Police MPD Labor Committee (Compensation Unit 3) Emergency Declaration Resolution of 2014",
"Title": "PR20-0727",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0711-Introduction.pdf",
"RelativePath": "31468",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/06/02 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31468,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/24 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0711_Memorandum.pdf",
"RelativePath": "31468",
"Type": "Memorandum"
}
],
"Modified": "2014/04/08 15:20:25",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/04 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "District of Columbia Boxing and Wrestling Commission Bryan Scott Irving Confirmation Resolution of 2014",
"Title": "PR20-0711",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0709-Introduction.pdf",
"RelativePath": "31466",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31466,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/24 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0709_Memorandum.pdf",
"RelativePath": "31466",
"Type": "Memorandum"
}
],
"Modified": "2014/04/08 15:19:38",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/04 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Public Charter School Board Enrique Cruz Confirmation Resolution of 2014",
"Title": "PR20-0709",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0707-Introduction.pdf",
"RelativePath": "31463",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31463,
"Introducer": [
{
"Id": 224,
"Name": "David Grosso"
}
],
"IntroductionDate": "2014/03/20 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0707_Memorandum.pdf",
"RelativePath": "31463",
"Type": "Memorandum"
}
],
"Modified": "2014/04/08 15:19:12",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/04 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Sense of the Council on Anti-Homosexuality Laws Resolution of 2014",
"Title": "PR20-0707",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0706-Introduction.pdf",
"RelativePath": "31462",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/06/02 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31462,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/19 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0706_Memorandum.pdf",
"RelativePath": "31462",
"Type": "Memorandum"
}
],
"Modified": "2014/04/08 15:18:53",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/04 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Apprenticeship Council Violet M. Carter Confirmation Resolution of 2014",
"Title": "PR20-0706",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0705-Introduction.pdf",
"RelativePath": "31461",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/06/02 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31461,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/19 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0705_Memorandum.pdf",
"RelativePath": "31461",
"Type": "Memorandum"
}
],
"Modified": "2014/04/08 15:18:30",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/04 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Apprenticeship Council Ioannis J. Xanthos Confirmation Resolution of 2014",
"Title": "PR20-0705",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0743-Introduction.pdf",
"RelativePath": "31485",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31485,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
}
],
"IntroductionDate": "2014/03/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0743_Memorandum.pdf",
"RelativePath": "31485",
"Type": "Memorandum"
}
],
"Modified": "2014/04/08 15:18:02",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/04/04 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Home Care Agency Licensing Clarification Act of 2014",
"Title": "B20-0743",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0752-Introduction.pdf",
"RelativePath": "31518",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31518,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0752_Memorandum.pdf",
"RelativePath": "31518",
"Type": "Memorandum"
}
],
"Modified": "2014/04/08 14:58:21",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Fiscal Year 2014 Revised Budget Request Temporary Adjustment Act of 2014",
"Title": "B20-0752",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0726-Introduction.pdf",
"RelativePath": "31516",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31516,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0726_Memorandum.pdf",
"RelativePath": "31516",
"Type": "Memorandum"
}
],
"Modified": "2014/04/08 14:55:50",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Fiscal Year 2014 Revised Budget Request Emergency Adjustment Declaration Resolution of 2014",
"Title": "PR20-0726",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0751-Introduction.pdf",
"RelativePath": "31517",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31517,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0751_Memorandum.pdf",
"RelativePath": "31517",
"Type": "Memorandum"
}
],
"Modified": "2014/04/08 14:54:12",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Fiscal Year 2014 Revised Budget Request Emergency Adjustment Act of 2014",
"Title": "B20-0751",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0354",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0498-Introduction.pdf",
"RelativePath": "30589",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/03/06 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30589,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0498_Memorandum.pdf",
"RelativePath": "30589",
"Type": "Memorandum"
}
],
"Modified": "2014/04/08 12:13:23",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BENNING SCHOOL DISPOSITION APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0498",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0722-Introduction.pdf",
"RelativePath": "31507",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31507,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0722_Memorandum.pdf",
"RelativePath": "31507",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 17:30:09",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Compensation Collective Bargaining Agreement between the District of Columbia Department of Behavioral Health and Public Service Employees Local 572, Laborers International Union of North America (LIUNA) affiliated with AFL-CIO Emergency Declaration Resolution of 2014",
"Title": "PR20-0722",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0721-Introduction.pdf",
"RelativePath": "31503",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/09 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31503,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0721_Memorandum.pdf",
"RelativePath": "31503",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 17:16:24",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Vending Regulations Emergency Declaration Resolution of 2014",
"Title": "PR20-0721",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0744-Introduction.pdf",
"RelativePath": "31504",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31504,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0744_Memorandum.pdf",
"RelativePath": "31504",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 17:15:41",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Vending Regulations Emergency Amendment Act of 2014",
"Title": "B20-0744",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0745-Introduction.pdf",
"RelativePath": "31505",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31505,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0745_Memorandum.pdf",
"RelativePath": "31505",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 17:15:02",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Vending Regulations Temporary Amendment Act of 2014",
"Title": "B20-0745",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to Section 808(a) of the District of Columbia Appropriations Act, 2013\", the attached \"FY 2014 Grant Budget Modifications of March 5, 2014\", GBM 20-94, was filed on March 14, 2014 in the Office of the Secretary. The Council's 14 calendar day review period begins Tuesday, March 18, 2014 and ends Monday, March 31, 2014. The modification will be deemed approved on Tuesday, April 1, 2014, unless a notice of disapproval is filed within the 14 days. If a notice of disapproval is filed prior to that date, the Council's review period will be extended to 30 calendar days. ",
"AttachmentPath": [
{
"Name": "GBM20-0094-Introduction.pdf",
"RelativePath": "31375",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/01 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31375,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/14 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "8;#Grant Budget Modification",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "11;#Grant Budget Modification",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "GBM20-0094_Memorandum.pdf",
"RelativePath": "31375",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 17:10:45",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Grant Budget Modifications of March 5, 2014 Approval Request",
"Title": "GBM20-0094",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Notice is given that the attached request to reprogram $1,214,441 of Fiscal Year 2014 Local funds budget authority within the Department of Corrections (DOC) was filed in the Office of the Secretary on March 14, 2014. This reprogramming is needed to procure critical programmatic goods and services for inmate care, education, operational services, and institutional safety.\n\nThe Council's 14 day review begins Tuesday, March 18, 2014, and the request will be deemed approved on Tuesday, April 1, 2014, unless a notice of disapproval is filed prior to that time which would extend the review period to 30 days. The request would then be deemed approved on the 31st day of receipt unless an approval or disapproval resolution is adopted prior to that time. \n",
"AttachmentPath": [
{
"Name": "REPROG20-0165-Introduction.pdf",
"RelativePath": "31377",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/01 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31377,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/14 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "11;#Reprogramming",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "13;#Reprogramming",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "REPROG20-0165_Memorandum.pdf",
"RelativePath": "31377",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 17:09:05",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Notice of Reprogramming Request for $1,241,441 of Local Funds Budget Authority within the Department of Corrections",
"Title": "REPROG20-0165",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed loan and grant agreements between the Department of Housing and Community Development (DHCD) and Holy Comforter-St. Cyprian Community Action Group in the amount of $3,600,000 to provide additional funding to finance the construction of a community center located at 124-15th Street SE was filed in the Office of the Secretary on March 20, 2014. \n\nThe Council's ten day review begins Monday, March 24, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Thursday, April 3, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days. \n",
"AttachmentPath": [
{
"Name": "CA20-0283-Introduction.pdf",
"RelativePath": "31429",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/03 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31429,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/20 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0283_Memorandum.pdf",
"RelativePath": "31429",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 17:05:17",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed loan and grant agreements between the Department of Housing and Community Development (DHCD) and Holy Comforter-St. Cyprian Community Action Group ",
"Title": "CA20-0283",
"VendorName": "Department of Housing and Community Development (DHCD) and Holy Comforter-St. Cyprian Community Action Group ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0725-Introduction.pdf",
"RelativePath": "31510",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31510,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0725_Memorandum.pdf",
"RelativePath": "31510",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 17:02:56",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Educator Evaluation Data Collection Emergency Declaration Resolution of 2014",
"Title": "PR20-0725",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract Change Order with City Construction, LLC in the amount of $1,584,947.00 to fund the furniture, fixtures, and equipment (FF&E), structural stud installation, select demolition, and drywall installation at 2850 New York Avenue, NE was filed in the Office of the Secretary on March 20, 2014. \n\nThe Council's ten day review begins Friday, March 21, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Monday, March 31, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0282-Introduction.pdf",
"RelativePath": "31428",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/03/31 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31428,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/20 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0282_Memorandum.pdf",
"RelativePath": "31428",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 17:02:16",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract Change Order with City Construction, LLC ",
"Title": "CA20-0282",
"VendorName": "City Construction, LLC ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0747-Introduction.pdf",
"RelativePath": "31511",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31511,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0747_Memorandum.pdf",
"RelativePath": "31511",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 17:01:34",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Educator Evaluation Data Collection Emergency Amendment Act of 2014",
"Title": "B20-0747",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0748-Introduction.pdf",
"RelativePath": "31512",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31512,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/04/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0748_Memorandum.pdf",
"RelativePath": "31512",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 17:00:00",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Educator Evaluation Data Collection Temporary Amendment Act of 2014",
"Title": "B20-0748",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract with Umbrella Therapeutic Services for option year three in the amount of $1,351,011.00 to provide therapeutic family homes that are located in the District of Columbia or within 50 miles radius of the District of Columbia in order to afford youth the opportunity to access and receive needed programs and services within the District was filed in the Office of the Secretary on March 18, 2014. \n\nThe Council's ten day review begins Wednesday, March 19, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Saturday, March 29, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days.\n",
"AttachmentPath": [
{
"Name": "CA20-0281-Introduction.pdf",
"RelativePath": "31395",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/03/29 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31395,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0281_Memorandum.pdf",
"RelativePath": "31395",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 16:59:57",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract with Umbrella Therapeutic Services for option year three ",
"Title": "CA20-0281",
"VendorName": "Umbrella Therapeutic Services ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached proposed contract with Turner Construction Company in the amount of $16,314,000 for Design-Build Services for the Southeast Tennis and Learning Center was filed in the Office of the Secretary on March 18, 2014. \n\nThe Council's ten day review begins Wednesday, March 19, 2014, including Saturdays, Sundays, Council recess and legal holidays. The proposed contract will be deemed approved on Saturday, March 29, 2014, unless a resolution of approval or disapproval is introduced within the ten day review period, extending the review to 45 days. \n",
"AttachmentPath": [
{
"Name": "CA20-0280-Introduction.pdf",
"RelativePath": "31394",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
},
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/03/29 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31394,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "3;#Contract",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "10;#Contract",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "CA20-0280_Memorandum.pdf",
"RelativePath": "31394",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 16:59:34",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed contract with Turner Construction Company ",
"Title": "CA20-0280",
"VendorName": "Turner Construction Company ",
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to DC Code Sec. 42-2702.07 (b)(2), the Housing Finance Agency provides notice of its proposal to issue a revenue bond in an amount not to exceed $18,500,000 for the acquisition and construction financing of the North Capitol project (the \"Development\"), The Development will be located at the future address of 1005 North Capitol Street, NE on Square 674, Lot 439, in Ward 6 which, after completion is expected to consist of one (1) building containing one hundred twenty-four (124) residential rental units. \n\nThe Council's 30 day review period begins on Wednesday, February 19, 2014, excluding Saturdays, Sundays, Holidays and Council recess. If the Council does not adopt a resolution of disapproval, the issuance will be deemed approved on Wednesday, April 2, 2014. \n",
"AttachmentPath": [
{
"Name": "HFA20-0011-Introduction.pdf",
"RelativePath": "31225",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/04/02 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31225,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/12 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "13;#Housing Finance Agency",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "19;#Housing Finance Agency",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "HFA20-0011_Memorandum.pdf",
"RelativePath": "31225",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 16:39:11",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "The District of Columbia Housing Finance Agency",
"ShortTitle": "Notification of a Proposed Revenue Bond Issuance by the District of Columbia Housing Finance Agency",
"Title": "HFA20-0011",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0656-Introduction.pdf",
"RelativePath": "31246",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/18 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/04/02 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31246,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/14 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0656_Memorandum.pdf",
"RelativePath": "31246",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 14:27:20",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/02/21 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Southwest Waterfront Land Disposition Agreement Amendment Approval Resolution of 2014",
"Title": "PR20-0656",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached report entitled \"Activity Report March 2014\", issued on March 31, 2014, is circulated for your review. Copies are available in Legislative Services, Room 10. ",
"AttachmentPath": [
{
"Name": "AU20-0047-Introduction.pdf",
"RelativePath": "31498",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31498,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/03/31 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "16;#Auditor",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "AU20-0047_Memorandum.pdf",
"RelativePath": "31498",
"Type": "Memorandum"
}
],
"Modified": "2014/04/07 13:32:18",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Activity Report March 2014",
"Title": "AU20-0047",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0053",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0010-INTRODUCTION.pdf",
"RelativePath": "29166",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 197,
"Name": "Health"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/22 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29166,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/01/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0010_Memorandum.pdf",
"RelativePath": "29166",
"Type": "Memorandum"
}
],
"Modified": "2014/04/04 17:11:03",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DEPARTMENT OF HEALTH GRANT MAKING AUTHORITY EMERGENCY AMENDMENT ACT OF 2013.",
"Title": "B20-0010",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0027",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0130-INTRODUCTION.pdf",
"RelativePath": "29286",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29286,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/02/12 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/04 17:10:28",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "MODIFICATION NO. M0002 TO CONTRACT NUMBER CW14591 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0130",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0062",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0014-INTRODUCTION.pdf",
"RelativePath": "30104",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": "196",
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2013/03/14 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30104,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2012/11/15 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/04 17:09:48",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "3;#",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "OFFICE OF EMPLOYEE APPEALS ALVIN GILBERT DOUGLASS, JR. CONFIRMATION RESOLUTION OF 2012.",
"Title": "PR20-0014",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0061",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0013-INTRODUCTION.pdf",
"RelativePath": "30103",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": "196",
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2013/03/14 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30103,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2012/11/15 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/04 17:06:51",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "3;#",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "OFFICE OF EMPLOYEE APPEALS NECOLA SHAW CONFIRMATION RESOLUTION OF 2012.",
"Title": "PR20-0013",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0060",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0051-INTRODUCTION.pdf",
"RelativePath": "30141",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 202,
"Name": "Workforce and Community Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/22 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2013/05/01 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30141,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/01/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0051_Memorandum.pdf",
"RelativePath": "30141",
"Type": "Memorandum"
}
],
"Modified": "2014/04/04 17:06:19",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/01/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA COMMISSION ON HUMAN RIGHTS ALEXANDRA ANDREA BENINDA CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0051",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0059",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0050-INTRODUCTION.pdf",
"RelativePath": "30140",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 202,
"Name": "Workforce and Community Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/22 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2013/05/01 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30140,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/01/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0050_Memorandum.pdf",
"RelativePath": "30140",
"Type": "Memorandum"
}
],
"Modified": "2014/04/04 17:05:12",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/01/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA COMMISSION ON HUMAN RIGHTS RAHIM JENKINS CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0050",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0058",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0049-INTRODUCTION.pdf",
"RelativePath": "30139",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 202,
"Name": "Workforce and Community Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/22 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2013/05/01 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30139,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/01/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0049_Memorandum.pdf",
"RelativePath": "30139",
"Type": "Memorandum"
}
],
"Modified": "2014/04/04 17:04:47",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/01/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA COMMISSION ON HUMAN RIGHTS EDWIN WITT POWELL CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0049",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0057",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0048-INTRODUCTION.pdf",
"RelativePath": "30138",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 202,
"Name": "Workforce and Community Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/22 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2013/05/01 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30138,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/01/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0048_Memorandum.pdf",
"RelativePath": "30138",
"Type": "Memorandum"
}
],
"Modified": "2014/04/04 17:04:14",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/01/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA COMMISSION ON HUMAN RIGHTS DR. JOHN DAVID ROBINSON CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0048",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0063",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0027-INTRODUCTION.pdf",
"RelativePath": "30117",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": "192",
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2013/03/14 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30117,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2012/11/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/04 17:03:20",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "3;#",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HISTORIC PRESERVATION REVIEW BOARD CHARLES E. WILSON CONFIRMATION RESOLUTION OF 2012.",
"Title": "PR20-0027",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0026",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0157-INTRODUCTION.pdf",
"RelativePath": "29313",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/03/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29313,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/03/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/04 17:02:34",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "TEMPORARY ASSISTANCE FOR NEEDY FAMILIES TIME EXTENSION EMERGENCY AMENDMENT ACT OF 2013.",
"Title": "B20-0157",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0047",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0058-INTRODUCTION.pdf",
"RelativePath": "30148",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/22 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30148,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/01/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0058_Memorandum.pdf",
"RelativePath": "30148",
"Type": "Memorandum"
}
],
"Modified": "2014/04/04 17:01:55",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/02/01 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "THE FIELD SCHOOL, INC. REVENUE BONDS PROJECT APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0058",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0046",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0057-INTRODUCTION.pdf",
"RelativePath": "30147",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/22 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30147,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/01/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0057_Memorandum.pdf",
"RelativePath": "30147",
"Type": "Memorandum"
}
],
"Modified": "2014/04/04 17:01:23",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/02/01 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "LOWELL SCHOOL, INC. REVENUE BONDS PROJECT APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0057",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to D.C. Official Code 2-302.08(a)(3)(I) (2001), the Office of the Inspector General's \"Report on the Examination of the District of Columbia's Highway Trust Fund Forecast Statements for Fiscal Years 2014-2018 with Actual Audited Figures for Fiscal Year 2013\" is circulated for your review. Copies are available in Legislative Services.",
"AttachmentPath": [
{
"Name": "IG20-0073-Introduction.pdf",
"RelativePath": "31495",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31495,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/04/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "20;#Inspector General",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "IG20-0073_Memorandum.pdf",
"RelativePath": "31495",
"Type": "Memorandum"
}
],
"Modified": "2014/04/04 14:23:37",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Report on the Examination of the District of Columbia's Highway Trust Fund Forecast Statements for Fiscal Years 2014-2018 with Actual Audited Figures for Fiscal Year 2013",
"Title": "IG20-0073",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to D.C. Official Code 2-302.08(a)(3)(I) (2001), the Office of the Inspector General's \"Audit of Commercial Mortgage Recordation at the Office of Tax and Revenue\" is circulated for your review. Copies are available in Legislative Services.",
"AttachmentPath": [
{
"Name": "IG20-0074-Introduction.pdf",
"RelativePath": "31496",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31496,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/04/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "20;#Inspector General",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "IG20-0074_Memorandum.pdf",
"RelativePath": "31496",
"Type": "Memorandum"
}
],
"Modified": "2014/04/04 10:54:05",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Audit of Commercial Mortgage Recordation at the Office of Tax and Revenue",
"Title": "IG20-0074",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "The attached report entitled \"Certification of Fiscal Year 2014 Total Local Source General Fund Revenues (Net of Dedicated Taxes) in Support of the District's Issuance of $495,425,000 in General Obligation Bonds (Series 2013A)\", issued on April 3, 2014, is circulated for your review. Copies are available in Legislative Services, Room 10. ",
"AttachmentPath": [
{
"Name": "AU20-0046-Introduction.pdf",
"RelativePath": "31494",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": null,
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31494,
"Introducer": [
{
"Id": 0,
"Name": "Chairman Phil Mendelson"
}
],
"IntroductionDate": "2014/04/03 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "12;#Report",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "16;#Auditor",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "AU20-0046_Memorandum.pdf",
"RelativePath": "31494",
"Type": "Memorandum"
}
],
"Modified": "2014/04/04 10:37:15",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Certification of Fiscal Year 2014 Total Local Source General Fund Revenues (Net of Dedicated Taxes) in Support of the District's Issuance of $495,425,000 in General Obligation Bonds (Series 2013A)",
"Title": "AU20-0046",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0622-Introduction.pdf",
"RelativePath": "30959",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/22 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/03/08 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30959,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0622_Memorandum.pdf",
"RelativePath": "30959",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 14:33:07",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/01/17 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Real Estate Commission Josephine H. Ricks Confirmation Resolution of 2014",
"Title": "PR20-0622",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0621-Introduction.pdf",
"RelativePath": "30958",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/21 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/03/08 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30958,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0621_Memorandum.pdf",
"RelativePath": "30958",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 14:32:46",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/01/17 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "District of Columbia Board of Dentistry Ms. Sibyl L. Gant Confirmation Resolution of 2014",
"Title": "PR20-0621",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0620-Introduction.pdf",
"RelativePath": "30957",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/21 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/03/08 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30957,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0620_Memorandum.pdf",
"RelativePath": "30957",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 14:29:46",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/01/17 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "District of Columbia Board of Dentistry Dr. Jezelle A. Sonnier Confirmation Resolution of 2014",
"Title": "PR20-0620",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0645-Introduction.pdf",
"RelativePath": "30961",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/22 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30961,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/09 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0645_Memorandum.pdf",
"RelativePath": "30961",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 14:28:04",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/01/17 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Closing Public Alley in Square 1412, S.O. 13-10159, Act of 2014",
"Title": "B20-0645",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0619-Introduction.pdf",
"RelativePath": "30939",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 227,
"Name": "Phil Mendelson"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 218,
"Name": "Anita Bonds"
}
],
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30939,
"Introducer": [
{
"Id": 219,
"Name": "Muriel Bowser"
}
],
"IntroductionDate": "2014/01/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0619_Memorandum.pdf",
"RelativePath": "30939",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 14:26:17",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/01/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Sense of the Council on the Need for the Washington Metropolitan Area Transit Authority to Establish a Returning Citizens Policy Resolution of 2014",
"Title": "PR20-0619",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0615-Introduction.pdf",
"RelativePath": "30935",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/02/22 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30935,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0615_Memorandum.pdf",
"RelativePath": "30935",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 14:25:27",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/01/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Board of Massage Therapy Danielle M. Weatherford Confirmation Resolution of 2014",
"Title": "PR20-0615",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0644-Introduction.pdf",
"RelativePath": "30956",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30956,
"Introducer": [
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2014/01/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0644_Memorandum.pdf",
"RelativePath": "30956",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 14:23:19",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/01/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Living Wage Amendment Act of 2014",
"Title": "B20-0644",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0643-Introduction.pdf",
"RelativePath": "30955",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 224,
"Name": "David Grosso"
}
],
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": [
{
"Id": 197,
"Name": "Health"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30955,
"Introducer": [
{
"Id": 223,
"Name": "Jim Graham"
}
],
"IntroductionDate": "2014/01/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0643_Memorandum.pdf",
"RelativePath": "30955",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 14:21:49",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/01/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Rat Prevention Control Act of 2014",
"Title": "B20-0643",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0642-Introduction.pdf",
"RelativePath": "30954",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 216,
"Name": "Yvette Alexander"
}
],
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30954,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0642_Memorandum.pdf",
"RelativePath": "30954",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 14:21:04",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/01/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Fair Criminal Record Screening Act of 2014",
"Title": "B20-0642",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0641-Introduction.pdf",
"RelativePath": "30953",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 227,
"Name": "Phil Mendelson"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 223,
"Name": "Jim Graham"
}
],
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30953,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"IntroductionDate": "2014/01/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0641_Memorandum.pdf",
"RelativePath": "30953",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 14:20:12",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/01/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Waste Management Modernization Amendment Act of 2014",
"Title": "B20-0641",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0640-Introduction.pdf",
"RelativePath": "30952",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 225,
"Name": "Kenyan McDuffie"
}
],
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
},
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30952,
"Introducer": [
{
"Id": 219,
"Name": "Muriel Bowser"
}
],
"IntroductionDate": "2014/01/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0640_Memorandum.pdf",
"RelativePath": "30952",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 14:19:36",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/01/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "District of Columbia Science, Technology, Engineering, and Math Fund Establishment Act of 2014",
"Title": "B20-0640",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0638-Introduction.pdf",
"RelativePath": "30950",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 224,
"Name": "David Grosso"
}
],
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30950,
"Introducer": [
{
"Id": 225,
"Name": "Kenyan McDuffie"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0638_Memorandum.pdf",
"RelativePath": "30950",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 14:18:06",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/01/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Solid Waste Facility Permit Amendment Act of 2014",
"Title": "B20-0638",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0634-Introduction.pdf",
"RelativePath": "30946",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30946,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0634_Memorandum.pdf",
"RelativePath": "30946",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 14:17:35",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/01/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "District of Columbia Air Pollution Control Amendment Act of 2014",
"Title": "B20-0634",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Vetoed by Mayor on September 12, 2013. Council override of veto failed on September 17, 2013.",
"AttachmentPath": [
{
"Name": "B20-0062-INTRODUCTION.pdf",
"RelativePath": "29218",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/08 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29218,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/01/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 80.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0062_Memorandum.pdf",
"RelativePath": "29218",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 13:00:35",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/01/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "LARGE RETAILER ACCOUNTABILITY ACT OF 2013.",
"Title": "B20-0062",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0153",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0142-INTRODUCTION.pdf",
"RelativePath": "29298",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": "219",
"Name": "Muriel Bowser"
},
{
"Id": "226",
"Name": "Vincent Orange"
},
{
"Id": "223",
"Name": "Jim Graham"
},
{
"Id": "216",
"Name": "Yvette Alexander"
},
{
"Id": "218",
"Name": "Anita Bonds"
}
],
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
},
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29298,
"Introducer": [
{
"Id": "220",
"Name": "David Catania"
},
{
"Id": "228",
"Name": "Tommy Wells"
},
{
"Id": "225",
"Name": "Kenyan Mcduffie"
},
{
"Id": "222",
"Name": "Jack Evans"
},
{
"Id": "221",
"Name": "Mary M.Cheh"
},
{
"Id": "224",
"Name": "David Grosso"
},
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/02/19 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0037",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 12:59:58",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/03/04 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "JAPARKER DEONI JONES BIRTH CERTIFICATE EQUALITY AMENDMENT ACT OF 2013.",
"Title": "B20-0142",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0140",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0390-INTRODUCTION.pdf",
"RelativePath": "29546",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29546,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/07/09 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0390_Memorandum.pdf",
"RelativePath": "29546",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:58:07",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "CHIEF FINANCIAL OFFICER COMPENSATION EMERGENCY AMENDMENT ACT OF 2013.",
"Title": "B20-0390",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0145",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0404-INTRODUCTION.pdf",
"RelativePath": "29560",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29560,
"Introducer": [
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2013/07/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0404_Memorandum.pdf",
"RelativePath": "29560",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:57:36",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "SCHOOL TRANSIT SUBSIDY EMERGENCY AMENDMENT ACT OF 2013.",
"Title": "B20-0404",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0247",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0391-INTRODUCTION.pdf",
"RelativePath": "30482",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": "200",
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30482,
"Introducer": [
{
"Id": "228",
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/07/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 12:57:03",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "3;#",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PERSONAL PROPERTY ROBBERY PREVENTION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0391",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0142",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0400-INTRODUCTION.pdf",
"RelativePath": "29556",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29556,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/07/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0400_Memorandum.pdf",
"RelativePath": "29556",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:55:58",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PERSONAL PROPERTY ROBBERY PREVENTION EMERGENCY AMENDMENT ACT OF 2013.",
"Title": "B20-0400",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0150",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0398-INTRODUCTION.pdf",
"RelativePath": "29554",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/09/17 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29554,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/07/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0398_Memorandum.pdf",
"RelativePath": "29554",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:55:29",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "FIRE AND EMERGENCY MEDICAL SERVICES MAJOR CHANGES EMERGENCY AMENDMENT ACT OF 2013.",
"Title": "B20-0398",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0371-INTRODUCTION.pdf",
"RelativePath": "29527",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29527,
"Introducer": [
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2013/06/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0371_Memorandum.pdf",
"RelativePath": "29527",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:54:57",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "MAYOR AND ATTORNEY GENERAL REPRIMAND, CENSURE AND EXPULSION EMERGENCY ACT OF 2013.",
"Title": "B20-0371",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0208",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0295-INTRODUCTION.pdf",
"RelativePath": "29451",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29451,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/05/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 12:54:17",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/06/07 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "FISCAL YEAR 2014 TAX REVENUE ANTICIPATION NOTES ACT OF 2013.",
"Title": "B20-0295",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0185",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0256-INTRODUCTION.pdf",
"RelativePath": "29412",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29412,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/04/29 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0046",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 12:53:48",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "INCOME TAX SECURED BOND AUTHORIZATION AMENDMENT ACT OF 2013.",
"Title": "B20-0256",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0191",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0231-INTRODUCTION.pdf",
"RelativePath": "29387",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 221,
"Name": "Mary M.Cheh"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 224,
"Name": "David Grosso"
}
],
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29387,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/04/09 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0052",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 12:52:17",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "VETERAN STATUS DESIGNATION ON DRIVER'S LICENSE AMENDMENT ACT OF 2013.",
"Title": "B20-0231",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0192",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0279-INTRODUCTION.pdf",
"RelativePath": "29435",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29435,
"Introducer": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
}
],
"IntroductionDate": "2013/05/07 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0053",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 12:51:50",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "COMMERCIAL DRIVER'S LICENSE SKILLS TEST AMENDMENT ACT OF 2013.",
"Title": "B20-0279",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0232",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0279-INTRODUCTION.pdf",
"RelativePath": "30370",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/22 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/10/23 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30370,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/05/06 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0279_Memorandum.pdf",
"RelativePath": "30370",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:51:11",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/05/17 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA WATER AND SEWER AUTHORITY BOARD OF DIRECTORS MR. OBIORA \"BO\" MENKITI CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0279",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0231",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0186-INTRODUCTION.pdf",
"RelativePath": "30276",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/10/01 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30276,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0186_Memorandum.pdf",
"RelativePath": "30276",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:50:39",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/04/12 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA WATER AND SEWER AUTHORITY BOARD OF DIRECTORS MR. KEITH ANDERSON CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0186",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0230",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0185-INTRODUCTION.pdf",
"RelativePath": "30275",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/10/01 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30275,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0185_Memorandum.pdf",
"RelativePath": "30275",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:50:09",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/04/12 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA WATER AND SEWER AUTHORITY BOARD OF DIRECTORS MR. JAMES BUNN CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0185",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0229",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0184-INTRODUCTION.pdf",
"RelativePath": "30274",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/10/01 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30274,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0184_Memorandum.pdf",
"RelativePath": "30274",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:49:39",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/04/12 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA WATER AND SEWER AUTHORITY BOARD OF DIRECTORS MS. ELLEN O. BOARDMAN CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0184",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0227",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0187-INTRODUCTION.pdf",
"RelativePath": "30277",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30277,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0187_Memorandum.pdf",
"RelativePath": "30277",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:49:08",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/12 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHILD FATALITY REVIEW COMMITTEE LAURA E. HOUSE CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0187",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0226",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0293-INTRODUCTION.pdf",
"RelativePath": "30384",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/07/10 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30384,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/05/22 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0293_Memorandum.pdf",
"RelativePath": "30384",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:48:28",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/31 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA BOARD OF LIBRARY TRUSTEES NEIL ALBERT CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0293",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0225",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0292-INTRODUCTION.pdf",
"RelativePath": "30383",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/11/05 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30383,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/05/22 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0292_Memorandum.pdf",
"RelativePath": "30383",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:47:54",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/31 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DISTRICT OF COLUMBIA BOARD OF LIBRARY TRUSTEES FAITH G. HUBBARD CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0292",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0224",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0195-INTRODUCTION.pdf",
"RelativePath": "30285",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30285,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/12 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0195_Memorandum.pdf",
"RelativePath": "30285",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:47:23",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/04/26 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "PUBLIC CHARTER SCHOOL BOARD SARA MEAD CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0195",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0223",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0194-INTRODUCTION.pdf",
"RelativePath": "30284",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30284,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/12 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0194_Memorandum.pdf",
"RelativePath": "30284",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:46:51",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/04/26 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "PUBLIC CHARTER SCHOOL BOARD BARBARA B. NOPHLIN CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0194",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0222",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0193-INTRODUCTION.pdf",
"RelativePath": "30283",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30283,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/12 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0193_Memorandum.pdf",
"RelativePath": "30283",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:46:20",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/04/26 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "PUBLIC CHARTER SCHOOL BOARD HERBERT R. TILLERY CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0193",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0221",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0296-INTRODUCTION.pdf",
"RelativePath": "30387",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30387,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/05/23 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 12:45:46",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/31 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "WASHINGTON INTERNATIONAL SCHOOL REFUNDING REVENUE BONDS PROJECT APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0296",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0220",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0295-INTRODUCTION.pdf",
"RelativePath": "30386",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30386,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/05/23 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 12:45:14",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/31 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "D.C. PREPARATORY ACADEMY REVENUE BONDS APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0295",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0219",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0228-INTRODUCTION.pdf",
"RelativePath": "30319",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30319,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/04/29 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 12:44:44",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "SEE FOREVER FOUNDATION/MAYA ANGELOU PUBLIC CHARTER SCHOOL REVENUE BONDS PROJECT APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0228",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0218",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0298-INTRODUCTION.pdf",
"RelativePath": "30389",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30389,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/05/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 12:44:10",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/06/07 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HOUSING PRODUCTION TRUST FUND BOARD CHAIRPERSON DAVID BOWERS CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0298",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0217",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0170-INTRODUCTION.pdf",
"RelativePath": "30260",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30260,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/03/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0170_Memorandum.pdf",
"RelativePath": "30260",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:43:32",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HOUSING PRODUCTION TRUST FUND BOARD DAVID C. BOWERS CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0170",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0216",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0169-INTRODUCTION.pdf",
"RelativePath": "30259",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30259,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/03/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0169_Memorandum.pdf",
"RelativePath": "30259",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:43:03",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HOUSING PRODUCTION TRUST FUND BOARD JAMES D. KNIGHT CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0169",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0215",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0168-INTRODUCTION.pdf",
"RelativePath": "30258",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30258,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/03/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0168_Memorandum.pdf",
"RelativePath": "30258",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:42:25",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HOUSING PRODUCTION TRUST FUND BOARD M. CRAIG PASCAL CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0168",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0214",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0167-INTRODUCTION.pdf",
"RelativePath": "30257",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30257,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/03/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0167_Memorandum.pdf",
"RelativePath": "30257",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:41:55",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HOUSING PRODUCTION TRUST FUND BOARD SUE ANN MARSHALL CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0167",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0213",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0166-INTRODUCTION.pdf",
"RelativePath": "30256",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30256,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/03/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0166_Memorandum.pdf",
"RelativePath": "30256",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:41:22",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HOUSING PRODUCTION TRUST FUND BOARD DAVID J. ROODBERG CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0166",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0211",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0164-INTRODUCTION.pdf",
"RelativePath": "30254",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30254,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/03/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0164_Memorandum.pdf",
"RelativePath": "30254",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:40:02",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HOUSING PRODUCTION TRUST FUND BOARD ORAMENTA NEWSOME CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0164",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0210",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0163-INTRODUCTION.pdf",
"RelativePath": "30253",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30253,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/03/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0163_Memorandum.pdf",
"RelativePath": "30253",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:39:32",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HOUSING PRODUCTION TRUST FUND BOARD JACQUELINE V. PRIOR CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0163",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0209",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0162-INTRODUCTION.pdf",
"RelativePath": "30252",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30252,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/03/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0162_Memorandum.pdf",
"RelativePath": "30252",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:39:02",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "HOUSING PRODUCTION TRUST FUND BOARD STANLEY JACKSON CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0162",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0208",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0300-INTRODUCTION.pdf",
"RelativePath": "30391",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30391,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/05/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 12:38:25",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/06/07 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DIRECTOR OF THE ALCOHOLIC BEVERAGE REGULATION ADMINISTRATION FREDERICK P. MOOSALLY CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0300",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0205",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0233-INTRODUCTION.pdf",
"RelativePath": "30324",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/10/08 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30324,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0233_Memorandum.pdf",
"RelativePath": "30324",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:37:44",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BOARD OF TRUSTEES OF THE UNIVERSITY OF THE DISTRICT OF COLUMBIA GEORGE VRADENBURG CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0233",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0204",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0232-INTRODUCTION.pdf",
"RelativePath": "30323",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/10/08 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30323,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0232_Memorandum.pdf",
"RelativePath": "30323",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:37:13",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BOARD OF TRUSTEES OF THE UNIVERSITY OF THE DISTRICT OF COLUMBIA ELAINE A. CRIDER CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0232",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0203",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0231-INTRODUCTION.pdf",
"RelativePath": "30322",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/10/08 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30322,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0231_Memorandum.pdf",
"RelativePath": "30322",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:36:00",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BOARD OF TRUSTEES OF THE UNIVERSITY OF THE DISTRICT OF COLUMBIA MAJOR GENERAL ERROL R. SCHWARTZ CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0231",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0202",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0230-INTRODUCTION.pdf",
"RelativePath": "30321",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/10/08 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30321,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0230_Memorandum.pdf",
"RelativePath": "30321",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 12:35:28",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BOARD OF TRUSTEES OF THE UNIVERSITY OF THE DISTRICT OF COLUMBIA DR. GABRIELA D. LEMUS CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0230",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0201",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0229-INTRODUCTION.pdf",
"RelativePath": "30320",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30320,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/04/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 12:35:00",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BOARD OF TRUSTEES OF THE UNIVERSITY OF THE DISTRICT OF COLUMBIA MS. ALEJANDRA Y. CASTILLO CONFIRMAITON RESOLUTION OF 2013.",
"Title": "PR20-0229",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0266",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0356-INTRODUCTION.pdf",
"RelativePath": "30447",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/26 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": true,
"ID": 30447,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/06/24 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0356_Memorandum.pdf",
"RelativePath": "30447",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 11:47:08",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/07/02 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "COMPENSATION COLLECTIVE BARGAINING AGREEMENT BETWEEN THE DISTRICT OF COLUMBIA DEPARTMENT ON MENTAL HEALTH AND DISTRICT OF COLUMBIA NURSES ASSOCIATION EMERGENCY APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0356",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0264",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0330-INTRODUCTION.pdf",
"RelativePath": "30421",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/18 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30421,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/06/06 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 11:43:32",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "COMPENSATION AGREEMENT BETWEEN THE DISTRICT OF COLUMBIA AND COMPENSATION UNIT 33 EMERGENCY APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0330",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0262",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0327-INTRODUCTION.pdf",
"RelativePath": "30418",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/18 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30418,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/06/06 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 11:43:01",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "WASHINGTON TEACHERS\u2019 UNION VOLUNTARY EMPLOYEE BENEFICIARY ASSOCIATION FUND EMERGENCY APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0327",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0116",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0375-INTRODUCTION.pdf",
"RelativePath": "29531",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29531,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/07/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0375_Memorandum.pdf",
"RelativePath": "29531",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 11:42:30",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "MODIFICATION NOS. 2-9 TO CONTRACT NO. DCKA-2011-R-0180 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0375",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0115",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0374-INTRODUCTION.pdf",
"RelativePath": "29530",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29530,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/07/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0374_Memorandum.pdf",
"RelativePath": "29530",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 11:41:53",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "TASK ORDER NO. DCKA-2013-T-0006 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0374",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0129",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0377-INTRODUCTION.pdf",
"RelativePath": "29533",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29533,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/07/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0377_Memorandum.pdf",
"RelativePath": "29533",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 11:41:03",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CONTRACT NO. GAGA-2011-C-0137 OPTION YEAR ONE CONTRACT MODIFICATION APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0377",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0138",
"AdditionalInformation": "Approves HCA with National Center on Institutions and Alternatives, Metropolitan Educational Solutions, Universal Healthcare Management Services, Umbrella Therapeutic Services, Extended House, Sasha Bruce Youthwork, PCC Stride, Boys Town of Washington DC, Center City Community Corp, Progressive Life Center.",
"AttachmentPath": [
{
"Name": "B20-0386-INTRODUCTION.pdf",
"RelativePath": "29542",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29542,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/07/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0386_Memorandum.pdf",
"RelativePath": "29542",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 11:40:36",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "OMNIBUS THERAPEUTIC FAMILY HOMES, EXTENDED FAMILY HOMES, RESIDENTIAL TREATMENT AND CASE MANAGEMENT SERVICES HUMAN CARE AGREEMENTS APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0386",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0139",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0389-INTRODUCTION.pdf",
"RelativePath": "29545",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29545,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/07/09 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0389_Memorandum.pdf",
"RelativePath": "29545",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 11:40:05",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "OMNIBUS WORK READINESS AND JOB PLACEMENT SERVICES HUMAN CARE AGREEMENTS APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0389",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0113",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0352-INTRODUCTION.pdf",
"RelativePath": "29508",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/26 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29508,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/06/21 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0352_Memorandum.pdf",
"RelativePath": "29508",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 11:39:40",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "EXTENSION OF TIME TO DISPOSE OF HINE JUNIOR HIGH SCHOOL EMERGENCY APPROVAL ACT OF 2013.",
"Title": "B20-0352",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0079-INTRODUCTION.pdf",
"RelativePath": "29235",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 223,
"Name": "Jim Graham"
}
],
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/22 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29235,
"Introducer": [
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2013/01/22 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 11:35:37",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/02/01 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "OFFICE OF JOBS CZAR ESTABLISHMENT ACT OF 2013.",
"Title": "B20-0079",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0582-Introduction.pdf",
"RelativePath": "30731",
"Type": "Introduction"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30731,
"Introducer": [
{
"Id": 226,
"Name": "Vincent Orange"
}
],
"IntroductionDate": "2013/11/19 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0582_Memorandum.pdf",
"RelativePath": "30731",
"Type": "Memorandum"
}
],
"Modified": "2014/04/03 11:35:07",
"Phase": 3.0,
"PlaceOfIntroduction": "3;#Committee of the Whole",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/11/22 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "District of Columbia Unemployment Profile Act of 2013",
"Title": "B20-0582",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0124",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0330-INTRODUCTION.pdf",
"RelativePath": "29486",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
},
{
"Id": 196,
"Name": "Government Operations"
},
{
"Id": 202,
"Name": "Workforce and Community Affairs"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/18 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29486,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/06/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/03 11:13:35",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHANGE ORDER NO. 001 THROUGH NO. 006 TO CONTRACT NO. GM-10-DPR-0308B-FM APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0330",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0636-Introduction.pdf",
"RelativePath": "30948",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30948,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 140.0,
"LegislationType": "4;#Temporary Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0636_Memorandum.pdf",
"RelativePath": "30948",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 16:34:24",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Educator Evaluation Data Collection Temporary Amendment Act of 2014",
"Title": "B20-0636",
"VendorName": null,
"WithDrawnDate": "2014/04/02 00:00:00",
"WithdrawnBy": [
{
"Id": 0,
"Name": "the Mayor"
}
]
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0635-Introduction.pdf",
"RelativePath": "30947",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30947,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 140.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0635_Memorandum.pdf",
"RelativePath": "30947",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 16:33:11",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Educator Evaluation Data Collection Emergency Amendment Act of 2014",
"Title": "B20-0635",
"VendorName": null,
"WithDrawnDate": "2014/04/02 00:00:00",
"WithdrawnBy": [
{
"Id": 0,
"Name": "the Mayor"
}
]
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0614-Introduction.pdf",
"RelativePath": "30934",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30934,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 140.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0614_Memorandum.pdf",
"RelativePath": "30934",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 16:31:36",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Educator Evaluation Data Collection Emergency Declaration Resolution of 2014",
"Title": "PR20-0614",
"VendorName": null,
"WithDrawnDate": "2014/04/02 00:00:00",
"WithdrawnBy": [
{
"Id": 0,
"Name": "the Mayor"
}
]
},
{
"ActNumber": "R20-0186",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0107-INTRODUCTION.pdf",
"RelativePath": "30197",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/03/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/09/24 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30197,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/02/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0107_Memorandum.pdf",
"RelativePath": "30197",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 16:18:59",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/03/08 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "SLOWE SCHOOL DISPOSITION APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0107",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0185",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0106-INTRODUCTION.pdf",
"RelativePath": "30196",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/03/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/09/24 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30196,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/02/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0106_Memorandum.pdf",
"RelativePath": "30196",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 16:17:20",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/03/08 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "SLOWE SCHOOL SURPLUS DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0106",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0184",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0096-INTRODUCTION.pdf",
"RelativePath": "30186",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/19 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/07/09 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30186,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/02/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0096_Memorandum.pdf",
"RelativePath": "30186",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 16:16:37",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/02/22 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "903 FRANKLIN STREET, NE DISPOSITION APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0096",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0183",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0095-INTRODUCTION.pdf",
"RelativePath": "30185",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/19 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/07/09 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30185,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/02/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0095_Memorandum.pdf",
"RelativePath": "30185",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 16:16:01",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/02/22 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "903 FRANKLIN STREET, NE SURPLUS DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0095",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0182",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0203-INTRODUCTION.pdf",
"RelativePath": "30293",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/07/30 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30293,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0203_Memorandum.pdf",
"RelativePath": "30293",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 16:15:23",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/03 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BREW PUB AND WINE PUB HOURS RESOLUTION OF 2013.",
"Title": "PR20-0203",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0181",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0299-INTRODUCTION.pdf",
"RelativePath": "30390",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30390,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/05/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/02 16:13:49",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/06/07 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "REVISED ABRA CIVIL PENALTY SCHEDULE APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0299",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0180",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0250-INTRODUCTION.pdf",
"RelativePath": "30341",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/07/06 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30341,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/05/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0250_Memorandum.pdf",
"RelativePath": "30341",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 16:13:04",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/10 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "SAFETY PLAN RULEMAKING APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0250",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0106",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0359-INTRODUCTION.pdf",
"RelativePath": "29515",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29515,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/06/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0359_Memorandum.pdf",
"RelativePath": "29515",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 16:06:20",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "SOUTHWEST WATERFRONT PROJECT QUITCLAIM DEED AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0359",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0152",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0118-INTRODUCTION.pdf",
"RelativePath": "29274",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29274,
"Introducer": [
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 228,
"Name": "Tommy Wells"
},
{
"Id": 221,
"Name": "Mary Cheh"
}
],
"IntroductionDate": "2013/02/05 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0036",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0118_Memorandum.pdf",
"RelativePath": "29274",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 16:03:32",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/02/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "MARRIAGE OFFICIANT AMENDMENT ACT OF 2013.",
"Title": "B20-0118",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0134",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0245-INTRODUCTION.pdf",
"RelativePath": "29401",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29401,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/04/17 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0031",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0245_Memorandum.pdf",
"RelativePath": "29401",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 16:02:21",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BOARD OF ELECTIONS PETITION CIRCULATION REQUIREMENTS AMENDMENT ACT OF 2013.",
"Title": "B20-0245",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0135",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0069-INTRODUCTION.pdf",
"RelativePath": "29225",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/01/22 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29225,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
}
],
"IntroductionDate": "2013/01/15 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0032",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0069_Memorandum.pdf",
"RelativePath": "29225",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 15:53:27",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/01/25 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "DIMITAR PESHEV PLAZA ACT OF 2013.",
"Title": "B20-0069",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0136",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0092-INTRODUCTION.pdf",
"RelativePath": "29248",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": [
{
"Id": 191,
"Name": "Business, Consumer, and Regulatory Affairs"
},
{
"Id": 193,
"Name": "Economic Development"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/19 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29248,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/01/31 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0033",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0092_Memorandum.pdf",
"RelativePath": "29248",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 15:43:52",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/02/08 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "CAPITOL HILL BUSINESS IMPROVEMENT DISTRICT AMENDMENT ACT OF 2013.",
"Title": "B20-0092",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0122",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0241-INTRODUCTION.pdf",
"RelativePath": "29397",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29397,
"Introducer": [
{
"Id": 222,
"Name": "Jack Evans"
}
],
"IntroductionDate": "2013/04/12 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0029",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0241_Memorandum.pdf",
"RelativePath": "29397",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 15:39:56",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "DELTA SIGMA THETA INC. WAY ACT OF 2013.",
"Title": "B20-0241",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0123",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0250-INTRODUCTION.pdf",
"RelativePath": "29406",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/30 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29406,
"Introducer": [
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"IntroductionDate": "2013/04/24 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0030",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0250_Memorandum.pdf",
"RelativePath": "29406",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 15:39:27",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/05/03 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "ATLAS COURT ALLEY DESIGNATION ACT OF 2013.",
"Title": "B20-0250",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0120",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0109-INTRODUCTION.pdf",
"RelativePath": "29265",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
},
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 228,
"Name": "Tommy Wells"
}
],
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/02/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29265,
"Introducer": [
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 220,
"Name": "David Catania"
},
{
"Id": 221,
"Name": "Mary M.Cheh"
}
],
"IntroductionDate": "2013/02/05 00:00:00",
"IsApproved": true,
"LawNumber": "L20-0027",
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 130.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/02 15:35:06",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/02/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "TESTING INTEGRITY ACT OF 2013.",
"Title": "B20-0109",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0102",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0297-INTRODUCTION.pdf",
"RelativePath": "29453",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 194,
"Name": "Education"
},
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29453,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/05/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/02 15:32:50",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHANGE ORDERS NO. 019 THROUGH NO. 027 TO CONTRACT NO. GM-09-M-0511-FM APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0297",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0196",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0340-INTRODUCTION.pdf",
"RelativePath": "30431",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/26 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30431,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/06/17 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/02 15:31:38",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "NATIONAL LAW ENFORCEMENT OFFICERS MEMORIAL FUND, INC. REVENUE BONDS PROJECT EMERGENCY APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0340",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0194",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0281-INTRODUCTION.pdf",
"RelativePath": "30372",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 197,
"Name": "Health"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/22 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30372,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/05/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/02 15:21:38",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CONTRACT NO. DCHT-2012-C-0025 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0281",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0101",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0285-INTRODUCTION.pdf",
"RelativePath": "29441",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 197,
"Name": "Health"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/05/22 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29441,
"Introducer": [
{
"Id": "227",
"Name": "Phil Pmendelson"
}
],
"IntroductionDate": "2013/05/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/04/02 15:20:54",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/05/24 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CONTRACT NO. DCHT-2012-C-0025 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0285",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to Section 808(a) of the District of Columbia Appropriations Act, 2013\", the attached \"FY 2014 Grant Budget Modifications of March 5, 2014\", GBM 20-93, was filed on March 12, 2014 in the Office of the Secretary. The Council's 14 calendar day review period begins Thursday, March 13, 2014 and ends Wednesday, March 26, 2014. The modification will be deemed approved on Thursday, March 27, 2014, unless a notice of disapproval is filed within the 14 days. If a notice of disapproval is filed prior to that date, the Council's review period will be extended to 30 calendar days. ",
"AttachmentPath": [
{
"Name": "GBM20-0093-Introduction.pdf",
"RelativePath": "31373",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/03/27 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31373,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/12 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "8;#Grant Budget Modification",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "11;#Grant Budget Modification",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "GBM20-0093_Memorandum.pdf",
"RelativePath": "31373",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 14:50:40",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Grant Budget Modifications of March 5, 2014 Approval Request",
"Title": "GBM20-0093",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to Section 808(a) of the District of Columbia Appropriations Act, 2013\", the attached \"FY 2014 Grant Budget Modifications of February 28, 2014\", GBM 20-92, was filed on March 12, 2014 in the Office of the Secretary. The Council's 14 calendar day review period begins Thursday, March 13, 2014 and ends Wednesday, March 26, 2014. The modification will be deemed approved on Thursday, March 27, 2014, unless a notice of disapproval is filed within the 14 days. If a notice of disapproval is filed prior to that date, the Council's review period will be extended to 30 calendar days. ",
"AttachmentPath": [
{
"Name": "GBM20-0092-Introduction.pdf",
"RelativePath": "31372",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/03/27 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31372,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/12 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "8;#Grant Budget Modification",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "11;#Grant Budget Modification",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "GBM20-0092_Memorandum.pdf",
"RelativePath": "31372",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 14:50:15",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Grant Budget Modifications of February 28, 2014 Approval Request",
"Title": "GBM20-0092",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Pursuant to Section 808(a) of the District of Columbia Appropriations Act, 2013\", the attached \"FY 2014 Grant Budget Modifications of February 25, 2014\", GBM 20-90, was filed on March 7, 2014 in the Office of the Secretary. The Council's 14 calendar day review period begins Monday, March 10, 2014 and ends Sunday, March 23, 2014. The modification will be deemed approved on Monday, March 24, 2014, unless a notice of disapproval is filed within the 14 days. If a notice of disapproval is filed prior to that date, the Council's review period will be extended to 30 calendar days. ",
"AttachmentPath": [
{
"Name": "GBM20-0091-Introduction.pdf",
"RelativePath": "31363",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "",
"Deemed": "Approved",
"DeemedOn": "2014/03/24 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31363,
"Introducer": [
{
"Id": "227",
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "8;#Grant Budget Modification",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "11;#Grant Budget Modification",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "GBM20-0091_Memorandum.pdf",
"RelativePath": "31363",
"Type": "Memorandum"
}
],
"Modified": "2014/04/02 14:49:55",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": null,
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Grant Budget Modifications of February 25, 2014 Approval Request",
"Title": "GBM20-0091",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0716-Introduction.pdf",
"RelativePath": "31483",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31483,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/27 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0716_Memorandum.pdf",
"RelativePath": "31483",
"Type": "Memorandum"
}
],
"Modified": "2014/04/01 15:33:50",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Compensation Award for the Collective Bargaining Agreement between the Government of the District of Columbia Department of Health, Department of Youth Rehabilitation Services, Department on Disability Services, Department of Health Care Finance, Child and Family Services Agency and the Office of the Chief Medical Examiner (Compensation Unit 13) and the District of Columbia Nurses Association Emergency Declaration Resolution of 2014",
"Title": "PR20-0716",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0315-INTRODUCTION.pdf",
"RelativePath": "29471",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 224,
"Name": "David Grosso"
},
{
"Id": 217,
"Name": "Marion Barry"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 221,
"Name": "Mary Cheh"
},
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/06/04 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29471,
"Introducer": [
{
"Id": 220,
"Name": "David Catania"
}
],
"IntroductionDate": "2013/06/04 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0315_Memorandum.pdf",
"RelativePath": "29471",
"Type": "Memorandum"
}
],
"Modified": "2014/03/31 18:11:17",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/06/14 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "PUBLIC EDUCATION GOVERNANCE IMPROVEMENT ACT OF 2013.",
"Title": "B20-0315",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0178-INTRODUCTION.pdf",
"RelativePath": "29334",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 226,
"Name": "Vincent Orange"
},
{
"Id": 223,
"Name": "Jim Graham"
}
],
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/03/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29334,
"Introducer": [
{
"Id": 217,
"Name": "Marion Barry"
}
],
"IntroductionDate": "2013/03/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0178_Memorandum.pdf",
"RelativePath": "29334",
"Type": "Memorandum"
}
],
"Modified": "2014/03/28 18:43:28",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/03/15 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "COMPULSORY PRE-SCHOOL ATTENDANCE AMENDMENT ACT OF 2013.",
"Title": "B20-0178",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0407-INTRODUCTION.pdf",
"RelativePath": "29563",
"Type": "INTRODUCTION"
}
],
"CoSponsor": [
{
"Id": 216,
"Name": "Yvette Alexander"
},
{
"Id": 218,
"Name": "Anita Bonds"
},
{
"Id": 219,
"Name": "Muriel Bowser"
},
{
"Id": 222,
"Name": "Jack Evans"
},
{
"Id": 223,
"Name": "Jim Graham"
},
{
"Id": 225,
"Name": "Kenyan Mcduffie"
}
],
"ComitteeReferral": [
{
"Id": 194,
"Name": "Education"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/07/10 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29563,
"Introducer": [
{
"Id": 221,
"Name": "Mary M.Cheh"
}
],
"IntroductionDate": "2013/07/10 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "1;#Permanent Bill",
"LetterGenerated": true,
"MemoLink": null,
"Modified": "2014/03/28 18:42:52",
"Phase": 3.0,
"PlaceOfIntroduction": "2;#Legislative Meeting",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/07/19 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "HEALTHY TOTS ACT OF 2013.",
"Title": "B20-0407",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0660-Introduction.pdf",
"RelativePath": "31285",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/03/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/06/12 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31285,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/02/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0660_Memorandum.pdf",
"RelativePath": "31285",
"Type": "Memorandum"
}
],
"Modified": "2014/03/28 17:32:16",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/03/07 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Chief Medical Examiner Roger Mitchell Confirmation Resolution of 2014",
"Title": "PR20-0660",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0353",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0497-Introduction.pdf",
"RelativePath": "30588",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/03/06 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30588,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0497_Memorandum.pdf",
"RelativePath": "30588",
"Type": "Memorandum"
}
],
"Modified": "2014/03/28 10:41:07",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BENNING SCHOOL SURPLUS DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0497",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0352",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0496-Introduction.pdf",
"RelativePath": "30587",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 193,
"Name": "Economic Development"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2013/12/03 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30587,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0496_Memorandum.pdf",
"RelativePath": "30587",
"Type": "Memorandum"
}
],
"Modified": "2014/03/28 10:40:07",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "J.F. COOK SCHOOL DISPOSITION APPROVAL RESOLUTION OF 2013.",
"Title": "PR20-0496",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0351",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0495-Introduction.pdf",
"RelativePath": "30586",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/03/06 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30586,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0495_Memorandum.pdf",
"RelativePath": "30586",
"Type": "Memorandum"
}
],
"Modified": "2014/03/28 10:39:15",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "J.F. COOK SCHOOL SURPLUS DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0495",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0494-Introduction.pdf",
"RelativePath": "30585",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2013/11/30 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30585,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0494_Memorandum.pdf",
"RelativePath": "30585",
"Type": "Memorandum"
}
],
"Modified": "2014/03/28 10:36:44",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "MOTOR VEHICLE THEFT PREVENTION COMMISSION LAWRENCE A. RICHARDSON, JR. CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0494",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0326",
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0493-Introduction.pdf",
"RelativePath": "30584",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/01/22 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30584,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/07 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0493_Memorandum.pdf",
"RelativePath": "30584",
"Type": "Memorandum"
}
],
"Modified": "2014/03/28 10:34:29",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/18 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "OFFICE OF EMPLOYEE APPEALS VERA ABBOTT CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0493",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0491-Introduction.pdf",
"RelativePath": "30582",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30582,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0491_Memorandum.pdf",
"RelativePath": "30582",
"Type": "Memorandum"
}
],
"Modified": "2014/03/28 10:31:36",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DOMESTIC VIOLENCE FATALITY REVIEW BOARD DIANNE M. HAMPTON CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0491",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0489-Introduction.pdf",
"RelativePath": "30580",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30580,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/02 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0489_Memorandum.pdf",
"RelativePath": "30580",
"Type": "Memorandum"
}
],
"Modified": "2014/03/28 10:29:53",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "DOMESTIC VIOLENCE FATALITY REVIEW BOARD LISA V. MARTIN CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0489",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0485-Introduction.pdf",
"RelativePath": "30576",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 195,
"Name": "Finance and Revenue"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "2014/01/22 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30576,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/30 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 100.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0485_Memorandum.pdf",
"RelativePath": "30576",
"Type": "Memorandum"
}
],
"Modified": "2014/03/28 10:22:33",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2013/10/11 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "WASHINGTON CONVENTION AND SPORTS AUTHORITY BOARD OF DIRECTORS CHERYLE WANNER DOGGETT CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0485",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0223",
"AdditionalInformation": "Vendor - Keystone Plus Construction Corporation",
"AttachmentPath": [
{
"Name": "B20-0527-INTRODUCTION.pdf",
"RelativePath": "30595",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": true,
"HasCount": false,
"ID": 30595,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/11 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0527_Memorandum.pdf",
"RelativePath": "30595",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 11:18:44",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHANGE ORDER NO. FY13-007 THROUGH NO. FY13-013 TO CONTRACT GM-10-0707A-FM APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0527",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0318",
"AdditionalInformation": "Vendor - Keystone Plus Construction Corporation",
"AttachmentPath": [
{
"Name": "PR20-0504-INTRODUCTION.pdf",
"RelativePath": "30626",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30626,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/11 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0504_Memorandum.pdf",
"RelativePath": "30626",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 11:17:04",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHANGE ORDER NO. FY13-007 THROUGH NO. FY13-013 TO CONTRACT GM-10-0707A-FM APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0504",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0222",
"AdditionalInformation": "Vendor - HRGM Corporation",
"AttachmentPath": [
{
"Name": "B20-0526-INTRODUCTION.pdf",
"RelativePath": "30594",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30594,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/11 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0526_Memorandum.pdf",
"RelativePath": "30594",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 11:15:54",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHANGE ORDER NO. FY13-15 THROUGH NO. FY13-023 TO CONTRACT GM-10-0707D-FM APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0526",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0317",
"AdditionalInformation": "Vendor - HRGM Corporation",
"AttachmentPath": [
{
"Name": "PR20-0503-INTRODUCTION.pdf",
"RelativePath": "30625",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30625,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/11 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0503_Memorandum.pdf",
"RelativePath": "30625",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 11:15:04",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHANGE ORDER NO. FY13-15 THROUGH NO. FY13-023 TO CONTRACT GM-10-0707D-FM APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0503",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0355",
"AdditionalInformation": "Vendor - Consys, Inc.",
"AttachmentPath": [
{
"Name": "PR20-0500-INTRODUCTION.pdf",
"RelativePath": "30622",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30622,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/08 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0500_Memorandum.pdf",
"RelativePath": "30622",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 10:53:06",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "UDC",
"ShortTitle": "CONTRACT NO. GF-2011-C-0039 AND CHANGE ORDER'S NO. 4-5 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0500",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0213",
"AdditionalInformation": "Vendor - Delmarva Foundation",
"AttachmentPath": [
{
"Name": "B20-0522-INTRODUCTION.pdf",
"RelativePath": "29678",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 29678,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0522_Memorandum.pdf",
"RelativePath": "29678",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 10:51:15",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CONTRACT NO. DCHT-2013-C-0135 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0522",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0339",
"AdditionalInformation": "Vendor - Delmarva Foundation",
"AttachmentPath": [
{
"Name": "PR20-0492-Introduction.pdf",
"RelativePath": "30583",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30583,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0492_Memorandum.pdf",
"RelativePath": "30583",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 10:37:21",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CONTRACT NO. DCHT-2013-C-0135 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0492",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0341",
"AdditionalInformation": "Vendor - Brad Hall and Associates",
"AttachmentPath": [
{
"Name": "PR20-0540-Introduction.pdf",
"RelativePath": "30667",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30667,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0540_Memorandum.pdf",
"RelativePath": "30667",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 10:33:39",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Contract No. CW23336 Emergency Approval Resolution of 2013",
"Title": "PR20-0540",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0340",
"AdditionalInformation": "Vendor - Brad Hall and Associates",
"AttachmentPath": [
{
"Name": "PR20-0539-Introduction.pdf",
"RelativePath": "30666",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30666,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/01 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0539_Memorandum.pdf",
"RelativePath": "30666",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 10:32:48",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Contract No. CW23336 Emergency Declaration Resolution of 2013",
"Title": "PR20-0539",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0360",
"AdditionalInformation": "Vendor - LimnoTech, Inc. To approve multiyear contract CA 20-207.",
"AttachmentPath": [
{
"Name": "PR20-0529-Introduction.pdf",
"RelativePath": "30655",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30655,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0529_Memorandum.pdf",
"RelativePath": "30655",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 10:30:59",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed Multiyear Contract No. DCAM-13-NC-0112 Emergency Approval Resolution of 2013",
"Title": "PR20-0529",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0359",
"AdditionalInformation": "Vendor - LimnoTech, Inc. To approve multiyear contract CA 20-207.",
"AttachmentPath": [
{
"Name": "PR20-0528-Introduction.pdf",
"RelativePath": "30654",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30654,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/28 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0528_Memorandum.pdf",
"RelativePath": "30654",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 10:29:57",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Proposed Multiyear Contract No. DCAM-13-NC-0112 Emergency Declaration Resolution of 2013",
"Title": "PR20-0528",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0225",
"AdditionalInformation": "Vendors - Ward & Ward Mental Health Services, Inc.; Multi-Therapeutic Services, Inc.; Capital Care Inc.",
"AttachmentPath": [
{
"Name": "B20-0538-INTRODUCTION.pdf",
"RelativePath": "30606",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30606,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/22 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0538_Memorandum.pdf",
"RelativePath": "30606",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 10:28:07",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "OMNIBUS RESIDENTIAL SERVICES HUMAN CARE AGREEMENTS MODIFICATIONS APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0538",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0337",
"AdditionalInformation": "Vendors - Ward & Ward Mental Health Services, Inc.; Multi-Therapeutic Services, Inc.; Capital Care Inc.",
"AttachmentPath": [
{
"Name": "PR20-0522-INTRODUCTION.pdf",
"RelativePath": "30644",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 198,
"Name": "Human Services"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30644,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/22 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0522_Memorandum.pdf",
"RelativePath": "30644",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 10:26:59",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "OMNIBUS RESIDENTIAL SERVICES HUMAN CARE AGREEMENTS MODIFICATIONS APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0522",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0395",
"AdditionalInformation": "Vendor - Baker and Taylor Inc.",
"AttachmentPath": [
{
"Name": "PR20-0608-Introduction.pdf",
"RelativePath": "30928",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/07 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30928,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0608_Memorandum.pdf",
"RelativePath": "30928",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 09:44:01",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "District of Columbia Public Library",
"ShortTitle": "Contract DCPL-2009-C-0004B Modification Approval and Payment Authorization Emergency Declaration Resolution of 2013 ",
"Title": "PR20-0608",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0382",
"AdditionalInformation": "Vendor - Xerox State and Local Solutions, Inc.",
"AttachmentPath": [
{
"Name": "PR20-0599-Introduction.pdf",
"RelativePath": "30917",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/17 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30917,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "7;#Emergency Approval Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0599_Memorandum.pdf",
"RelativePath": "30917",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 09:41:04",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Contract No. DCKA-2012-C-0018 Emergency Approval Resolution of 2013",
"Title": "PR20-0599",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0224",
"AdditionalInformation": "Vendor - Broughton Construction Company",
"AttachmentPath": [
{
"Name": "B20-0534-INTRODUCTION.pdf",
"RelativePath": "30602",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30602,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0534_Memorandum.pdf",
"RelativePath": "30602",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 09:39:17",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHANGE ORDERS NO. FY 13-010 THROUGH NO. FY13-017 TO CONTRACT GM-10-S-0707C-FM APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0534",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0320",
"AdditionalInformation": "Vendor - Broughton Construction Company",
"AttachmentPath": [
{
"Name": "PR20-0519-INTRODUCTION.pdf",
"RelativePath": "30641",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 196,
"Name": "Government Operations"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": true,
"HasCount": false,
"ID": 30641,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0519_Memorandum.pdf",
"RelativePath": "30641",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 09:38:29",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "CHANGE ORDERS NO. FY 13-010 THROUGH NO. FY13-017 TO CONTRACT GM-10-S-0707C-FM APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0519",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "A20-0214",
"AdditionalInformation": "Vendor - Parkinson/Forrester JV LLC",
"AttachmentPath": [
{
"Name": "B20-0533-INTRODUCTION.pdf",
"RelativePath": "30601",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/05 00:00:00",
"Deemed": null,
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30601,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/11 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "B20-0533_Memorandum.pdf",
"RelativePath": "30601",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 09:37:02",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "UDC",
"ShortTitle": "CONTRACT NO. GF-2011-C-0030 AND CHANGE ORDER'S NO. 8-9 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY ACT OF 2013.",
"Title": "B20-0533",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0319",
"AdditionalInformation": "Vendor - Parkinson/Forrester JV LLC",
"AttachmentPath": [
{
"Name": "PR20-0506-INTRODUCTION.pdf",
"RelativePath": "30628",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 192,
"Name": "Committee of the Whole"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/15 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": true,
"HasCount": false,
"ID": 30628,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/10/11 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0506_Memorandum.pdf",
"RelativePath": "30628",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 09:31:21",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "UDC",
"ShortTitle": "CONTRACT NO. GF-2011-C-0030 AND CHANGE ORDER'S NO. 8-9 APPROVAL AND PAYMENT AUTHORIZATION EMERGENCY DECLARATION RESOLUTION OF 2013.",
"Title": "PR20-0506",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0362",
"AdditionalInformation": "Vendor - IPS Group Inc.",
"AttachmentPath": [
{
"Name": "PR20-0568-Introduction.pdf",
"RelativePath": "30821",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/03 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30821,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/26 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0568_Memorandum.pdf",
"RelativePath": "30821",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 09:27:56",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Modification No. 8 and Modification No. 10 to Contract No. DCKA-2010-C-0206 Approval and Payment Authorization Emergency Declaration Resolution of 2013",
"Title": "PR20-0568",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0361",
"AdditionalInformation": "Vendor - Parkmobile USA Inc.",
"AttachmentPath": [
{
"Name": "PR20-0566-Introduction.pdf",
"RelativePath": "30819",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/03 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30819,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/20 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0566_Memorandum.pdf",
"RelativePath": "30819",
"Type": "Memorandum"
}
],
"Modified": "2014/03/27 09:20:56",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Modification No. 9 to Contract No. DCKA-2011-C-0026 Approval and Payment Authorization Emergency Declaration Resolution of 2013",
"Title": "PR20-0566",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0625-Introduction.pdf",
"RelativePath": "31128",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/03/22 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31128,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/22 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0625_Memorandum.pdf",
"RelativePath": "31128",
"Type": "Memorandum"
}
],
"Modified": "2014/03/26 15:32:26",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/01/31 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Not-for-Profit Hospital Corporation Board of Directors Dr. Julianne M. Malveaux Confirmation Resolution of 2014",
"Title": "PR20-0625",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0624-Introduction.pdf",
"RelativePath": "31127",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/02/04 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/03/22 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 31127,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/22 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0624_Memorandum.pdf",
"RelativePath": "31127",
"Type": "Memorandum"
}
],
"Modified": "2014/03/26 15:31:53",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2014/01/31 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Not-for-Profit Hospital Corporation Board of Directors H. Patrick Swygert Confirmation Resolution of 2014",
"Title": "PR20-0624",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0623-Introduction.pdf",
"RelativePath": "30968",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2014/01/23 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2014/03/08 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30968,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/01/14 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0623_Memorandum.pdf",
"RelativePath": "30968",
"Type": "Memorandum"
}
],
"Modified": "2014/03/26 15:31:27",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "2014/01/24 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Board of Chiropractic Justin Palmer Confirmation Resolution of 2014",
"Title": "PR20-0623",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0704-Introduction.pdf",
"RelativePath": "31459",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 197,
"Name": "Health"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31459,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "PR20-0704_Memorandum.pdf",
"RelativePath": "31459",
"Type": "Memorandum"
}
],
"Modified": "2014/03/26 15:11:56",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Option Period Three of Memorandum of Understanding with the Defense Logistics Agency, Defense Supply Center Philadelphia Approval and Payment Authorization Emergency Declaration Resolution of 2014",
"Title": "PR20-0704",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "B20-0736-Introduction.pdf",
"RelativePath": "31460",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 197,
"Name": "Health"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2014/04/08 00:00:00",
"Deemed": "Approved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 31460,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2014/03/18 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "1;#Bill",
"LegislationNumber": null,
"LegislationStatus": 40.0,
"LegislationType": "3;#Emergency Bill",
"LetterGenerated": false,
"MemoLink": [
{
"Name": "B20-0736_Memorandum.pdf",
"RelativePath": "31460",
"Type": "Memorandum"
}
],
"Modified": "2014/03/26 15:11:09",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Option Period Three of Memorandum of Understanding with the Defense Logistics Agency, Defense Supply Center Philadelphia Approval and Payment Authorization Emergency Act of 2014",
"Title": "B20-0736",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": "R20-0381",
"AdditionalInformation": "Vendor - Xerox State and Local Solutions, Inc.",
"AttachmentPath": [
{
"Name": "PR20-0598-Introduction.pdf",
"RelativePath": "30916",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": [
{
"Id": 201,
"Name": "Transportation and the Environment"
}
],
"CouncilPeriod": "20;#20",
"DateRead": "2013/12/17 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30916,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/12/13 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 110.0,
"LegislationType": "8;#Emergency Declaration Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0598_Memorandum.pdf",
"RelativePath": "30916",
"Type": "Memorandum"
}
],
"Modified": "2014/03/26 14:52:00",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "Contract No. DCKA-2012-C-0018 Emergency Declaration Resolution of 2013",
"Title": "PR20-0598",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0426-Introduction.pdf",
"RelativePath": "30517",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 197,
"Name": "Health"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/10/01 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2013/11/16 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30517,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/09/16 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 140.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0426_Memorandum.pdf",
"RelativePath": "30517",
"Type": "Memorandum"
}
],
"Modified": "2014/03/26 13:17:58",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/09/27 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "BOARD OF MASSAGE THERAPY PAMELA L. BIRCHETT CONFIRMATION RESOLUTION OF 2013\n.",
"Title": "PR20-0426",
"VendorName": null,
"WithDrawnDate": "2014/01/03 00:00:00",
"WithdrawnBy": [
{
"Id": 0,
"Name": "the Mayor"
}
]
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0544-Introduction.pdf",
"RelativePath": "30675",
"Type": "Introduction"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 200,
"Name": "Retained by the Council"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/11/19 00:00:00",
"Deemed": "Disapproved",
"DeemedOn": "",
"FromOCR": false,
"HasCount": false,
"ID": 30675,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/11/05 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 60.0,
"LegislationType": "6;#Congressional Review Emer. Decl. Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0544_Memorandum.pdf",
"RelativePath": "30675",
"Type": "Memorandum"
}
],
"Modified": "2014/03/26 12:56:54",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "2;#Committee of the Whole",
"PublicationDate": "",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": null,
"ShortTitle": "Washington Metropolitan Area Transit Authority Board of Directors Congressional Review Emergency Declaration Resolution of 2013",
"Title": "PR20-0544",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0157-INTRODUCTION.pdf",
"RelativePath": "30247",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2013/07/09 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30247,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/03/21 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0157_Memorandum.pdf",
"RelativePath": "30247",
"Type": "Memorandum"
}
],
"Modified": "2014/03/26 12:36:12",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "COMMISSION ON RE-ENTRY AND RETURNING CITIZEN AFFAIRS LOUIS B. SAWYER, JR. CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0157",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": null,
"AttachmentPath": [
{
"Name": "PR20-0158-INTRODUCTION.pdf",
"RelativePath": "30248",
"Type": "INTRODUCTION"
}
],
"CoSponsor": null,
"ComitteeReferral": [
{
"Id": 199,
"Name": "Judiciary and Public Safety"
}
],
"CommitteeReferralComments": null,
"CouncilPeriod": "20;#20",
"DateRead": "2013/04/09 00:00:00",
"Deemed": "Approved",
"DeemedOn": "2013/07/09 00:00:00",
"FromOCR": false,
"HasCount": true,
"ID": 30248,
"Introducer": [
{
"Id": 227,
"Name": "Phil Mendelson"
}
],
"IntroductionDate": "2013/03/21 00:00:00",
"IsApproved": true,
"LawNumber": null,
"LegislationCategories": "2;#Resolution",
"LegislationNumber": null,
"LegislationStatus": 90.0,
"LegislationType": "9;#Proposed Resolution",
"LetterGenerated": true,
"MemoLink": [
{
"Name": "PR20-0158_Memorandum.pdf",
"RelativePath": "30248",
"Type": "Memorandum"
}
],
"Modified": "2014/03/26 12:34:47",
"Phase": 3.0,
"PlaceOfIntroduction": "1;#Office of the Secretary",
"PlaceRead": "1;#Legislative Meeting",
"PublicationDate": "2013/04/05 00:00:00",
"ReCoSponsor": null,
"ReComitteeReferral": null,
"ReCommitteeReferralComments": null,
"ReIntroducer": null,
"ReReferral": false,
"ReReferralDate": "",
"ReReferralPublishedDate": "",
"RequestOf": "the Mayor",
"ShortTitle": "COMMISSION ON RE-ENTRY AND RETURNING CITIZEN AFFAIRS PETRINA L. WILLIAMS CONFIRMATION RESOLUTION OF 2013.",
"Title": "PR20-0158",
"VendorName": null,
"WithDrawnDate": "",
"WithdrawnBy": null
},
{
"ActNumber": null,
"AdditionalInformation": "Notice is given that the attached request t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment