lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where filing_uuid = "3e6123af-e02f-4ab8-8fea-8bb2d7155e1c" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2608211 | CALIFORNIA ASSOCIATION OF REALTORS 3e6123af-e02f-4ab8-8fea-8bb2d7155e1c | Q1 | CALIFORNIA ASSOCIATION OF REALTORS | 7691 | CALIFORNIA ASSOCIATION OF REALTORS | 2021 | first_quarter | CIV | H.R. 5 - The Equality Act - C.A.R. advocated on expanding the Fair Housing Act to cover sexual orientation and sexual identity. | Federal Housing Finance Agency (FHFA),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),SENATE | 45521 | 0 | 0 | 2021-04-20T02:43:59.240000-04:00 | |
| 2608212 | CALIFORNIA ASSOCIATION OF REALTORS 3e6123af-e02f-4ab8-8fea-8bb2d7155e1c | Q1 | CALIFORNIA ASSOCIATION OF REALTORS | 7691 | CALIFORNIA ASSOCIATION OF REALTORS | 2021 | first_quarter | TAX | H.R. 613 - the SALT Deductibility Act - Would eliminate the cap on state and local tax deductions. C.A.R. advocated for a first time homebuyer tax credit with members of Congress. C.A.R. advocated for a tax credit for commercial property owners to convert their properties to residential units. C.A.R. discussed the issue of 1031 exchanges and their importance in the California real estate market with members of Congress. | Federal Housing Finance Agency (FHFA),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),SENATE | 45521 | 0 | 0 | 2021-04-20T02:43:59.240000-04:00 | |
| 2608213 | CALIFORNIA ASSOCIATION OF REALTORS 3e6123af-e02f-4ab8-8fea-8bb2d7155e1c | Q1 | CALIFORNIA ASSOCIATION OF REALTORS | 7691 | CALIFORNIA ASSOCIATION OF REALTORS | 2021 | first_quarter | SMB | H.R. 842 - Protecting the Right to Organize Act (PRO Act) - C.A.R. advocated on the bill's possible preemption of state law in determining the ability of real estate agents to choose to be independent contractors. H.R. 1799 - PPP Extension Act - The bill would extend the PPP to allow for two more months of applications. C.A.R. submitted comments to the House Financial Services Committee on the hearing entitled: Supporting Small Minority Owned Businesses Through the Pandemic | Federal Housing Finance Agency (FHFA),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),SENATE | 45521 | 0 | 0 | 2021-04-20T02:43:59.240000-04:00 | |
| 2608214 | CALIFORNIA ASSOCIATION OF REALTORS 3e6123af-e02f-4ab8-8fea-8bb2d7155e1c | Q1 | CALIFORNIA ASSOCIATION OF REALTORS | 7691 | CALIFORNIA ASSOCIATION OF REALTORS | 2021 | first_quarter | HOU | H.R. 1319 - The American Rescue Plan Act - C.A.R. advocated for financial support for mom-and-pop landlords, the paycheck protection program, and assistance for struggling homeowners. C.A.R. submitted comments for the House Financial Services Committee Hearing, Justice for All: Achieving Racial Equity Through Fair Access to Housing and Financial Services C.A.R. advocated on the topic of making housing a part of infrastructure and transportation. C.A.R. advocated to Congress and has submitted comments to HUD asking the FHA and HUD to reduce the FHA mortgage insurance premium. C.A.R. submitted comments to the FHFA for their Request for Information on Appraisal-Related Policies, Practices, and Processes. C.A.R. advocated for the elimination of risk based pricing by Fannie Mae and Freddie Mac. C.A.R. advocated for the reform of Fannie Mae and Freddie Mac to bring them out of conservatorship. | Federal Housing Finance Agency (FHFA),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),SENATE | 45521 | 0 | 0 | 2021-04-20T02:43:59.240000-04:00 | |
| 2608215 | CALIFORNIA ASSOCIATION OF REALTORS 3e6123af-e02f-4ab8-8fea-8bb2d7155e1c | Q1 | CALIFORNIA ASSOCIATION OF REALTORS | 7691 | CALIFORNIA ASSOCIATION OF REALTORS | 2021 | first_quarter | INS | C.A.R. commented on HUD Proposed Rule, Acceptance of Private Flood Insurance for FHA-Insured Mortgages (Docket Number HUD-2020-0078; RIN 2502-AJ43) | Federal Housing Finance Agency (FHFA),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),SENATE | 45521 | 0 | 0 | 2021-04-20T02:43:59.240000-04: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);