documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2000-7869" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FAA-2000-7869-0009 | FAA | In the Matter of Northwest Airlines, Inc. - Complaint - CP00WP0028 FAA-2000-7869 | In the matter of Northwest Airlines, Inc. - Complainant's Witness List and Testimony Summaries | Other | Witness List | 2001-03-16T05:00:00Z | 2001 | 3 | 2001-03-16T05:00:00Z | 2001-04-07T03:59:59Z | 2008-01-12T00:39:00Z | 0 | 0 | 0900006480341643 | |
| FAA-2000-7869-0010 | FAA | In the Matter of Northwest Airlines, Inc. - Complaint - CP00WP0028 FAA-2000-7869 | In the Matter of Northwest Airlines, Inc. - Withdrawal of Request for a Formal Hearing - CP00WP0028 | Other | Withdrawal of Complaint or Request for Hearing | 2001-03-16T05:00:00Z | 2001 | 3 | 2001-03-16T05:00:00Z | 2001-04-07T03:59:59Z | 2008-01-12T00:39:00Z | 0 | 0 | 090000648034163a | |
| FAA-2000-7869-0007 | FAA | In the Matter of Northwest Airlines, Inc. - Complaint - CP00WP0028 FAA-2000-7869 | In the Matter of Northwest Airlines, Inc. - Order Terminating Proceeding - CP00WP0028 | Other | Order | 2001-03-07T05:00:00Z | 2001 | 3 | 2001-03-07T05:00:00Z | 2001-03-10T04:59:59Z | 2008-01-12T00:36:53Z | 0 | 0 | 0900006480341641 | |
| FAA-2000-7869-0008 | FAA | In the Matter of Northwest Airlines, Inc. - Complaint - CP00WP0028 FAA-2000-7869 | In the Matter of Northwest Airlines, Inc. - Motion to Deem Allegations Admitted and to Limit the Hearing to Sanction - CP00WP0028 | Other | Motion | 2001-03-02T05:00:00Z | 2001 | 3 | 2001-03-02T05:00:00Z | 2001-03-22T04:59:59Z | 2008-01-12T00:36:09Z | 0 | 0 | 0900006480341642 | |
| FAA-2000-7869-0006 | FAA | In the Matter of Northwest Airlines, Inc. - Complaint - CP00WP0028 FAA-2000-7869 | In the Matter of Northwest Airlines, Inc. - Order Scheduling Hearing - CP00WP0028 | Other | Order | 2001-01-24T05:00:00Z | 2001 | 1 | 2001-01-24T05:00:00Z | 2001-01-27T04:59:59Z | 2008-01-12T00:36:53Z | 0 | 0 | 0900006480341640 | |
| FAA-2000-7869-0004 | FAA | In the Matter of Northwest Airlines, Inc. - Complaint - CP00WP0028 FAA-2000-7869 | In the Matter of Northwest Airlines, Inc. - Answer - CP00WP0028 | Other | Answer | 2000-09-13T04:00:00Z | 2000 | 9 | 2000-09-13T04:00:00Z | 2000-09-22T03:59:59Z | 2008-01-12T00:33:46Z | 0 | 0 | 090000648034163f | |
| FAA-2000-7869-0003 | FAA | In the Matter of Northwest Airlines, Inc. - Complaint - CP00WP0028 FAA-2000-7869 | In the Matter of Northwest Airlines, Inc. - Notice of Assignment of Proceeding - CP00WP0028 | Notice | Notice | 2000-09-08T04:00:00Z | 2000 | 9 | 2000-09-08T04:00:00Z | 2000-09-22T03:59:59Z | 2008-01-12T00:36:09Z | 0 | 0 | 090000648034163c | |
| FAA-2000-7869-0002 | FAA | In the Matter of Northwest Airlines, Inc. - Complaint - CP00WP0028 FAA-2000-7869 | In the Matter of Northwest Airlines, Inc. - Complaint - CP00WP0028 | Other | Complaint | 2000-08-09T04:00:00Z | 2000 | 8 | 2000-08-09T04:00:00Z | 2000-09-22T03:59:59Z | 2008-01-12T00:36:09Z | 0 | 0 | 090000648034163b | |
| FAA-2000-7869-0001 | FAA | In the Matter of Northwest Airlines, Inc. - Complaint - CP00WP0028 FAA-2000-7869 | In the Matter of Northwest Airlines, Inc. - Request for Hearing - CP00WP0028 | Other | Request for Hearing | 2000-07-31T04:00:00Z | 2000 | 7 | 2000-07-31T04:00:00Z | 2000-09-22T03:59:59Z | 2008-01-12T00:34:37Z | 0 | 0 | 0900006480341638 |
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;