lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where filing_uuid = "e0064258-2a76-4e33-85df-e869dcd2fb59" sorted by filing_year descending
This data as json, CSV (advanced)
Suggested facets: received_date (date)
| id | filing_uuid | filing_type | registrant_name | registrant_id | client_name | filing_year ▲ | filing_period | issue_code | specific_issues | government_entities | income_amount | expense_amount | is_no_activity | is_termination | received_date |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2557882 | COMMUNITY ASSOCIATIONS INSTITUTE e0064258-2a76-4e33-85df-e869dcd2fb59 | Q4 | COMMUNITY ASSOCIATIONS INSTITUTE | 10228 | COMMUNITY ASSOCIATIONS INSTITUTE | 2020 | fourth_quarter | FIN | FDCPA Legislation * monitor H.R. 3948, H.R. 4403, H.R. 5021, H.R. 5003, H.R. 5001, H.R. 5013 COVID-19 Consumer Debt Collection Moratoria Legislation (H.R. 6800, H.R. 6423, H.R. 6379, S. 3565, House amendment to the Senate amendments to H.R. 925) * lobbying in opposition to consumer debt moratoria proposals that prevent collection of community association assessments that fund essential services * exempting community associations from the definition of creditor in above referenced legislation | Consumer Financial Protection Bureau (CFPB),Federal Communications Commission (FCC),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),SENATE,Small Business Administration (SBA) | 36150 | 0 | 0 | 2021-01-19T13:01:01.957000-05:00 | |
| 2557883 | COMMUNITY ASSOCIATIONS INSTITUTE e0064258-2a76-4e33-85df-e869dcd2fb59 | Q4 | COMMUNITY ASSOCIATIONS INSTITUTE | 10228 | COMMUNITY ASSOCIATIONS INSTITUTE | 2020 | fourth_quarter | DIS | Disaster Assistance for Community Associations * Lobbying in support of H.R. 5337, the Disaster Assistance Equity Act | Consumer Financial Protection Bureau (CFPB),Federal Communications Commission (FCC),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),SENATE,Small Business Administration (SBA) | 36150 | 0 | 0 | 2021-01-19T13:01:01.957000-05:00 | |
| 2557884 | COMMUNITY ASSOCIATIONS INSTITUTE e0064258-2a76-4e33-85df-e869dcd2fb59 | Q4 | COMMUNITY ASSOCIATIONS INSTITUTE | 10228 | COMMUNITY ASSOCIATIONS INSTITUTE | 2020 | fourth_quarter | SMB | Paycheck Protection Program (PPP) * lobbying in support of expanding PPP to include community associations for PPP loans * lobbying in support of increased funding for PPP * lobbying in support of expanding PPP to include 501(c)(6) organizations Economic Injury Disaster Loans (EIDL) * lobbying in support of additional funding for EIDL program * lobbying in support of lower EIDL interest rate | Consumer Financial Protection Bureau (CFPB),Federal Communications Commission (FCC),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),SENATE,Small Business Administration (SBA) | 36150 | 0 | 0 | 2021-01-19T13:01:01.957000-05:00 | |
| 2557885 | COMMUNITY ASSOCIATIONS INSTITUTE e0064258-2a76-4e33-85df-e869dcd2fb59 | Q4 | COMMUNITY ASSOCIATIONS INSTITUTE | 10228 | COMMUNITY ASSOCIATIONS INSTITUTE | 2020 | fourth_quarter | HOU | Community Association Financial Stability--COVID-19 National Emergency * Support for S. 3620, H.R. 6729, H.R. 6800 (Section 110202, & House amendment to the Senate amendments to H.R. 925 establishing a Housing/Homeowner Assistance Fund. Federal Housing Administration Condominium Project Approval * monitor FHA condominium project approval policy Consumer Financial Protection Bureau * Monitor and disseminate information on CFPB final QM definition rule Eviction and Foreclosure Moratoriums * Monitor and disseminate information concerning HUD/FHA and FHFA eviction and foreclosure moratoriums | Consumer Financial Protection Bureau (CFPB),Federal Communications Commission (FCC),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),SENATE,Small Business Administration (SBA) | 36150 | 0 | 0 | 2021-01-19T13:01:01.957000-05:00 | |
| 2557886 | COMMUNITY ASSOCIATIONS INSTITUTE e0064258-2a76-4e33-85df-e869dcd2fb59 | Q4 | COMMUNITY ASSOCIATIONS INSTITUTE | 10228 | COMMUNITY ASSOCIATIONS INSTITUTE | 2020 | fourth_quarter | EDU | Monitor Legislation Concerning financial aid for professional credentials and continuing education * S. 2123 - Break the Higher Education Monopoly Act * S. 379 - Using 529 Accounts for Professional Development Monitor Legislation Concerning Credential Qualifications * H.R. 1893/S.697 - the Fair Chance Licensing Act | Consumer Financial Protection Bureau (CFPB),Federal Communications Commission (FCC),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),SENATE,Small Business Administration (SBA) | 36150 | 0 | 0 | 2021-01-19T13:01:01.957000-05:00 | |
| 2557887 | COMMUNITY ASSOCIATIONS INSTITUTE e0064258-2a76-4e33-85df-e869dcd2fb59 | Q4 | COMMUNITY ASSOCIATIONS INSTITUTE | 10228 | COMMUNITY ASSOCIATIONS INSTITUTE | 2020 | fourth_quarter | COM | Amateur Radio Parity Act * Monitor status of H.R. 466 * Monitor FCC amateur radio-related petitions and proposed rulemakings * Lobbying on legislation to preempt community association governing documents Communications Decency Act * lobbying in support of amending Section 230 of the Communications Decency Act to establish a mechanism for an internet publisher to remove information from its platform(s) that facilitates a violation of law or contract Over-the-Air-Reception-Device (OTARD) Rule * monitor the status of FCC update of OTARD rule regarding wireless internet HUB antennas | Consumer Financial Protection Bureau (CFPB),Federal Communications Commission (FCC),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),SENATE,Small Business Administration (SBA) | 36150 | 0 | 0 | 2021-01-19T13:01:01.957000-05:00 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE lobbying_activities (
id INTEGER PRIMARY KEY,
filing_uuid TEXT NOT NULL,
filing_type TEXT NOT NULL,
registrant_name TEXT NOT NULL,
registrant_id INTEGER,
client_name TEXT NOT NULL,
filing_year INTEGER NOT NULL,
filing_period TEXT NOT NULL,
issue_code TEXT,
specific_issues TEXT,
government_entities TEXT,
income_amount INTEGER,
expense_amount INTEGER,
is_no_activity INTEGER DEFAULT 0,
is_termination INTEGER DEFAULT 0,
received_date TEXT,
CONSTRAINT fk_activity_filing FOREIGN KEY (filing_uuid)
REFERENCES lobbying_filings_raw(filing_uuid)
);
CREATE INDEX idx_act_client_name ON lobbying_activities(client_name COLLATE NOCASE);
CREATE INDEX idx_act_issue_code ON lobbying_activities(issue_code);
CREATE INDEX idx_act_filing_year ON lobbying_activities(filing_year);
CREATE INDEX idx_act_filing_uuid ON lobbying_activities(filing_uuid);