documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2002-11407" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
These facets timed out: posted_year
| 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-2002-11407-0012 | FAA | In the Matter of Eric T. Williams - Complaint - CP02CE0001 FAA-2002-11407 | U.S. DOT/FAA - Complainant's Posthearing Brief - CP02CE0001 | Other | Brief | 2002-09-30T04:00:00Z | 2002 | 9 | 2002-09-30T04:00:00Z | 2002-10-08T03:59:59Z | 2024-11-07T17:52:48Z | 1 | 0 | 090000648030434a | |
| FAA-2002-11407-0010 | FAA | In the Matter of Eric T. Williams - Complaint - CP02CE0001 FAA-2002-11407 | U.S. DOT/FAA - Agency's Witness List - CP02CE0001 | Other | Witness List | 2002-06-14T04:00:00Z | 2002 | 6 | 2002-06-14T04:00:00Z | 2002-08-09T03:59:59Z | 2024-11-07T17:52:29Z | 1 | 0 | 0900006480304348 | |
| FAA-2002-11407-0009 | FAA | In the Matter of Eric T. Williams - Complaint - CP02CE0001 FAA-2002-11407 | U.S. DOT/FAA - Agency's Witness List - CP02CE0001 | Other | Witness List | 2002-06-14T04:00:00Z | 2002 | 6 | 2002-06-14T04:00:00Z | 2002-08-01T03:59:59Z | 2024-11-07T17:52:50Z | 1 | 0 | 0900006480304353 | |
| FAA-2002-11407-0005 | FAA | In the Matter of Eric T. Williams - Complaint - CP02CE0001 FAA-2002-11407 | U.S.DOT/FAA - Request for Discovery - CPCP02CE0001 | Other | Request | 2002-04-16T04:00:00Z | 2002 | 4 | 2002-04-16T04:00:00Z | 2002-06-26T03:59:59Z | 2024-11-07T17:52:49Z | 1 | 0 | 090000648030434f | |
| FAA-2002-11407-0004-0002 | FAA | In the Matter of Eric T. Williams - Complaint - CP02CE0001 FAA-2002-11407 | Eric T. Williams - Respondent's Answer - CP02CE0001 | Other | Answer | 2002-04-08T04:00:00Z | 2002 | 4 | 2002-04-08T04:00:00Z | 2002-05-17T03:59:59Z | 2024-11-07T17:52:49Z | 1 | 0 | 090000648030434e | |
| FAA-2002-11407-0004-0001 | FAA | In the Matter of Eric T. Williams - Complaint - CP02CE0001 FAA-2002-11407 | Eric T. Williams - Respondent's Answer - CP02CE0001 | Other | Answer | 2002-04-08T04:00:00Z | 2002 | 4 | 2002-04-08T04:00:00Z | 2002-05-17T03:59:59Z | 2024-11-07T17:52:49Z | 1 | 0 | 090000648030434d | |
| FAA-2002-11407-0003 | FAA | In the Matter of Eric T. Williams - Complaint - CP02CE0001 FAA-2002-11407 | U.S. DOT/FAA - Motion for Order Assessing Civil Penalty - CP02CE0001 | Other | Motion | 2002-02-28T05:00:00Z | 2002 | 2 | 2002-02-28T05:00:00Z | 2002-04-03T04:59:59Z | 2024-11-07T17:52:49Z | 1 | 0 | 090000648030434c | |
| FAA-2002-11407-0001 | FAA | In the Matter of Eric T. Williams - Complaint - CP02CE0001 FAA-2002-11407 | U.S. DOT/FAA/ Eric T. Williams - Request for Hearing and Complaint - CP02CE0001 | Other | Request for Hearing and Complaint | 2001-12-31T05:00:00Z | 2001 | 12 | 2001-12-31T05:00:00Z | 2002-03-15T04:59:59Z | 2024-11-07T17:52:29Z | 1 | 0 | 0900006480304347 |
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;