lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "f4c3b885-69a5-4ffc-a0f3-9a09ef7bfdfd" and issue_code = "CIV" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1760989 | NATIONAL LGBTQ TASK FORCE FORMERLY KNOW AS: NATIONAL GAY AND LESBIAN TASK FORCE f4c3b885-69a5-4ffc-a0f3-9a09ef7bfdfd | Q2 | NATIONAL LGBTQ TASK FORCE FORMERLY KNOW AS: NATIONAL GAY AND LESBIAN TASK FORCE | 306658 | NATIONAL LGBTQ TASK FORCE FORMERLY KNOW AS NATIONAL GAY AND LESBIAN TASK FORCE | 2015 | second_quarter | CIV | End Racial Profiling Act HR3618. Lobbied in support of this bill. Employment non discrimination act. HR3014. Lobbied in support of passing this act to end discrimination based on sexual orientation and gender identity. Respect for Marriage Act HR3567. Lobbied in support of repealing the defense of marriage act and providing federal recognition of same sex marriages issued by states. Equality Act HR3185. Lobbied to support ensuring consistency in employers to make workplace fairness. Voting Rights Advancement Act HR2867. Lobbied in support of amending the Voting Rights Act to allow a representative of an Indian tribe to request polling place on tribal land. Smarter Sentencing Act S. 502/HR 920. Lobbied in support of reducing mandatory minimum sentencing for controlled substances. Second Chance Act S 1513. Lobbied in support of re-entry programs and services. Juvenile Justice and Delinquency Prevention Act S1169. Lobbied in support of re-authorization of this bill. SAFE Justice Act HR 2944. Lobbied in support of improving federal sentencing guidelines. Adam Walsh Act HR 4472. | HOUSE OF REPRESENTATIVES,SENATE | 0 | 0 | 2015-11-24T15:23:23.703000-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);