documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "DOT-OST-2007-27331" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOT-OST-2007-27331-0233 | DOT | None DOT-OST-2007-27331 | Complainants' and Respondents' September 7, 2012 Joint Report on the Status of Settlement Discussions and Joint Motion to Extend the Stay in this Proceeding to January 28, 2013 | Other | Request | 2012-09-10T04:00:00Z | 2012 | 9 | 2012-09-10T04:00:00Z | 2024-11-11T20:43:57Z | 1 | 0 | 090000648110ca7a | ||
| DOT-OST-2007-27331-0232 | DOT | None DOT-OST-2007-27331 | 2012-6-24 Fifth Order Granting An Interim Stay Of Proceedings And Extending Deadline To File Procedural Comments | Other | Order | 2012-06-27T04:00:00Z | 2012 | 6 | 2012-06-27T04:00:00Z | 2024-11-07T22:40:46Z | 1 | 0 | 090000648106a568 | ||
| DOT-OST-2007-27331-0231 | DOT | None DOT-OST-2007-27331 | Complainants' and Respondents' Joint Motion to Extend the Stay in this Proceeding to September 28, 2012 | Other | Motion | 2012-06-18T04:00:00Z | 2012 | 6 | 2012-06-18T04:00:00Z | 2024-11-12T05:05:24Z | 1 | 0 | 090000648104b16f | ||
| DOT-OST-2007-27331-0230 | DOT | None DOT-OST-2007-27331 | Complainants' and Respondents' June 8, 2012 Joint Report on the Status of Settlement Discussions | Other | Report | 2012-06-12T04:00:00Z | 2012 | 6 | 2012-06-12T04:00:00Z | 2024-11-12T05:04:49Z | 1 | 0 | 090000648103cd51 | ||
| DOT-OST-2007-27331-0229 | DOT | None DOT-OST-2007-27331 | 2012-2-12 Order Dismissing Alaska Airlines' Claims and Fourth Order Granting An Interim Stay of Proceedings and Extending Deadline To File Procedural Comments | Other | Order | 2012-02-16T05:00:00Z | 2012 | 2 | 2012-02-16T05:00:00Z | 2024-11-07T22:28:19Z | 1 | 0 | 0900006480fb8599 |
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;