documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OA-2020-0128" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 7
| 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-OA-2020-0128-0072 | EPA | Procedures for Issuing Guidance EPA-HQ-OA-2020-0128 | EPA Guidance, Administrative Procedures for Issuance and Public Petitions; Rescission | Rule | Final Rule | 2021-05-18T04:00:00Z | 2021 | 5 | 2021-05-18T04:00:00Z | 2021-05-18T12:47:20Z | 2021-10269 | 0 | 0 | 0900006484b12f10 | |
| EPA-HQ-OA-2020-0128-0070 | EPA | Procedures for Issuing Guidance EPA-HQ-OA-2020-0128 | Guidance: Administrative Procedures for Issuance and Public Petitions | Rule | 2020-10-19T04:00:00Z | 2020 | 10 | 2020-10-19T12:43:23Z | 2020-20519 | 0 | 0 | 0900006484916c73 | |||
| EPA-HQ-OA-2020-0128-0071 | EPA | Procedures for Issuing Guidance EPA-HQ-OA-2020-0128 | Summary of Public Comments and Responses for EPA Guidance; Administrative Procedures for Issuance and Public Petitions | Supporting & Related Material | Comment Response | 2020-10-19T04:00:00Z | 2020 | 10 | 2020-10-20T00:33:16Z | 0 | 0 | 09000064848540e2 | |||
| EPA-HQ-OA-2020-0128-0004 | EPA | Procedures for Issuing Guidance EPA-HQ-OA-2020-0128 | EO-13891 October 9, 2019-22623 | Supporting & Related Material | Publication - Previous/Related FR Notice | 2020-05-22T04:00:00Z | 2020 | 5 | 2020-10-01T13:57:59Z | 0 | 0 | 090000648440a33b | |||
| EPA-HQ-OA-2020-0128-0001 | EPA | Procedures for Issuing Guidance EPA-HQ-OA-2020-0128 | Guidance: Administrative Procedures for Issuance and Public Petitions | Proposed Rule | 2020-05-22T04:00:00Z | 2020 | 5 | 2020-05-22T04:00:00Z | 2020-06-23T03:59:59Z | 2020-09-16T01:01:49Z | 2020-11079 | 0 | 0 | 090000648466f4da | |
| EPA-HQ-OA-2020-0128-0002 | EPA | Procedures for Issuing Guidance EPA-HQ-OA-2020-0128 | M-20-02 Guidance Memorandum | Supporting & Related Material | Memorandum | 2020-05-22T04:00:00Z | 2020 | 5 | 2020-10-01T13:58:01Z | 0 | 0 | 090000648440a526 | |||
| EPA-HQ-OA-2020-0128-0003 | EPA | Procedures for Issuing Guidance EPA-HQ-OA-2020-0128 | Good Guidance Bulletin-January-2007 | Supporting & Related Material | Publication - Previous/Related FR Notice | 2020-05-22T04:00:00Z | 2020 | 5 | 2020-10-01T13:58:03Z | 0 | 0 | 090000648440a527 |
Advanced export
JSON shape: default, array, newline-delimited, object
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;