lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
2 rows where filing_uuid = "ed7ec73d-703d-41c0-bc5c-e96a194cc8d8" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1898564 | EMERGENCY COMMITTEE FOR AMERICAN TRADE ed7ec73d-703d-41c0-bc5c-e96a194cc8d8 | Q3 | EMERGENCY COMMITTEE FOR AMERICAN TRADE | 13494 | EMERGENCY COMMITTEE FOR AMERICAN TRADE | 2016 | third_quarter | TAR | Miscellaneous Tariff Legislation | Agriculture, Dept of (USDA),Commerce, Dept of (DOC),Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),Natl Economic Council (NEC),Natl Security Council (NSC),Office of Management & Budget (OMB),SENATE,State, Dept of (DOS),Treasury, Dept of,U.S. Trade Representative (USTR),White House Office | 217500 | 0 | 0 | 2016-10-20T15:20:48.887000-04:00 | |
| 1898565 | EMERGENCY COMMITTEE FOR AMERICAN TRADE ed7ec73d-703d-41c0-bc5c-e96a194cc8d8 | Q3 | EMERGENCY COMMITTEE FOR AMERICAN TRADE | 13494 | EMERGENCY COMMITTEE FOR AMERICAN TRADE | 2016 | third_quarter | TRD | International trade, cross-border investment, and international competitiveness policies and issues, including: 1. Customs, trade, and investment issues and negotiations in the World Trade Organization (WTO), the World Customs Organization (WCO); the World Intellectual Property Organization (WIPO); the World Health Organization (WHO); and other multilateral fora, including meetings of the governments and industries of the Group of 20 (G20); 2. Negotiation, discussion, and/or implementation of U.S. trade agreements, including the Trans-Pacific Partnership (TPP), the Transatlantic Trade and Investment Partnership (TTIP), and the Trade in Services Agreement (TISA); 3. Negotiation, discussion, and/or implementation of other trade agreements, including expansion of the Information Technology Agreement (ITA), negotiation of an Environmental Goods Agreement (EGA), and implementation of the Trade Facilitation Agreement (TFA) in the WTO; 4. International trade and investment with Brazil, Russia, India, China, Cuba and Taiwan. 5. Issues arising under the Dominican Republic-Central America-United States Free Trade Agreement, the North American Free Trade Agreement (NAFTA), and other trade agreements to which the United States is a party; 6. Investment policies and disputes, including U.S. Bilateral Investment Treaty (BIT) negotiations and discussions with Brazil, China, India, and other countries; 7. Policies and procedures for reviewing foreign direct investments, including review by the Committee on Foreign Investment in the United States (CFIUS); 8. Government procurement, including the negotiation of Chinas accession to the Government Procurement Agreement of the WTO; 9. Buy America policies and legislation; 10. Trade-remedy laws, and trade-enforcement legislation; 11. Foreign tariff and non-tariff barriers, and other import restraints; 12. Intellectual property rights (IPR) policies, protections, legislation and enforcement efforts, including with respect to trade secrets; 13. Efforts and policies to combat illicit tr… | Agriculture, Dept of (USDA),Commerce, Dept of (DOC),Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),Natl Economic Council (NEC),Natl Security Council (NSC),Office of Management & Budget (OMB),SENATE,State, Dept of (DOS),Treasury, Dept of,U.S. Trade Representative (USTR),White House Office | 217500 | 0 | 0 | 2016-10-20T15:20:48.887000-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);