documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "PHMSA-2008-0350" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, withdrawn, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| PHMSA-2008-0350-0065 | PHMSA | In the Matter of Air Sea Containers, Inc. PHMSA-2008-0350 | U.S. DOT/PHMSA - Decision | Other | Decision | 2010-12-29T05:00:00Z | 2010 | 12 | 2010-12-29T05:00:00Z | 2013-08-11T01:38:30Z | 0 | 0 | 0900006480bb0154 | ||
| PHMSA-2008-0350-0064 | PHMSA | In the Matter of Air Sea Containers, Inc. PHMSA-2008-0350 | U.S. DOT/PHMSA - PHMSA's Reply to Respondent's Appeal of the Administrative Law Judge's Initial Decision | Other | Reply | 2010-03-09T05:00:00Z | 2010 | 3 | 2010-03-09T05:00:00Z | 2013-07-27T23:11:01Z | 0 | 0 | 0900006480ab66a2 | ||
| PHMSA-2008-0350-0061 | PHMSA | In the Matter of Air Sea Containers, Inc. PHMSA-2008-0350 | U.S. DOT/PHMSA - Appeal of Administrative Law Judge's Initial Decision to Administrator, Office of the Administrator, Pipeline and Hazardous Materials Safety Administration | Other | Appeal | 2010-03-05T05:00:00Z | 2010 | 3 | 2010-03-05T05:00:00Z | 2013-07-27T23:09:23Z | 0 | 0 | 0900006480aaa1d5 | ||
| PHMSA-2008-0350-0062 | PHMSA | In the Matter of Air Sea Containers, Inc. PHMSA-2008-0350 | U.S. DOT/PHMSA - Response to Appeal Brief of PHMSA | Other | Response(s) | 2010-03-05T05:00:00Z | 2010 | 3 | 2010-03-05T05:00:00Z | 2013-08-11T04:38:19Z | 0 | 0 | 0900006480ab4de0 | ||
| PHMSA-2008-0350-0063 | PHMSA | In the Matter of Air Sea Containers, Inc. PHMSA-2008-0350 | U.S. DOT/PHMSA - PHMSA's Reply to Respondent's Appeal of the Administrative Law Judge's Initial Decision | Other | 2010-03-05T00:00:00Z | 2010 | 3 | 2013-07-27T23:10:47Z | 0 | 1 | 0900006480ab4de6 | ||||
| PHMSA-2008-0350-0060 | PHMSA | In the Matter of Air Sea Containers, Inc. PHMSA-2008-0350 | U.S. DOT/PHMSA - Appeal of the Administrative Law Judge's Initial Decision | Other | Appeal | 2010-02-18T05:00:00Z | 2010 | 2 | 2010-02-18T05:00:00Z | 2013-07-27T23:08:45Z | 0 | 0 | 0900006480aa696c | ||
| PHMSA-2008-0350-0059 | PHMSA | In the Matter of Air Sea Containers, Inc. PHMSA-2008-0350 | U.S. DOT/PHMSA - Administrative Law Juidge's Initial Decison | Other | Decision | 2010-02-01T05:00:00Z | 2010 | 2 | 2010-02-01T05:00:00Z | 2013-08-11T03:06:34Z | 0 | 0 | 0900006480a869bc | ||
| PHMSA-2008-0350-0058 | PHMSA | In the Matter of Air Sea Containers, Inc. PHMSA-2008-0350 | In the Matter of Air Sea Containers, Inc. - Notice of Supplemental Service | Notice | Notice | 2010-01-08T05:00:00Z | 2010 | 1 | 2010-01-08T05:00:00Z | 2013-07-27T23:03:51Z | 0 | 0 | 0900006480a79159 | ||
| PHMSA-2008-0350-0057 | PHMSA | In the Matter of Air Sea Containers, Inc. PHMSA-2008-0350 | U.S. DOT/PHMSA - Motion in Opposition to Respondent's Motion for Reconsideration | Other | Motion | 2010-01-04T05:00:00Z | 2010 | 1 | 2010-01-04T05:00:00Z | 2013-08-11T01:31:47Z | 0 | 0 | 0900006480a74983 |
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;