lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where filing_uuid = "17555efd-e97b-463c-9a5d-9065554d8a8d" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1878223 | BOYD GAMING CORPORATION 17555efd-e97b-463c-9a5d-9065554d8a8d | Q3 | BOYD GAMING CORPORATION | 400606844 | BOYD GAMING CORPORATION | 2016 | third_quarter | GAM | Monitor Internet gaming. H.R. 707, Restoration of America's Wire Act. S. 1668, Restoration of America's Wire Act; monitor developments and hearings regarding daily fantasy sports. Wyandotte Nation Application to DOI; Off-reservation gaming, use of land claim settlement funds in accordance with federal law. | HOUSE OF REPRESENTATIVES,Interior, Dept of (DOI),SENATE | 110000 | 0 | 0 | 2016-10-14T20:13:23.917000-04:00 | |
| 1878224 | BOYD GAMING CORPORATION 17555efd-e97b-463c-9a5d-9065554d8a8d | Q3 | BOYD GAMING CORPORATION | 400606844 | BOYD GAMING CORPORATION | 2016 | third_quarter | CSP | Issues related to Federal Trade Commission reauthorization, deceptive advertising, competition and innovation. H.R. 4526, Stop Online Booking Scams Act of 2016. S. 2599, Truth in Hotel Advertising. | HOUSE OF REPRESENTATIVES,Interior, Dept of (DOI),SENATE | 110000 | 0 | 0 | 2016-10-14T20:13:23.917000-04:00 | |
| 1878225 | BOYD GAMING CORPORATION 17555efd-e97b-463c-9a5d-9065554d8a8d | Q3 | BOYD GAMING CORPORATION | 400606844 | BOYD GAMING CORPORATION | 2016 | third_quarter | LBR | Joint Employer; DOL Regulations; H.R. 3459, Protecting Local Business Opportunity Act; and S. 2015, Protecting Local Business Opportunity Act. | HOUSE OF REPRESENTATIVES,Interior, Dept of (DOI),SENATE | 110000 | 0 | 0 | 2016-10-14T20:13:23.917000-04:00 | |
| 1878226 | BOYD GAMING CORPORATION 17555efd-e97b-463c-9a5d-9065554d8a8d | Q3 | BOYD GAMING CORPORATION | 400606844 | BOYD GAMING CORPORATION | 2016 | third_quarter | IND | Indian gaming issues. Final regulations adopted by the Bureau of Indian Affairs regarding federal recognition of tribes. Possible Congressional responses to Bureau of Indian Affairs final rules. S. 1931, a bill to reaffirm that certain lands have been taken into trust for the benefit of certain Indian tribes. S. 732, a bill to amend the Indian Reorganization Act. H.R. 3764, Tribal Recognition Act of 2015. Rep. Cole Amendment to the House Interior Appropriations bill; H.R. 5079, The California Compact Protection Act. Issues relative to gaming industry. Wyandotte Nation Application to DOI; off-reservation gaming, use of land claim settlement funds in accordance with federal law. | HOUSE OF REPRESENTATIVES,Interior, Dept of (DOI),SENATE | 110000 | 0 | 0 | 2016-10-14T20:13:23.917000-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);