documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2000-7623" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-7623-0239 | FAA | Review of Existing Regulations - Request for Comments FAA-2000-7623 | Disposition of Comments on Existing Regulations | Rule | Federal Register Publication | 2002-01-31T05:00:00Z | 2002 | 1 | 2002-01-31T05:00:00Z | 2002-02-01T04:59:59Z | 2024-11-12T03:48:15Z | 1 | 0 | 090000648033f6a4 | |
| FAA-2000-7623-0232 | FAA | Review of Existing Regulations - Request for Comments FAA-2000-7623 | HEICO Aerospace Corporation | Other | Response(s) | 2000-11-07T05:00:00Z | 2000 | 11 | 2000-11-07T05:00:00Z | 2000-11-09T04:59:59Z | 2024-11-12T03:48:06Z | 1 | 0 | 090000648033f69d | |
| FAA-2000-7623-0226 | FAA | Review of Existing Regulations - Request for Comments FAA-2000-7623 | Kreutzer Garman, J.D. - Letter in Support | Other | Correspondence | 2000-10-20T04:00:00Z | 2000 | 10 | 2000-10-20T04:00:00Z | 2000-10-24T03:59:59Z | 2024-11-12T03:48:06Z | 1 | 0 | 090000648033f696 | |
| FAA-2000-7623-0047 | FAA | Review of Existing Regulations - Request for Comments FAA-2000-7623 | August B. Echavarri - Request for Extension to October 28 | Other | Request | 2000-08-09T04:00:00Z | 2000 | 8 | 2000-08-09T04:00:00Z | 2000-08-10T03:59:59Z | 2024-11-12T03:48:24Z | 1 | 0 | 090000648033f6be | |
| FAA-2000-7623-0023 | FAA | Review of Existing Regulations - Request for Comments FAA-2000-7623 | Michael Myshatyn | Other | Petition for Reconsideration | 2000-07-21T04:00:00Z | 2000 | 7 | 2000-07-21T04:00:00Z | 2000-07-25T03:59:59Z | 2024-11-12T03:48:06Z | 1 | 0 | 090000648033f69a | |
| FAA-2000-7623-0009 | FAA | Review of Existing Regulations - Request for Comments FAA-2000-7623 | Kenneth A. Janulewicz | Other | Correspondence | 2000-07-18T04:00:00Z | 2000 | 7 | 2000-07-18T04:00:00Z | 2000-07-20T03:59:59Z | 2024-11-12T03:49:34Z | 1 | 0 | 090000648033f6ed | |
| FAA-2000-7623-0001 | FAA | Review of Existing Regulations - Request for Comments FAA-2000-7623 | Review of Existing Regulations; Request for Comments. | Rule | Federal Register Publication | 2000-07-13T04:00:00Z | 2000 | 7 | 2000-07-13T04:00:00Z | 2000-07-14T03:59:59Z | 2024-11-12T03:49:49Z | 1 | 0 | 090000648033f60b | |
| FAA-2000-7623-0013 | FAA | Review of Existing Regulations - Request for Comments FAA-2000-7623 | U.S. DOT/FAA - Review of Regulations; Request for Comments | Rule | Federal Register Publication | 2000-07-07T04:00:00Z | 2000 | 7 | 2000-07-07T04:00:00Z | 2000-07-21T03:59:59Z | 2024-11-12T03:50:15Z | 1 | 0 | 090000648033f62d |
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;