home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

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

12 rows where docket_id = "EPA-HQ-OPPT-2020-0077" sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)

posted_year 2

  • 2020 10
  • 2021 2

document_type 1

  • Notice 12

agency_id 1

  • EPA 12
id agency_id docket_id title document_type subtype posted_date ▲ posted_year posted_month comment_start_date comment_end_date last_modified fr_doc_num open_for_comment withdrawn object_id
EPA-HQ-OPPT-2020-0077-0015 EPA None EPA-HQ-OPPT-2020-0077 Certain New Chemicals: Receipt and Status Information for December 2020 Notice   2021-02-10T05:00:00Z 2021 2 2021-02-10T05:00:00Z 2021-03-13T04:59:59Z 2021-02-10T14:52:30Z 2021-02728 0 0 0900006484a2c677
EPA-HQ-OPPT-2020-0077-0014 EPA None EPA-HQ-OPPT-2020-0077 Certain New Chemicals: Receipt and Status Information for November 2020 Notice   2021-02-09T05:00:00Z 2021 2 2021-02-09T05:00:00Z 2021-03-12T04:59:59Z 2021-02-09T13:23:54Z 2021-02660 0 0 0900006484a21c01
EPA-HQ-OPPT-2020-0077-0013 EPA None EPA-HQ-OPPT-2020-0077 Certain New Chemicals: Receipt and Status Information for October 2020 Notice   2020-12-15T05:00:00Z 2020 12 2020-12-15T05:00:00Z 2021-01-15T04:59:59Z 2020-12-15T13:47:01Z 2020-27540 0 0 090000648499f2b5
EPA-HQ-OPPT-2020-0077-0011 EPA None EPA-HQ-OPPT-2020-0077 Certain New Chemicals: Receipt and Status Information for September 2020 Notice   2020-10-20T04:00:00Z 2020 10 2020-10-20T04:00:00Z 2020-11-20T04:59:59Z 2020-11-20T02:01:01Z 2020-23170 0 0 090000648491a6f9
EPA-HQ-OPPT-2020-0077-0010 EPA None EPA-HQ-OPPT-2020-0077 Certain New Chemicals: Receipt and Status Information for August 2020 Notice   2020-09-25T04:00:00Z 2020 9 2020-09-25T04:00:00Z 2020-10-27T03:59:59Z 2020-09-25T12:43:41Z 2020-21198 0 0 0900006484879539
EPA-HQ-OPPT-2020-0077-0009 EPA None EPA-HQ-OPPT-2020-0077 Certain New Chemicals; Receipt and Status Information for July 2020 Notice   2020-08-26T04:00:00Z 2020 8 2020-08-26T04:00:00Z 2020-09-26T03:59:59Z 2020-08-26T20:31:27Z 2020-18707 0 0 09000064848228b7
EPA-HQ-OPPT-2020-0077-0008 EPA None EPA-HQ-OPPT-2020-0077 Certain New Chemicals: Receipt and Status Information for June 2020 Notice   2020-07-28T04:00:00Z 2020 7 2020-07-28T04:00:00Z 2020-08-28T03:59:59Z 2020-07-28T13:09:55Z 2020-16288 0 0 09000064847ae669
EPA-HQ-OPPT-2020-0077-0007 EPA None EPA-HQ-OPPT-2020-0077 Certain New Chemicals: Receipt and Status Information for May 2020 Notice   2020-06-18T04:00:00Z 2020 6 2020-06-18T04:00:00Z 2020-07-21T03:59:59Z 2020-06-18T14:41:26Z 2020-13135 0 0 09000064846f8a22
EPA-HQ-OPPT-2020-0077-0005 EPA None EPA-HQ-OPPT-2020-0077 Certain New Chemicals: Receipt and Status Information for April 2020 Notice   2020-06-01T04:00:00Z 2020 6 2020-06-01T04:00:00Z 2020-07-02T03:59:59Z 2020-06-16T01:01:07Z 2020-11635 0 0 09000064846bf64b
EPA-HQ-OPPT-2020-0077-0004 EPA None EPA-HQ-OPPT-2020-0077 Certain New Chemicals: Receipt and Status Information for March 2020 Notice   2020-05-12T04:00:00Z 2020 5 2020-05-12T04:00:00Z 2020-06-12T03:59:59Z 2020-05-12T12:43:24Z 2020-10101 0 0 09000064845cc80e
EPA-HQ-OPPT-2020-0077-0002 EPA None EPA-HQ-OPPT-2020-0077 Certain New Chemicals: Receipt and Status Information for February 2020 Notice   2020-03-23T04:00:00Z 2020 3 2020-03-23T04:00:00Z 2020-04-23T03:59:59Z 2020-03-31T01:00:24Z 2020-06063 0 0 090000648445effc
EPA-HQ-OPPT-2020-0077-0001 EPA None EPA-HQ-OPPT-2020-0077 Certain New Chemicals: Receipt and Status Information for January 2020 Notice   2020-03-10T04:00:00Z 2020 3 2020-03-10T04:00:00Z 2020-04-10T03:59:59Z 2020-04-10T01:02:52Z 2020-04891 0 0 090000648441fa7c

Advanced export

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

CSV options:

CREATE TABLE documents (
    id TEXT PRIMARY KEY,
    agency_id TEXT,
    docket_id TEXT REFERENCES dockets(id),
    title TEXT,
    document_type TEXT,
    subtype TEXT,
    posted_date TEXT,
    posted_year INTEGER,
    posted_month INTEGER,
    comment_start_date TEXT,
    comment_end_date TEXT,
    last_modified TEXT,
    fr_doc_num TEXT,
    open_for_comment INTEGER,
    withdrawn INTEGER,
    object_id TEXT
);
CREATE INDEX idx_docs_agency ON documents(agency_id);
CREATE INDEX idx_docs_docket ON documents(docket_id);
CREATE INDEX idx_docs_date ON documents(posted_date);
CREATE INDEX idx_docs_year ON documents(posted_year);
CREATE INDEX idx_docs_type ON documents(document_type);
CREATE INDEX idx_docs_frnum ON documents(fr_doc_num);
CREATE INDEX idx_docs_comment_end ON documents(comment_end_date) WHERE comment_end_date IS NOT NULL AND withdrawn = 0;
Powered by Datasette · Queries took 1410.398ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API