documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "DOT-OST-2001-9325" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOT-OST-2001-9325-1328 | DOT | Air Transport Association of America, Inc. - Petition for Rulemaking DOT-OST-2001-9325 | Oversales and Denied Boarding Compensation | Rule | Federal Register Publication | 2008-04-18T04:00:00Z | 2008 | 4 | 2008-04-18T04:00:00Z | 2024-11-12T04:13:16Z | 08-01145 | 1 | 0 | 0900006480511b5c | |
| DOT-OST-2001-9325-1327 | DOT | Air Transport Association of America, Inc. - Petition for Rulemaking DOT-OST-2001-9325 | Final Rule - Oversales and Denied Boarding Compensation (Original) | Rule | Final Rule | 2008-04-16T04:00:00Z | 2008 | 4 | 2008-04-16T04:00:00Z | 2024-11-12T04:13:24Z | 1 | 0 | 090000648050abd4 | ||
| DOT-OST-2001-9325-1326 | DOT | Air Transport Association of America, Inc. - Petition for Rulemaking DOT-OST-2001-9325 | Regulatory Evaluation (Final Rule on Oversales and Denied Boarding Compensation) | Supporting & Related Material | Analysis | 2008-04-16T04:00:00Z | 2008 | 4 | 2008-04-16T13:11:57Z | 0 | 0 | 09000064804f9061 | |||
| DOT-OST-2001-9325-1325 | DOT | Air Transport Association of America, Inc. - Petition for Rulemaking DOT-OST-2001-9325 | Oversales and Denied Boarding Compensation - Final Rule (Copy) | Rule | 2008-04-16T00:00:00Z | 2008 | 4 | 2024-11-07T21:53:16Z | 0 | 1 | 09000064804f8fe2 | ||||
| DOT-OST-2001-9325-1324 | DOT | Air Transport Association of America, Inc. - Petition for Rulemaking DOT-OST-2001-9325 | Executive Order 12866 and Congressional Review Requirements | Other | Other | 2008-04-14T04:00:00Z | 2008 | 4 | 2008-04-14T04:00:00Z | 2013-07-27T21:17:39Z | 0 | 0 | 09000064804f8e7f | ||
| DOT-OST-2001-9325-1321 | DOT | Air Transport Association of America, Inc. - Petition for Rulemaking DOT-OST-2001-9325 | Air Carrier Association of America | Other | Clarification | 2008-01-28T05:00:00Z | 2008 | 1 | 2008-01-28T05:00:00Z | 2024-11-07T01:40:39Z | 1 | 0 | 09000064803a294a |
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;