lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "4b2ec5b0-1c4e-457a-a4e0-adcbbc5720df" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2432674 | AMERICAN ASSOCIATION OF UNIVERSITY WOMEN 4b2ec5b0-1c4e-457a-a4e0-adcbbc5720df | Q1 | AMERICAN ASSOCIATION OF UNIVERSITY WOMEN | 1741 | AMERICAN ASSOCIATION OF UNIVERSITY WOMEN | 2020 | first_quarter | EDU | S. 213/H.R. 787, SOAR Reauthorization Act of 2019, in opposition to school vouchers and diverting public funds to private or religious elementary and secondary schools; S. 737/H.R. 1665, Building Blocks of STEM Act, in support of increasing access to science, technology, engineering, and math (STEM) for young girls; S. 1964/H.R. 3513, Patsy T. Mink and Louise M. Slaughter Gender Equity in Education Act (GEEA), in support of Title IX and protections against gender discrimination in education; S. 808/H.R. 2421, ALERT Act, in support of accountability for Title IX violations; S. 1492/H.R. 2747, Tyler Clementi Higher Education Anti-Harassment Act of 2019, in support of enumerated anti-harassment policies at colleges and universities; H.R. 3381, Hold Accountable and Lend Transparency(HALT) on Campus Sexual Violence Act, in support of additional protections for survivors of campus sexual violence; H.R.2528, STEM Opportunities Actof 2019, in support of increasing access to science, technology, engineering, and math (STEM) for women and other underrepresented groups; In support of protecting Title IX, its regulations, and guidance, in opposition to the recission of the Department of Education's 2011 Dear Colleague Letter on Sexual Violence and the 2014 Questions and Answers on Title IX and Sexual Violence; In opposition to the rollback of the 2014 joint school discipline guidance package including the Joint Dear Colleague on the Nondiscriminatory Administration of School Discipline by the U.S. Department of Education and the U.S. Department of Justice; In support of increasing access to higher education to students through campus-based childcare services; In support of a comprehensive Higher Education Act reauthorization that protects women's economic security, equal educational opportunities, and safety; In support of promoting safe, healthy and inclusive school environments in elementary and secondary school by addressing bullying and harassment, as well as disparities in school discipline that fuel school pushout and … | Education, Dept of,Equal Employment Opportunity Commission (EEOC),HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),Labor, Dept of (DOL),SENATE | 12200 | 0 | 0 | 2020-04-17T15:05:53.507000-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);