documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-2007-26829" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, posted_date (date), comment_start_date (date), comment_end_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-26829-0258 | DOT | None DOT-OST-2007-26829 | Executive Order 12866 and Congressional Review Requirements | Other | OMB Review | 2011-09-19T04:00:00Z | 2011 | 9 | 2011-09-19T04:00:00Z | 2011-09-19T17:11:36Z | 0 | 0 | 0900006480f2287e | ||
| DOT-OST-2007-26829-0256 | DOT | None DOT-OST-2007-26829 | Transportation for Individuals with Disabilities: Passenger Vessels; Change in Effective Date | Rule | Federal Register Publication | 2010-11-08T05:00:00Z | 2010 | 11 | 2010-11-08T05:00:00Z | 2018-08-10T16:02:48Z | 2010-28236 | 0 | 0 | 0900006480b840ba | |
| DOT-OST-2007-26829-0255 | DOT | None DOT-OST-2007-26829 | Federal Register Publication (Original) - Response to Comments; Change in Effective Date | Other | Other | 2010-11-02T04:00:00Z | 2010 | 11 | 2010-11-02T04:00:00Z | 2018-08-10T16:03:57Z | 0 | 0 | 0900006480b7ed5d | ||
| DOT-OST-2007-26829-0254 | DOT | None DOT-OST-2007-26829 | Disability And Communication Access Board | Other | Other | 2010-10-08T04:00:00Z | 2010 | 10 | 2010-10-08T04:00:00Z | 2013-07-27T23:34:07Z | 0 | 0 | 0900006480b6ab4d | ||
| DOT-OST-2007-26829-0218 | DOT | None DOT-OST-2007-26829 | Transportation for Individuals with Disabilities: Passenger Vessels | Rule | Federal Register Publication | 2010-07-06T04:00:00Z | 2010 | 7 | 2010-07-06T04:00:00Z | 2010-10-05T03:59:59Z | 2018-08-10T16:02:38Z | 2010-15101 | 0 | 0 | 0900006480b13912 |
| DOT-OST-2007-26829-0212 | DOT | None DOT-OST-2007-26829 | Final Rule; Request for Comments - Transportation for Individuals with Disabilities: Passenger Vessels (Original Copy) | Other | Other | 2010-06-17T04:00:00Z | 2010 | 6 | 2010-06-17T04:00:00Z | 2018-08-10T16:03:36Z | 0 | 0 | 0900006480b03822 | ||
| DOT-OST-2007-26829-0177 | DOT | None DOT-OST-2007-26829 | U.S. DOT/OST - Transportation for Individuals With Disabilities: Passenger Vessels | Rule | Federal Register Publication | 2008-04-28T04:00:00Z | 2008 | 4 | 2008-04-28T04:00:00Z | 2008-04-24T03:59:59Z | 2018-08-10T16:02:24Z | 08-01036 | 0 | 0 | 0900006480538c1e |
| DOT-OST-2007-26829-0172 | DOT | None DOT-OST-2007-26829 | Agenda for Passenger Vessel Access Public Meeting (Day 1 - April 8, 2008 and Day 2 April 9, 2008) | Other | Other | 2008-03-26T04:00:00Z | 2008 | 3 | 2008-03-26T04:00:00Z | 2013-07-28T01:31:07Z | 0 | 0 | 0900006480408663 | ||
| DOT-OST-2007-26829-0030 | DOT | None DOT-OST-2007-26829 | Proposed Rule; Extension of Comment Period | Rule | Federal Register Publication | 2007-04-13T04:00:00Z | 2007 | 4 | 2007-04-13T04:00:00Z | 2007-04-14T03:59:59Z | 2018-08-10T16:02:10Z | 0 | 0 | 09000064802ac583 |
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;