lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "0e1bb916-252b-4422-ae29-ea2dac0d67ff" and issue_code = "IMM" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2210152 | HUMAN RIGHTS FIRST 0e1bb916-252b-4422-ae29-ea2dac0d67ff | Q3 | HUMAN RIGHTS FIRST | 293494 | HUMAN RIGHTS FIRST | 2018 | third_quarter | IMM | H.R.6193: Central America Family Protection and Reunification Act Support State Department requirement to prioritize supporting governments and citizens of El Salvador, Honduras and Guatemala to facilitate immediate family reunification S.3112: Dignity for Detained Immigrants Act of 2018 Support immigrant detainee protections H.R.6135: Keep Families Together Act Support restrictions on family separation at or near the U.S. border S.3036: Keep Families Together Act Support restrictions on family separation at or near the U.S. border H.R.5820: To prohibit the expansion of immigration detention facilities, to improve the oversight of such facilities, and for other purposes H.R.5694: Afghan Allies Protection Amendments Act of 2018 Support for Afghan Special Immigrant Visa Program H.R.5414: To amend part E of title IV of the Social Security Act to ensure that immigration status alone does not disqualify a parent, legal guardian, or relative from being a placement for a foster child, to authorize discretion to a State, county, or other political subdivision of a State to delay filing for termination of parental rights in foster care cases in which an otherwise fit and willing parent or legal guardian has been deported or is involved in (including detention pursuant to) an immigration proceeding, unless certain conditions have been met, and for other purposes (Help Separated Families Act of 2018) S.630: Keeping Our Promise to Our Afghan Allies Act; A bill to amend the Afghan Allies Protection Act of 2009 to make 2,500 visas available for the Afghan Special Immigrant Visa program, and for other purposes H.R.1544: Keeping Our Promise to Our Afghan Allies Act; To amend the Afghan Allies Protection Act of 2009 to make 2,500 visas available for the Afghan Special Immigrant Visa program, and for other purposes H.R.6136: Border Security and Immigration Reform Act of 2018 Oppose provisions that would block access to asylum or other protection in the United States S… | Defense, Dept of (DOD),Executive Office of the President (EOP),Homeland Security, Dept of (DHS),HOUSE OF REPRESENTATIVES,Justice, Dept of (DOJ),SENATE,State, Dept of (DOS),Treasury, Dept of,White House Office | 90000 | 0 | 0 | 2018-10-22T16:22:02.107000-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);