documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FAA-2000-7664" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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-2000-7664-0018 | FAA | Exemption/Rulemaking - Regional Airline Association (RAA) FAA-2000-7664 | Richard A. Johnson - Statement | Other | Statement | 2000-10-17T04:00:00Z | 2000 | 10 | 2000-10-17T04:00:00Z | 2000-10-18T03:59:59Z | 2008-01-12T00:38:18Z | 0 | 0 | 09000064803402c9 | |
| FAA-2000-7664-0017 | FAA | Exemption/Rulemaking - Regional Airline Association (RAA) FAA-2000-7664 | U.S. DOT/FAA - Response to Petition | Other | Correspondence | 1999-10-06T04:00:00Z | 1999 | 10 | 1999-10-06T04:00:00Z | 2000-07-19T03:59:59Z | 2008-01-12T00:36:09Z | 0 | 0 | 09000064803402c8 | |
| FAA-2000-7664-0016 | FAA | Exemption/Rulemaking - Regional Airline Association (RAA) FAA-2000-7664 | Regional Airline Association (RAA) | Other | Petition(s) | 1999-06-15T04:00:00Z | 1999 | 6 | 1999-06-15T04:00:00Z | 2000-07-19T03:59:59Z | 2008-01-12T00:34:37Z | 0 | 0 | 09000064803402c6 | |
| FAA-2000-7664-0015 | FAA | Exemption/Rulemaking - Regional Airline Association (RAA) FAA-2000-7664 | U.S. DOT/FAA - Grant of Exemption | Other | Grant of Petition | 1997-07-29T04:00:00Z | 1997 | 7 | 1997-07-29T04:00:00Z | 2000-07-19T03:59:59Z | 2008-01-12T00:38:18Z | 0 | 0 | 09000064803402c4 | |
| FAA-2000-7664-0014 | FAA | Exemption/Rulemaking - Regional Airline Association (RAA) FAA-2000-7664 | Regional Airlines Association (RAA) | Other | Petition(s) | 1997-07-10T04:00:00Z | 1997 | 7 | 1997-07-10T04:00:00Z | 2000-07-19T03:59:59Z | 2008-01-12T00:33:46Z | 0 | 0 | 09000064803402c1 | |
| FAA-2000-7664-0013 | FAA | Exemption/Rulemaking - Regional Airline Association (RAA) FAA-2000-7664 | U.S. DOT/FAA - Grant of Exemption | Other | Grant of Petition | 1996-06-03T04:00:00Z | 1996 | 6 | 1996-06-03T04:00:00Z | 2000-07-19T03:59:59Z | 2008-01-12T00:39:00Z | 0 | 0 | 09000064803402bf | |
| FAA-2000-7664-0012 | FAA | Exemption/Rulemaking - Regional Airline Association (RAA) FAA-2000-7664 | U.S. DOT/FAA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 1996-04-11T04:00:00Z | 1996 | 4 | 1996-04-11T04:00:00Z | 2000-07-19T03:59:59Z | 2008-01-12T00:33:46Z | 0 | 0 | 09000064803402bd | |
| FAA-2000-7664-0011 | FAA | Exemption/Rulemaking - Regional Airline Association (RAA) FAA-2000-7664 | Regional Airline Association (RAA) | Other | Petition(s) | 1996-03-06T05:00:00Z | 1996 | 3 | 1996-03-06T05:00:00Z | 2000-07-19T03:59:59Z | 2008-01-12T00:36:09Z | 0 | 0 | 09000064803402bb | |
| FAA-2000-7664-0010 | FAA | Exemption/Rulemaking - Regional Airline Association (RAA) FAA-2000-7664 | U.S. DOT/FAA - Grant of Exemption | Other | Grant of Petition | 1994-04-11T04:00:00Z | 1994 | 4 | 1994-04-11T04:00:00Z | 2000-07-19T03:59:59Z | 2008-01-12T00:36:09Z | 0 | 0 | 09000064803402b9 | |
| FAA-2000-7664-0008 | FAA | Exemption/Rulemaking - Regional Airline Association (RAA) FAA-2000-7664 | Regional Airlines Association (RAA) | Other | Petition(s) | 1994-01-31T05:00:00Z | 1994 | 1 | 1994-01-31T05:00:00Z | 2000-07-19T03:59:59Z | 2008-01-12T00:34:37Z | 0 | 0 | 09000064803402d5 |
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;