documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-HQ-OAR-1999-0079" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date (date)
These facets timed out: document_type
| 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-OAR-1999-0079-0011 | EPA | Transportation Conformity Amendment: Deletion of Grace Period Legacy Docket ID #: A-99-35 EPA-HQ-OAR-1999-0079 | Transportation Conformity Amendment: Deletion of Grace Period - Final Rule EPA Response to Comments on Proposed Rule. March 29, 2000 [A-99-35-V-C-01] | Supporting & Related Material | Comment Response | 2022-09-08T04:00:00Z | 2022 | 9 | 2022-09-09T01:31:06Z | 0 | 0 | 0900006484eb9884 | |||
| EPA-HQ-OAR-1999-0079-0012 | EPA | Transportation Conformity Amendment: Deletion of Grace Period Legacy Docket ID #: A-99-35 EPA-HQ-OAR-1999-0079 | Petition for Reconsideration of the Transportation Conformity Rule, submitted by the Environmental Defense Fund, Natural Resources Defense Council, and the Sierra Club Legal Defense Fund, May 26, 1994. [A-99-35-I-D-01] | Supporting & Related Material | Petition | 2022-09-08T04:00:00Z | 2022 | 9 | 2022-09-09T01:31:16Z | 0 | 0 | 0900006484eb9885 | |||
| EPA-HQ-OAR-1999-0079-0010 | EPA | Transportation Conformity Amendment: Deletion of Grace Period Legacy Docket ID #: A-99-35 EPA-HQ-OAR-1999-0079 | On Petition for Review of an Order of the Environmental Protection Agency. Opinion, U.S. Court of Appeals for the District of Columbia Circuit, Sierra Club, Petitioner, v. Environmental Protection Agency et al., Respondents. November 4, 1997. [A-99-35-II-D-02] | Supporting & Related Material | Order | 2022-09-08T04:00:00Z | 2022 | 9 | 2022-09-09T01:30:56Z | 0 | 0 | 0900006484eb9883 | |||
| EPA-HQ-OAR-1999-0079-0009 | EPA | Transportation Conformity Amendment: Deletion of Grace Period Legacy Docket ID #: A-99-35 EPA-HQ-OAR-1999-0079 | Dismissal of Petition for Review. Stipulation of Partial Settlement, U.S. Court of Appeals for the District of Columbia, Environmental Defense Fund, Petitioner, v. Environmental Protection Agency; Carol M. Browner, Respondents, November 25, 1998. [A-99-35-II-D-03] | Supporting & Related Material | Order | 2022-09-08T04:00:00Z | 2022 | 9 | 2022-09-09T01:30:47Z | 0 | 0 | 0900006484eb9882 | |||
| EPA-HQ-OAR-1999-0079-0013 | EPA | Transportation Conformity Amendment: Deletion of Grace Period Legacy Docket ID #: A-99-35 EPA-HQ-OAR-1999-0079 | Revised Interim Guidance for EPA Rulewriters: Regulatory Flexibility Act as amended by the Small Business Regulatory Enforcement Fairness Act. March 29, 1999. [A-99-35-IV-B-01] | Supporting & Related Material | Guidance | 2022-09-08T04:00:00Z | 2022 | 9 | 2022-09-09T01:31:45Z | 0 | 0 | 0900006484eb9891 |
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;