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 = "520e87f0-a758-4e57-bee5-e807a832ed1b" and issue_code = "TRD" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • TRD · 1 ✖

filing_year 1

  • 2024 1

filing_period 1

  • first_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
3176295 PET FOOD INSTITUTE 520e87f0-a758-4e57-bee5-e807a832ed1b Q1 PET FOOD INSTITUTE 401103897 PET FOOD INSTITUTE 2024 first_quarter TRD 1. General efforts for China market access and export registrations to China. Supports Economic Trade Agreement between the Government of the United States and the Government of the People's Republic of China. 2. APHIS facility inspections and approvals with regard to foreign market access, general market access and export issues, including export certificates for animal products. 3. General efforts to prevent diseases, like African Swine Fever (ASF) from entering the U.S. 4. General tariff issues, including aluminum and tinplate steel tariffs affecting pet food manufacturers. 5. Opposed to imposing new tariffs on tin mill products from allies like Germany, the Netherlands, Canada, the United Kingdom, South Korea, Taiwan, and Turkey. Concerned that imposition of these new duties would raise the cost of canned foods, including pet food, placing new burdens on food banks and families who rely on government food and nutrition assistance programs. 6. Other tariff and trade disrupting issues affecting pet food manufacturers. Specifically supports suspending, reducing, or eliminating tariffs which currently hinder food and agriculture exports - including the China 301 tariffs which have had a disproportionate economic impact on American companies, consumers and workers. 7. Supports addressing and finding solutions to the ongoing challenges impacting our nation's food and agricultural supply chains, specifically as it relates to the pet food industry. 8. Supports uninterrupted trade between the U.S., Mexico and Canada to provide access to the goods they need, including pet food. 9. Supports U.S. agricultural export promotion and long-term market development. 10. Supports strengthening multilateral trade rules on agriculture that promotes resilient, adaptive, and innovative agricultural markets. 11. Supportive of H.R.648: Agriculture Export Promotion Act of 2023 and S.176: Expanding Agricultural Exports Act of 2023. If enacted, these bills expand and extend through FY2029 the Market Access Program and Foreign Market Deve… Agriculture, Dept of (USDA),Commerce, Dept of (DOC),Food & Drug Administration (FDA),HOUSE OF REPRESENTATIVES,Intl Trade Administration (ITA),SENATE,U.S. International Trade Commission (ITC),U.S. Trade Representative (USTR)   210000 0 0 2024-04-22T18:15:59-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 56.622ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API