documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FAA-2001-9301" and posted_year = 2001 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-2001-9301-0007 | FAA | In the Matter of Federal Express Corp. d/b/a FedEx - Complaint - CP01CE0005 FAA-2001-9301 | FedEx - Respondent's First Set of Interrogatories, Request for Production of Documents, and Requests for Admissions to Complainant - CP01CE0005 | Other | Discovery | 2001-10-01T04:00:00Z | 2001 | 10 | 2001-10-01T04:00:00Z | 2001-11-07T04:59:59Z | 2024-11-12T03:54:35Z | 1 | 0 | 0900006480342733 | |
| FAA-2001-9301-0005 | FAA | In the Matter of Federal Express Corp. d/b/a FedEx - Complaint - CP01CE0005 FAA-2001-9301 | Federal Express Corporation/U.S. DOT/FAA - Joint Procedural Schedule - CP01CE0005 | Other | Procedural Schedule | 2001-07-02T04:00:00Z | 2001 | 7 | 2001-07-02T04:00:00Z | 2001-07-26T03:59:59Z | 2024-11-12T03:54:35Z | 1 | 0 | 0900006480342731 | |
| FAA-2001-9301-0006 | FAA | In the Matter of Federal Express Corp. d/b/a FedEx - Complaint - CP01CE0005 FAA-2001-9301 | Trans States Airlines, Inc. - Respondent's Consolidated Motion for Continuance - CP01CE0003 & CP01CE0005 | Other | Motion | 2001-06-22T04:00:00Z | 2001 | 6 | 2001-06-22T04:00:00Z | 2001-07-28T03:59:59Z | 2024-11-12T03:54:35Z | 1 | 0 | 0900006480342732 | |
| FAA-2001-9301-0004 | FAA | In the Matter of Federal Express Corp. d/b/a FedEx - Complaint - CP01CE0005 FAA-2001-9301 | U.S. DOT/OST - Order of Acting Chief Administrative Law Judge - CP01SO0008 | Other | Order | 2001-06-08T04:00:00Z | 2001 | 6 | 2001-06-08T04:00:00Z | 2001-06-13T03:59:59Z | 2024-11-12T03:53:59Z | 1 | 0 | 0900006480342730 | |
| FAA-2001-9301-0002 | FAA | In the Matter of Federal Express Corp. d/b/a FedEx - Complaint - CP01CE0005 FAA-2001-9301 | U.S. DOT/OST - Notice of Assignment of Proceeding - CP01CE0005 | Notice | Notice | 2001-06-06T04:00:00Z | 2001 | 6 | 2001-06-06T04:00:00Z | 2001-06-13T03:59:59Z | 2024-11-12T03:53:58Z | 1 | 0 | 090000648034272e | |
| FAA-2001-9301-0003 | FAA | In the Matter of Federal Express Corp. d/b/a FedEx - Complaint - CP01CE0005 FAA-2001-9301 | U.S. DOT/OST - Order of Acting Chief Administrative Law Judge - CP01CE0005 | Other | Order | 2001-06-06T04:00:00Z | 2001 | 6 | 2001-06-06T04:00:00Z | 2001-06-13T03:59:59Z | 2024-11-12T03:53:58Z | 1 | 0 | 090000648034272f | |
| FAA-2001-9301-0001 | FAA | In the Matter of Federal Express Corp. d/b/a FedEx - Complaint - CP01CE0005 FAA-2001-9301 | U.S. DOT/FAA - Federal Express Corp. d/b/a FedEx - Request for Hearing/Complaint/Answer - CP01CE0005 | Other | Request for Hearing and Complaint | 2001-04-04T04:00:00Z | 2001 | 4 | 2001-04-04T04:00:00Z | 2001-05-10T03:59:59Z | 2024-11-12T03:53:56Z | 1 | 0 | 0900006480342726 |
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;