lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where filing_uuid = "2c5291ac-4c7b-41ad-97f5-e4e2be0bb4ea" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 670494 | KANSAS FARM BUREAU 2c5291ac-4c7b-41ad-97f5-e4e2be0bb4ea | Q3 | KANSAS FARM BUREAU | 21131 | KANSAS FARM BUREAU | 2008 | third_quarter | TRD | Colombia, Korea and Panama FTAs Export barriers | Agriculture, Dept of (USDA),Federal Motor Carrier Safety Administration,HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),SENATE,Transportation, Dept of (DOT) | 30000 | 0 | 0 | 2008-10-16T14:56:56-04:00 | |
| 670495 | KANSAS FARM BUREAU 2c5291ac-4c7b-41ad-97f5-e4e2be0bb4ea | Q3 | KANSAS FARM BUREAU | 21131 | KANSAS FARM BUREAU | 2008 | third_quarter | AGR | HR 6124, The Food, Conservation and Energy Act of 2008; Conservation provisions, Commodity title, ACRE, Disaster Assistance Programs HR 6849, technical corrections; 10 acre rule, permanent disaster assistance USDA technology issues discussion, CRP release and court decisions, Rural development funding | Agriculture, Dept of (USDA),Federal Motor Carrier Safety Administration,HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),SENATE,Transportation, Dept of (DOT) | 30000 | 0 | 0 | 2008-10-16T14:56:56-04:00 | |
| 670496 | KANSAS FARM BUREAU 2c5291ac-4c7b-41ad-97f5-e4e2be0bb4ea | Q3 | KANSAS FARM BUREAU | 21131 | KANSAS FARM BUREAU | 2008 | third_quarter | TRA | HR 3098; Definitions of farm to market for interstate commerce determinations, 150 mile farm commodity exemption from CDL requirements, CDL education requirements 2009 Highway plan reauthorization | Agriculture, Dept of (USDA),Federal Motor Carrier Safety Administration,HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),SENATE,Transportation, Dept of (DOT) | 30000 | 0 | 0 | 2008-10-16T14:56:56-04:00 | |
| 670497 | KANSAS FARM BUREAU 2c5291ac-4c7b-41ad-97f5-e4e2be0bb4ea | Q3 | KANSAS FARM BUREAU | 21131 | KANSAS FARM BUREAU | 2008 | third_quarter | TEC | Discussions with agency personnel and Members of Congress regarding the need for continued expansin of broadband and wireless internet capacity. | Agriculture, Dept of (USDA),Federal Motor Carrier Safety Administration,HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),SENATE,Transportation, Dept of (DOT) | 30000 | 0 | 0 | 2008-10-16T14:56:56-04:00 | |
| 670498 | KANSAS FARM BUREAU 2c5291ac-4c7b-41ad-97f5-e4e2be0bb4ea | Q3 | KANSAS FARM BUREAU | 21131 | KANSAS FARM BUREAU | 2008 | third_quarter | ANI | HR 6202, Farm Animal Cruelty Act opposition Non-ambulatory livestock amendments in Senate Appropriations Committee JBS Swift acquisition/merger review at DOJ | Agriculture, Dept of (USDA),Federal Motor Carrier Safety Administration,HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),SENATE,Transportation, Dept of (DOT) | 30000 | 0 | 0 | 2008-10-16T14:56:56-04:00 | |
| 670499 | KANSAS FARM BUREAU 2c5291ac-4c7b-41ad-97f5-e4e2be0bb4ea | Q3 | KANSAS FARM BUREAU | 21131 | KANSAS FARM BUREAU | 2008 | third_quarter | ENV | S 3036; Climate change legislation and amendments Efforts to address energy crisis.... Oposition to HR 2421 and S 1870, amending the Clean Water Act | Agriculture, Dept of (USDA),Federal Motor Carrier Safety Administration,HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),SENATE,Transportation, Dept of (DOT) | 30000 | 0 | 0 | 2008-10-16T14:56:56-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);