lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "60d1f7dc-a4e8-49e7-9b9a-e4042d0c900f" and issue_code = "TEC" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 813953 | AT&T SERVICES, INC. AND ITS AFFILIATES 60d1f7dc-a4e8-49e7-9b9a-e4042d0c900f | Q2 | AT&T SERVICES, INC. AND ITS AFFILIATES | 34455 | AT&T SERVICES INC AND ITS AFFILIATES | 2009 | second_quarter | TEC | S 921 The United States Information and Communications Enhancement Act of 2009 (US ICE Act of 2009), provisions related to cybersecurity and network reliability and standards S 788 The m-SPAM Act of 2009, all provisions related to network service provider obligations S 778 A bill to establish, within the Executive Office of the President, the Office of National Cybersecurity Advisor, all provisions S 773 The Cybersecurity Act of 2009, provisions relating to network safety, security and reliability S 710 Fair Gift Card Act of 2009, provisions relating to consumer disclosure requirements S 649 Radio Spectrum Inventory Act, provisions relating to data collection House DRAFT, Spectrum Inventory, provisions relating to data collection S 562 Prepaid Calling Card Consumer Protection Act of 2009, provisions relating to consumer disclosure requirements S 436 Internet Stopping Adults Facilitating the Exploitation of Today's Youth (SAFETY) Act of 2009, all provisions related to network service provider obligations S 418 Secondary Metal Prevention Act of 2009, provisions related to preventing and mitigating theft of network property S 348 Universal Service ADA Exemption, issues related to adding the "internet" as an item for Universal Service support as well as other provisions regarding universl service contributions and the universal service support programs established pursuant to that section are not subject to certain provisions of title 31, US Code, commonly known as the Antideficiency Act S 30 Truth in Caller ID Act of 2009, all provisions relating to revisions of existing law, regulation or policies that would impact telecommunications, network or business operations S 251 Safe Prisons Communications Act of 2009, provisions related to interference of mobile radio services within prison facilities HR 915 FAA Reauthorization Act of 2009, provisions related to use of mobile communications devices on scheduled flights HR 760 Advanced Broadband Infrastructure Bond Initiative of 2009, all provisions relating t… | Commerce, Dept of (DOC),HOUSE OF REPRESENTATIVES,SENATE,State, Dept of (DOS),Treasury, Dept of,U.S. Trade Representative (USTR),White House Office | 3056745 | 0 | 0 | 2009-07-20T17:25:39-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);