documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-1995-950" and posted_year = 1998 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, open_for_comment, 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-1995-950-0098 | DOT | Passenger Manifest Information DOT-OST-1995-950 | U.S. DOT/OST - Denial of Petition for Rulemaking | Rule | Federal Register Publication | 1998-09-30T04:00:00Z | 1998 | 9 | 1998-09-30T04:00:00Z | 1998-10-01T03:59:59Z | 2024-11-07T01:47:53Z | 1 | 0 | 09000064802a1f8c | |
| DOT-OST-1995-950-0096 | DOT | Passenger Manifest Information DOT-OST-1995-950 | The National Air Carrier Association - Supplementary Comment(s) | Supporting & Related Material | Supplement | 1998-09-08T04:00:00Z | 1998 | 9 | 2024-11-07T01:47:53Z | 0 | 0 | 09000064802a1f8b | |||
| DOT-OST-1995-950-0093 | DOT | Passenger Manifest Information DOT-OST-1995-950 | The American Society of Travel Agents, Inc. - Answer | Other | Answer | 1998-07-09T04:00:00Z | 1998 | 7 | 1998-07-09T04:00:00Z | 1998-07-10T03:59:59Z | 2024-11-07T01:47:52Z | 1 | 0 | 09000064802a1f88 | |
| DOT-OST-1995-950-0089 | DOT | Passenger Manifest Information DOT-OST-1995-950 | National Air Carrier Association, Inc. - Letter Confirming Verbal Request | Other | Correspondence | 1998-06-22T04:00:00Z | 1998 | 6 | 1998-06-22T04:00:00Z | 1998-06-23T03:59:59Z | 2024-11-07T01:47:52Z | 1 | 0 | 09000064802a1f83 | |
| DOT-OST-1995-950-0087 | DOT | Passenger Manifest Information DOT-OST-1995-950 | National Air Carrier Association - Petition to Modify the Final Rule | Other | Petition for Reconsideration | 1998-06-18T04:00:00Z | 1998 | 6 | 1998-06-18T04:00:00Z | 1998-06-19T03:59:59Z | 2024-11-07T01:47:52Z | 1 | 0 | 09000064802a1f81 | |
| DOT-OST-1995-950-0086 | DOT | Passenger Manifest Information DOT-OST-1995-950 | Final Rule; Correction - Passenger Manifest Information | Rule | Final Rule | 1998-02-25T05:00:00Z | 1998 | 2 | 1998-02-25T05:00:00Z | 1998-02-26T04:59:59Z | 2024-11-07T01:47:36Z | 1 | 0 | 09000064802a1f80 | |
| DOT-OST-1995-950-0084 | DOT | Passenger Manifest Information DOT-OST-1995-950 | Executive Order 12866 Section 6(a)(3)(E) Requirements | Supporting & Related Material | Analysis | 1998-02-18T05:00:00Z | 1998 | 2 | 2024-11-07T01:47:36Z | 0 | 0 | 09000064802a1f7e | |||
| DOT-OST-1995-950-0083 | DOT | Passenger Manifest Information DOT-OST-1995-950 | Passenger Manifest Information - Final Rule | Rule | Final Rule | 1998-02-18T05:00:00Z | 1998 | 2 | 1998-02-18T05:00:00Z | 1998-02-19T04:59:59Z | 2024-11-07T01:47:35Z | 1 | 0 | 09000064802a1f7d | |
| DOT-OST-1995-950-0085 | DOT | Passenger Manifest Information DOT-OST-1995-950 | Final Regulatory Evaluation - Final Rule - Passenger Manifest Information | Supporting & Related Material | Analysis | 1998-02-18T05:00:00Z | 1998 | 2 | 2024-11-07T01:47:36Z | 0 | 0 | 09000064802a1f7f |
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;