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 = "c6b44bf3-e3d8-4e40-868b-24af93fdc49f" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • VET 1

filing_year 1

  • 2010 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
1001039 IRAQ AND AFGHANISTAN VETERANS OF AMERICA, INC. c6b44bf3-e3d8-4e40-868b-24af93fdc49f Q3 IRAQ AND AFGHANISTAN VETERANS OF AMERICA, INC. 317071 IRAQ AND AFGHANISTAN VETERANS OF AMERICA INC 2010 third_quarter VET H.R.32Veterans Outreach Improvement Act of 2009 H.R.270TRICARE Continuity of Coverage for National Guard and Reserve Families Act of 2009 H.R.294Veteran-Owned Small Business Promotion Act of 2009 H.R.296Armed Forces Disability Retirement Enhancement Act H.R.297Veteran Vocational Rehabilitation and Employment Subsistence Allowance Improvement Act of 2009 H.R.466Wounded Veteran Job Security Act H.R.476Housing Fairness Act of 2009 H.R.593To amend title 10, United States Code, to expand the authorized concurrent receipt of disability severance pay from the Department of Defense and compensation for the same disability under any law administered by the Department of Veterans Affairs to cover all veterans who have a combat-related disability, as defined under section 1413a of such title. H.R.613Military Retiree Survivor Comfort Act H.R.620Jobs for Veterans Act of 2009 H.R.667Heroes at Home Act of 2009 H.R.775To repeal the requirement for reduction of survivor annuities under the Survivor Benefit Plan to offset the receipt of veterans dependency and indemnity compensation. H.R.784To amend title 38, United States Code, to direct the Secretary of Veterans Affairs to submit to Congress quarterly reports on vacancies in mental health professional positions in Department of Veterans Affairs medical facilities. H.R.785To direct the Secretary of Veterans Affairs to carry out a pilot program to provide outreach and training to certain college and university mental health centers relating to the mental health of veterans of Operation Iraqi Freedom and Operation Enduring Freedom, and for other purposes. H.R.819To amend title 38, United States Code, to provide for the payment of dependency and indemnity compensation to the survivors of former prisoners of war who died on or before September 30, 1999, under the same eligibility conditions as apply to payment of dependency and indemnity compensation to the survivors of former prisoners of war who die after that date. H.R.929To amend title 38, United States Code, to require the Secre… Defense, Dept of (DOD),Education, Dept of,Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,Housing & Urban Development, Dept of (HUD),Labor, Dept of (DOL),Office of Management & Budget (OMB),SENATE,Veterans Affairs, Dept of (VA),White House Office   30000 0 0 2010-10-19T10:21:54.220000-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 6.362ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API