documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2000-7873" and posted_year = 2001 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FAA-2000-7873-0014 | FAA | In the Matter of High Exposure - Complaint - CP00EA0037 FAA-2000-7873 | High Exposure, Inc. - Request For Extension of Time To File and Perfect Appeal in re High Exposure - CPOOEA0037 | Other | Request for Extension of Time in which to file a document | 2001-12-06T05:00:00Z | 2001 | 12 | 2001-12-06T05:00:00Z | 2002-01-23T04:59:59Z | 2024-11-07T21:41:37Z | 1 | 0 | 0900006480341693 | |
| FAA-2000-7873-0017 | FAA | In the Matter of High Exposure - Complaint - CP00EA0037 FAA-2000-7873 | High Exposure, Inc. - Motion for Extension of Time to File Brief and Perfect Appeal - CP00EA0037 | Other | Motion | 2001-12-06T05:00:00Z | 2001 | 12 | 2001-12-06T05:00:00Z | 2002-03-07T04:59:59Z | 2024-11-07T21:41:37Z | 1 | 0 | 0900006480341696 | |
| FAA-2000-7873-0013 | FAA | In the Matter of High Exposure - Complaint - CP00EA0037 FAA-2000-7873 | High Exposure, Inc. - Notice of Appeal Of Initial Written Decision - CPOOEA0037 | Notice | Notice of Appeal | 2001-11-05T05:00:00Z | 2001 | 11 | 2001-11-05T05:00:00Z | 2001-12-13T04:59:59Z | 2024-11-07T21:41:25Z | 1 | 0 | 0900006480341692 | |
| FAA-2000-7873-0012 | FAA | In the Matter of High Exposure - Complaint - CP00EA0037 FAA-2000-7873 | U.S. DOT/OST - Initial Decision of Administrative Law Judge Burton S. Kolko- CP00EA0037 | Other | Initial Decision | 2001-10-31T05:00:00Z | 2001 | 10 | 2001-10-31T05:00:00Z | 2001-11-03T04:59:59Z | 2024-11-07T21:41:25Z | 1 | 0 | 0900006480341691 | |
| FAA-2000-7873-0011 | FAA | In the Matter of High Exposure - Complaint - CP00EA0037 FAA-2000-7873 | U.S.DOT/FAA - Agency's Opposition to the Respondent's Motion to Strike and Motion to Dismiss - CP00EA0037 | Other | Letter(s) in Opposition | 2001-08-03T04:00:00Z | 2001 | 8 | 2001-08-03T04:00:00Z | 2001-08-22T03:59:59Z | 2024-11-07T21:41:24Z | 1 | 0 | 0900006480341690 | |
| FAA-2000-7873-0010 | FAA | In the Matter of High Exposure - Complaint - CP00EA0037 FAA-2000-7873 | U.S. DOT/FAA - Agency's Supplemental Submission - CPOOEA0037 | Supporting & Related Material | Supplement | 2001-07-13T04:00:00Z | 2001 | 7 | 2024-11-07T21:41:24Z | 0 | 0 | 090000648034168f | |||
| FAA-2000-7873-0009 | FAA | In the Matter of High Exposure - Complaint - CP00EA0037 FAA-2000-7873 | U.S. DOT/FAA - Transcript of Proceedings - CP00EA0037 | Other | Transcript(s) | 2001-06-13T04:00:00Z | 2001 | 6 | 2001-06-13T04:00:00Z | 2001-07-17T03:59:59Z | 2024-11-07T21:41:39Z | 1 | 0 | 09000064803416a1 | |
| FAA-2000-7873-0008 | FAA | In the Matter of High Exposure - Complaint - CP00EA0037 FAA-2000-7873 | In the Matter of High Exposure - Order Scheduling Hearing - CP00EA0037 | Other | Order | 2001-03-01T05:00:00Z | 2001 | 3 | 2001-03-01T05:00:00Z | 2001-03-08T04:59:59Z | 2024-11-07T21:41:39Z | 1 | 0 | 09000064803416a0 |
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;