lobbying_activities
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where filing_uuid = "2403f9af-befb-43f2-aa95-e4e37bf37c09", filing_year = 2014 and issue_code = "CPT" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1527575 | GSK (FKA GLAXOSMITHKLINE INC.) 2403f9af-befb-43f2-aa95-e4e37bf37c09 | Q1 | GSK (FKA GLAXOSMITHKLINE INC.) | 16293 | GSK (FKA GLAXOSMITHKLINE INC.) | 2014 | first_quarter | CPT | H.R. 2582 - PATENT Jobs Act, provisions related to patent user fees H.R. 2605 - Manufacturing Innovation in America Act of 2013, provisions related to patent tax boxes H.R. 2639 - Patent Litigation and Innovation Act, patent litigation proposols H.R. 2766 - STOP Act, provisions related to business method patentsH.R. 3309 - Innovation Act, provisions related to patent litigation reform H.R. 3349 - Innovation Protection Act, provisions related to PTO fee diversion H.R. 3540 - Demand Letter Transparency Act H.R. 3709 - Protecting Consumer Access to Generic Drugs, provisions related to patent settlements H.R. 4287 - Independent Innovator and Repurposing Act, provisions related to patent term restoration S. 214 - The Preserve Access to Affordable Generics Act, provisions relating to patent settlements S. 504 - Fair and Immediate Release of Generic Drugs Act, provisions related to patent settlements S. 866 - Patent Quality Improvement Act of 2013, provisions related to business methods patents S. 1013 - Patent Abuse Reduction Act of 2013, provisions related to patent litigation reform S. 1612 - Patent Litigation Integrity Act, patent litigation provisions including bonding S. 1720 - Patent Transparency and Improvements Act S. 2049 - Transparency in Assertion of Patents Act, provisions related to patent demand letters S. 2150 - Independent Innovator and Repurposing Act, provisions related to patent term restoration S. 2196 - Patent Fee Integrity Act, patent fee diversion prohibition No bill # assigned - Biopharmaceutical innovation policy issues No bill # assigned - Biologics data protection issues No bill # assigned - Counterfeit drug issues | Commerce, Dept of (DOC),HOUSE OF REPRESENTATIVES,SENATE,State, Dept of (DOS),U.S. Trade Representative (USTR) | 1630000 | 0 | 0 | 2014-04-18T14:11:03.963000-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);