lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "2c8ea0d0-b6a4-410a-81ec-e2ab76a8e710" and issue_code = "LBR" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2769952 | RECREATION VEHICLE DEALERS ASSOCIATION OF NORTH AMERICA 2c8ea0d0-b6a4-410a-81ec-e2ab76a8e710 | Q1 | RECREATION VEHICLE DEALERS ASSOCIATION OF NORTH AMERICA | 401102073 | RECREATION VEHICLE DEALERS ASSOCIATION OF NORTH AMERICA | 2022 | first_quarter | LBR | HR 2171 and S 905 - Freedom to Invest in Tomorrow's Workforce: The Freedom to Invest in Tomorrows Workforce Act would expand eligible uses of tax-favorable 529 savings plans to cover costs associated with workforce training and credentialing programs. The legislation would also enable 529 plan beneficiaries to use their funds to pay for examinations necessary to obtain and maintain recognized private professional certifications and other credentials. Now, only costs related to attending colleges, universities, vocational schools, registered apprenticeship programs, K-12 private tuition, or other post-secondary institutions are eligible 529 expenses. The REBUILD Skills Act would create a federally funded Career Rebuilding Scholarship Fund, administered by approved certification organizations and worker training programs, to distribute scholarships to eligible individuals who incur covered expenses to take certification exams or enroll in a training program. Funds would cover up to the lesser of 95% or $3,000 of a program. This bill would also create a federal directory of approved, legitimate training and certification programs that could benefit all American workers and not just individuals eligible for scholarships. Eligible individuals include: -Any workers displaced from their jobs due to the COVID-19 pandemic; -Military members who rolled out/are rolling out of service during the pandemic; and -Spouses of military members who rolled out/are rolling out of service. | HOUSE OF REPRESENTATIVES,SENATE | 0 | 0 | 2022-04-05T12:34:49-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);