lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where filing_period = "year_end", filing_year = 2010 and issue_code = "EDU" sorted by filing_year descending
This data as json, CSV (advanced)
Suggested facets: filing_type
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1030257 | UNIVERSITY OF ALASKA 3d115220-32f4-47a0-8d7f-98b289dd83b7 | YY | UNIVERSITY OF ALASKA | 51571 | UNIVERSITY OF ALASKA | 2010 | year_end | EDU | climate research, minorities in engineering, wood utilization, arctic regional supercomputer, renewable energy research, teacher education, PELL grants, America Competes Act | 29000 | 0 | 0 | 2011-01-12T11:56:39.583000-05:00 | ||
| 1064247 | HISPANIC ASSOCIATION OF COLLEGES AND UNIVERSITIES 49371cb8-4829-4a0f-b23e-b6e747251c0e | YA | HISPANIC ASSOCIATION OF COLLEGES AND UNIVERSITIES | 18342 | HISPANIC ASSOCIATION OF COLLEGES AND UNIVERSITIES | 2010 | year_end | EDU | HR 1751 DREAM ACT HR 2410 Authorization of Department of State and Peace Corps HR 2043 Nurse Education, Expansion and Development Act of 2009 HR 13 Teacher Loan Forgiveness for Teachers HR 2681 Proud Act | 75000 | 0 | 0 | 2011-02-08T12:57:47.083000-05:00 | ||
| 1064399 | HEARTLAND CONSULTING, INC. 14df01bb-8bf8-491e-b42f-a0e8b664e01c | YY | HEARTLAND CONSULTING, INC. | 285517 | IND SCHOOL DISTRICT NO 5 OF TULSA CO OKLAHOMA A/K/A JENKS PUBLIC SCHOOLS | 2010 | year_end | EDU | Education and Energy Issues | 80000 | 0 | 0 | 2011-02-08T17:03:09.960000-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);