lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where filing_uuid = "cd096178-e644-4e55-a22e-a48cc2bc5c04" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 697930 | KSCW, INC. cd096178-e644-4e55-a22e-a48cc2bc5c04 | Q4 | KSCW, INC. | 21596 | AMERICAN CORN GROWERS ASSOCIATION | 2008 | fourth_quarter | RRR | S772/H1650: Railroad Antitrust Enforcement Act of 2007 S953/H2125 :Railroad Competition and Service Improvement Act of 2007 | Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,SENATE | 10000 | 0 | 0 | 2009-01-05T14:15:13-05:00 | |
| 697931 | KSCW, INC. cd096178-e644-4e55-a22e-a48cc2bc5c04 | Q4 | KSCW, INC. | 21596 | AMERICAN CORN GROWERS ASSOCIATION | 2008 | fourth_quarter | AGR | H.R.2419, HR6124: Food, Conservation, and Energy Act of 2008, Implimentation of the FarmBill, Section 1101D: 10 Acre Rule The implimentation of the Conservation Stewardship Program | Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,SENATE | 10000 | 0 | 0 | 2009-01-05T14:15:13-05:00 | |
| 697932 | KSCW, INC. cd096178-e644-4e55-a22e-a48cc2bc5c04 | Q4 | KSCW, INC. | 21596 | AMERICAN CORN GROWERS ASSOCIATION | 2008 | fourth_quarter | CDT | H.R.2419, H.R.6124: Food, Conservation, and Energy Act of 2008, implimentation of provisions dealing with commodities H.R.6604: Commodity Markets Transparency and Accountability Act of 2008 | Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,SENATE | 10000 | 0 | 0 | 2009-01-05T14:15:13-05:00 | |
| 697933 | KSCW, INC. cd096178-e644-4e55-a22e-a48cc2bc5c04 | Q4 | KSCW, INC. | 21596 | AMERICAN CORN GROWERS ASSOCIATION | 2008 | fourth_quarter | INS | The implimentation of the Federally Recognized Tribes Extension Program, provisions dealing with Crop Insurance | Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,SENATE | 10000 | 0 | 0 | 2009-01-05T14:15:13-05:00 | |
| 697934 | KSCW, INC. cd096178-e644-4e55-a22e-a48cc2bc5c04 | Q4 | KSCW, INC. | 21596 | AMERICAN CORN GROWERS ASSOCIATION | 2008 | fourth_quarter | ENG | S.3268: Stop Excessive Energy Speculation Act of 2008 S.3186: Warm in Winter and Cool in Summer Act, dealing with Low Income Heating and Energy Assistance Program (LIHEAP). Legislation dealing with tax credits for the production of renewable fuels and energy. Legislation dealing with Renewable Fuel Standards (RFS). | Agriculture, Dept of (USDA),Environmental Protection Agency (EPA),HOUSE OF REPRESENTATIVES,SENATE | 10000 | 0 | 0 | 2009-01-05T14:15:13-05: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);