home / lobbying

lobbying_activities

Individual lobbying activities reported in quarterly filings. Each row is one issue area for one client — includes the specific issues lobbied on, government entities contacted, and income/expense amounts.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

1 row where filing_uuid = "ab563f09-e223-48e4-b1ba-e8b3f5c6982a" and issue_code = "TEC" sorted by filing_year descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: received_date (date)

issue_code 1

  • TEC · 1 ✖

filing_year 1

  • 2012 1

filing_period 1

  • second_quarter 1
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
1260280 EDUCATION LEGISLATIVE SERVICES, INC ab563f09-e223-48e4-b1ba-e8b3f5c6982a 2T EDUCATION LEGISLATIVE SERVICES, INC 13164 LONG BEACH UNIFIED SCHOOL DISTRICT (CA) 2012 second_quarter TEC Telecommunications Act of 1996 Instructional Television Fixed Service (ITFS)/Educational Broadband Service (EBS) "The Anti-Deficiency Act" - To Amend Section 254 of the Communications Act of 1934 * TELECOMMUNICATIONS ACT OF 1996 Ongoing revision of federal telecommunications law and implementation of new rulemaking, regulations and guidance for schools and libraries Universal Service "E-Rate" telecommunications discounts, by Congress, the Federal Communications Commission, Universal Service Administration Company, Schools/Libraries Division, including E-Rate issues affecting K-12 public schools, school districts, students and educators, that would permit more eligible schools and students to gain affordable access to advanced telecommunications, to balance support to schools for broadband and for telephone services * THE ANTI-DEFICIENCY ACT, TO AMEND SECTION 254 OF THE COMMUNICATIONS ACT OF 1934 To exempt funds received for the Universal Service Fund, including the "E-Rate" telecommunications discounts for K-12 schools and libraries, from certain provisions of Title I of the Communications Act, known as the Anti-Deficiency Act (ADA), regarding accounting rules, annually or permanently * NATIONAL EDUCATION TECHNOLOGY PLAN AND NATIONAL BROADBAND PLAN IMPLEMENTATION - To build support and sustainability for implementation of advanced telecommunications facilities and services for preK-12 students and local school districts, including affordable broadband access and availability aligned with future college and career readiness educational goals and learning systems, using existing E-Rate mechanisms and other selected non-E-Rate funding, policy and programmatic opportunities * TO SEEK INCREASE IN CURRENT E-RATE FUNDING CAP - To permanently raise the current annual funding cap on the E-Rate program, that provides discounts to schools and libraries for affordable access to advanced telecommunications services, and to explore additional options to provide affordable telecommunications opportunities to students … Agriculture, Dept of (USDA),Education, Dept of,Federal Communications Commission (FCC),Health & Human Services, Dept of (HHS),HOUSE OF REPRESENTATIVES,SENATE     0 1 2012-07-11T12:05:38.833000-04:00

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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);
Powered by Datasette · Queries took 159.156ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API