lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "6bf0bbc4-2aa0-43f0-b4a5-e4e20ec09225" and issue_code = "EDU" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2486740 | NATIONAL ASSOCIATION OF SECONDARY SCHOOL PRINCIPALS 6bf0bbc4-2aa0-43f0-b4a5-e4e20ec09225 | Q2 | NATIONAL ASSOCIATION OF SECONDARY SCHOOL PRINCIPALS | 49602 | NATIONAL ASSOCIATION OF SECONDARY SCHOOL PRINCIPALS | 2020 | second_quarter | EDU | Anti-Lunch Shaming Act (H.R. 2311/S. 1119), Behavioral Intervention Guidelines Act (H.R. 3539), Child Care for Working Families Act (H.R. 1364/S. 568), Classrooms Reflecting Communities Act (S. 2887), Coronavirus Child Care and Education Relief Act (S. 4112), Dannys Law (H.R. 3659) Diversifying by Investing in Educators and Students to Improve Outcomes for Youth (DIVERSIFY) Act (H.R. 5350/S. 3158), Educator Preparation Reform Act (S. 969), Elementary and Secondary School Counseling Act (H.R. 4381/S. 2499), Ending Corporal Punishment in Schools Act (H.R. 727), Expanding Access to the Workforce Through Dual Enrollment Act (H.R. 653), Fast Track to and Through College Act (S. 2736), IDEA Full Funding Act (H.R. 1878/S. 866), Inspiring New STEM Professionals by Investing in Renovation of Education Spaces (INSPIRES) Act (S. 3397/H.R. 6109), Jumpstart on College Act (H.R. 4108/S. 2395), K-12 Cybersecurity Act (S. 3033), Keep Our PACT Act (H.R. 2315/S. 1172), Making Education Affordable and Accessible Act (S. 718/H.R. 3891), Mental Health Services for Students Act (H.R. 1109/S. 1122), National Assistant Principals Week resolutions (H. Res. 318/S. Res. 149), National Middle Level Education Month resolution (H. Res. 260), Preparing and Retaining Education Professionals Act (S. 752), Promoting Readiness in Education to Prevent Additional Remediation and Expense (PREPARE) Act (S. 1516), Protecting Student Athletes from Concussions Act (S. 2600/H.R. 5611), Public Schools Week resolutions (H. Res. 254/S. Res. 126), Rebuild Americas Schools Act (H.R. 865/S. 266), Recruiting and Retaining Effective School Leaders Act (no bill #), Safe Schools Improvement Act (H.R. 2653/S. 2548), School Shooting Safety and Preparedness Act (H.R. 4301), SOAR Permanent Authorization Act (S. 2682), Suicide & Threat Assessment Nationally Dedicated to Universal Prevention (STANDUP) Act (S. 2492), Streamlining Energy Efficiency for Schools Act (H.R. 762/S. 253), Strength in Diversity Act (H.R. 2639/S. 1418), Success in the Middle Act (H.R. 3089/S. 1704… | Education, Dept of,Environmental Protection Agency (EPA),Federal Communications Commission (FCC),Federal Emergency Management Agency (FEMA),Food & Drug Administration (FDA),Health & Human Services, Dept of (HHS),Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,Internal Revenue Service (IRS),Justice, Dept of (DOJ),Labor, Dept of (DOL),Office of Management & Budget (OMB),SENATE,White House Office | 40000 | 0 | 0 | 2020-07-20T14:25:53.797000-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);