documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OAR-2011-0393" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, last_modified, posted_date (date), last_modified (date)
| 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-2011-0393-0023 | EPA | Transportation Conformity Rule: MOVES Regional Grace Period Extension EPA-HQ-OAR-2011-0393 | Transportation Conformity Rule: MOVES Regional Grace Period Extension | Rule | Final Rule | 2012-02-27T05:00:00Z | 2012 | 2 | 2012-03-26T10:59:06Z | 2012-04484 | 0 | 0 | 0900006480fc2f87 | ||
| EPA-HQ-OAR-2011-0393-0026 | EPA | Transportation Conformity Rule: MOVES Regional Grace Period Extension EPA-HQ-OAR-2011-0393 | October 13, 2010 MOVES transition stakeholder call | Supporting & Related Material | Memorandum | 2012-02-27T05:00:00Z | 2012 | 2 | 2012-02-27T14:17:36Z | 0 | 0 | 0900006480fb7c14 | |||
| EPA-HQ-OAR-2011-0393-0024 | EPA | Transportation Conformity Rule: MOVES Regional Grace Period Extension EPA-HQ-OAR-2011-0393 | 58 FR 62188 Criteria and Procedures for Determining Conformity to State or Federal Implementation Plans of Transportation Plans, Programs, and Projects Funded or Approved Under Title 23 or the Federal Transit Act | Supporting & Related Material | Publication - Previous/Related FR Notice | 2012-02-27T05:00:00Z | 2012 | 2 | 2012-02-27T14:17:35Z | 0 | 0 | 0900006480fb0559 | |||
| EPA-HQ-OAR-2011-0393-0027 | EPA | Transportation Conformity Rule: MOVES Regional Grace Period Extension EPA-HQ-OAR-2011-0393 | Transition for Regional Conformity Analyses December 22, 2010 MOVES Stakeholder call | Supporting & Related Material | Memorandum | 2012-02-27T05:00:00Z | 2012 | 2 | 2012-02-27T14:17:36Z | 0 | 0 | 0900006480fb7c15 | |||
| EPA-HQ-OAR-2011-0393-0029 | EPA | Transportation Conformity Rule: MOVES Regional Grace Period Extension EPA-HQ-OAR-2011-0393 | MOVES Transition for Regional Conformity Analyses March 7, 2011 MOVES Stakeholder call | Supporting & Related Material | Memorandum | 2012-02-27T05:00:00Z | 2012 | 2 | 2012-02-27T14:17:37Z | 0 | 0 | 0900006480fb7c17 | |||
| EPA-HQ-OAR-2011-0393-0030 | EPA | Transportation Conformity Rule: MOVES Regional Grace Period Extension EPA-HQ-OAR-2011-0393 | MOVES Transition for Regional Conformity Analyses March 17, 2011 MOVES Stakeholder call | Supporting & Related Material | Memorandum | 2012-02-27T05:00:00Z | 2012 | 2 | 2012-02-27T14:17:37Z | 0 | 0 | 0900006480fb818b | |||
| EPA-HQ-OAR-2011-0393-0025 | EPA | Transportation Conformity Rule: MOVES Regional Grace Period Extension EPA-HQ-OAR-2011-0393 | Summary of USEPA Regional Office Survey about MOVES Transition for Regional Conformity Analyses | Supporting & Related Material | Memorandum | 2012-02-27T05:00:00Z | 2012 | 2 | 2012-02-27T14:17:36Z | 0 | 0 | 0900006480fb7a15 | |||
| EPA-HQ-OAR-2011-0393-0031 | EPA | Transportation Conformity Rule: MOVES Regional Grace Period Extension EPA-HQ-OAR-2011-0393 | Letter to Gina McCarthy, Assistant Administrator, USEPA/OAR from Polly Trottenberg, Assistant Secretary, U.S. Department of Transportation (DOT) on February 17, 2012 | Supporting & Related Material | Interagency Review | 2012-02-27T05:00:00Z | 2012 | 2 | 2012-02-27T14:17:37Z | 0 | 0 | 0900006480fba73d | |||
| EPA-HQ-OAR-2011-0393-0028 | EPA | Transportation Conformity Rule: MOVES Regional Grace Period Extension EPA-HQ-OAR-2011-0393 | March 2, 2011 MOVES Stakeholder call | Supporting & Related Material | Memorandum | 2012-02-27T05:00:00Z | 2012 | 2 | 2012-02-27T14:17:36Z | 0 | 0 | 0900006480fb7c16 |
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;