home / lobbying

lobbying_activities

Individual lobbying activities reported in quarterly filings. Each row is one issue area for one client — includes the specific issues lobbied on, government entities contacted, and income/expense amounts.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

1 row where filing_uuid = "f00a7cc6-3c3c-4b3c-813d-bfa063960c41" and issue_code = "TRA" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • TRA · 1 ✖

filing_year 1

  • 2014 1

filing_period 1

  • third_quarter 1
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
1612880 UNITED SPINAL ASSOCIATION f00a7cc6-3c3c-4b3c-813d-bfa063960c41 Q3 UNITED SPINAL ASSOCIATION 12994 UNITED SPINAL ASSOCIATION 2014 third_quarter TRA Discussed the Transportation for Heroes Act of 2013 (H.R. 2362). Signed on to a letter to the U.S. Department of Transportation and U.S. Department of Health and Human Services asking for all modes of public transportation to announce the Suicide Prevention Lifeline for passengers on World Suicide Prevention Day. Discussed disability and civil rights with the Department of Transportation FTAs Office of Civil Rights regarding new ADA compliance review processes. United Spinal participated in US Department of Transportation Town Hall discussions regarding drafting language that would bolster the US DOTs proposed surface transportation bill, ensuring that people of color, low income communities and people with disabilities have access to jobs in the transportation industry. United Spinal supports retaining the requirement in section 609 of the Coast Guard Authorization Act of 2010, Pub. L. 111-281 (Section 609), in the Coast Guard and Maritime Transportation Act of 2014. Section 609 provides the common sense requirement that the use of survival craft that do not keep all parts of the body out-of-the-water be phased out by 2015. United Spinal endorsed Representative Langevins Transit Accessibility Innovation Program (TAIF) proposal. The program encourages public transit systems to take actions to address deficiencies in service for individuals with disabilities. United Spinal participated as an alternate in the Access Boards Rail Vehicle Access Advisory Committee (RVAAC) meeting. The Committee reviewed draft reports from subcommittees, including: Boarding and Alighting, Rooms and Spaces, and On-Board Circulation and Seating. The Committee is tasked with presenting recommendations to the Access Board which will draft guidelines. United Spinal discussed Amtrak ADA compliance with Amtrak. Supported HR 3978,New Opportunities for Bicycle and Pedestrian Infrastructure Financing Act (NOBPIFA). The bill includes funding for achieving compliance with the ADA,improving public transit, biking and pedestrian infrastructure… Defense, Dept of (DOD),Education, Dept of,Federal Communications Commission (FCC),Federal Emergency Management Agency (FEMA),Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),Labor, Dept of (DOL),Office of Management & Budget (OMB),Office of Personnel Management (OPM),SENATE,Transportation, Dept of (DOT),White House Office 75000   0 0 2014-10-22T11:25:34.103000-04:00

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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);
Powered by Datasette · Queries took 59.076ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API