documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "PHMSA-2012-0260" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Other 3
- Proposed Rule 2
- Notice 1
- Rule 1
agency_id 1
- PHMSA 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| PHMSA-2012-0260-0013 | PHMSA | Hazardous Materials: Special Permit SOP and Evaulation PHMSA-2012-0260 | Hazardous Materials: Special Permit and Approvals Standard Operating Procedures and Evaluation Process | Rule | Final Rule | 2015-09-10T04:00:00Z | 2015 | 9 | 2015-09-10T04:00:00Z | 2015-09-10T13:34:41Z | 2015-22617 | 0 | 0 | 0900006481c6552e | |
| PHMSA-2012-0260-0012 | PHMSA | Hazardous Materials: Special Permit SOP and Evaulation PHMSA-2012-0260 | National Environmental Policy Act (NEPA) Environmental Checklist | Other | Environmental assessment | 2015-08-03T04:00:00Z | 2015 | 8 | 2015-08-03T04:00:00Z | 2024-11-12T05:42:14Z | 1 | 0 | 0900006481bb8ef4 | ||
| PHMSA-2012-0260-0005 | PHMSA | Hazardous Materials: Special Permit SOP and Evaulation PHMSA-2012-0260 | Hazardous Materials: Special Permit and Approvals Standard Operating Procedures and Evaluation Process; Corrections | Proposed Rule | Correction | 2014-09-12T04:00:00Z | 2014 | 9 | 2014-09-12T04:00:00Z | 2014-09-12T15:50:06Z | 2014-21776 | 0 | 0 | 090000648186cf70 | |
| PHMSA-2012-0260-0004 | PHMSA | Hazardous Materials: Special Permit SOP and Evaulation PHMSA-2012-0260 | Hazardous Materials: Special Permit and Approvals Standard Operating Procedures and Evaluation Process | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-08-12T04:00:00Z | 2014 | 8 | 2014-08-12T04:00:00Z | 2014-10-15T03:59:59Z | 2024-11-12T05:27:26Z | 2014-18925 | 1 | 0 | 090000648181b961 |
| PHMSA-2012-0260-0003 | PHMSA | Hazardous Materials: Special Permit SOP and Evaulation PHMSA-2012-0260 | List of Speakers at the Public Meeting on Special Permits and Approvals Concerning Applicant Fitness Determinations | Other | Supplement (SUP) | 2013-12-27T05:00:00Z | 2013 | 12 | 2013-12-27T05:00:00Z | 2024-11-07T23:00:55Z | 1 | 0 | 09000064814dd211 | ||
| PHMSA-2012-0260-0002 | PHMSA | Hazardous Materials: Special Permit SOP and Evaulation PHMSA-2012-0260 | Meetings: Special Permit and Approval Applicant Fitness Determinations; Hazardous Materials | Notice | Public Meetings | 2013-12-03T05:00:00Z | 2013 | 12 | 2013-12-03T05:00:00Z | 2012-03-01T04:59:59Z | 2024-11-12T05:23:33Z | 2012-02305 | 1 | 0 | 09000064814a3048 |
| PHMSA-2012-0260-0001 | PHMSA | Hazardous Materials: Special Permit SOP and Evaulation PHMSA-2012-0260 | Public Meeting on Special Permits and Approvals - Applicant Fitness Determinations - Transcript | Other | Transcript(s) | 2013-07-16T04:00:00Z | 2013 | 7 | 2013-07-16T04:00:00Z | 2024-11-07T22:58:32Z | 1 | 0 | 0900006481369406 |
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;