documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2000-8391" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-8391-0010 | FAA | Exemption/Rulemaking - Ed's Flying Service FAA-2000-8391 | U.S. DOT/FAA - Denial of Petition | Other | Decision | 2006-03-06T05:00:00Z | 2006 | 3 | 2006-03-06T05:00:00Z | 2006-03-07T04:59:59Z | 2024-11-07T02:14:20Z | 1 | 0 | 09000064802b238a | |
| FAA-2000-8391-0009 | FAA | Exemption/Rulemaking - Ed's Flying Service FAA-2000-8391 | Ed's Flying Service, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2005-12-23T05:00:00Z | 2005 | 12 | 2005-12-23T05:00:00Z | 2005-12-24T04:59:59Z | 2024-11-07T02:14:51Z | 1 | 0 | 09000064802b2392 | |
| FAA-2000-8391-0008 | FAA | Exemption/Rulemaking - Ed's Flying Service FAA-2000-8391 | U.S. DOT/FAA - Grant of Exemption - No. 7494B | Other | Decision | 2005-01-14T05:00:00Z | 2005 | 1 | 2005-01-14T05:00:00Z | 2005-01-15T04:59:59Z | 2024-11-07T02:14:50Z | 1 | 0 | 09000064802b2391 | |
| FAA-2000-8391-0007 | FAA | Exemption/Rulemaking - Ed's Flying Service FAA-2000-8391 | Ed's Flying Service, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2004-12-27T05:00:00Z | 2004 | 12 | 2004-12-27T05:00:00Z | 2004-12-28T04:59:59Z | 2024-11-07T02:14:50Z | 1 | 0 | 09000064802b2390 | |
| FAA-2000-8391-0005 | FAA | Exemption/Rulemaking - Ed's Flying Service FAA-2000-8391 | U.S. DOT/FAA - Grant of Exemption | Other | Decision | 2002-11-19T05:00:00Z | 2002 | 11 | 2002-11-19T05:00:00Z | 2002-11-20T04:59:59Z | 2024-11-07T02:14:50Z | 1 | 0 | 09000064802b238f | |
| FAA-2000-8391-0004 | FAA | Exemption/Rulemaking - Ed's Flying Service FAA-2000-8391 | Ed's Flying Service, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2002-10-16T04:00:00Z | 2002 | 10 | 2002-10-16T04:00:00Z | 2002-10-17T03:59:59Z | 2024-11-07T02:14:50Z | 1 | 0 | 09000064802b238e | |
| FAA-2000-8391-0002 | FAA | Exemption/Rulemaking - Ed's Flying Service FAA-2000-8391 | U.S.DOT/FAA - Grant of Petition | Other | Decision | 2001-04-13T04:00:00Z | 2001 | 4 | 2001-04-13T04:00:00Z | 2001-04-14T03:59:59Z | 2024-11-07T02:14:20Z | 1 | 0 | 09000064802b238b | |
| FAA-2000-8391-0001 | FAA | Exemption/Rulemaking - Ed's Flying Service FAA-2000-8391 | Exemption/Rulemaking - Ed's Flying Service, Inc. | Other | Petitions for Exemption | 2000-11-20T05:00:00Z | 2000 | 11 | 2000-11-20T05:00:00Z | 2000-11-21T04:59:59Z | 2024-11-07T02:14:20Z | 1 | 0 | 09000064802b2389 |
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;