documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "FAA", document_type = "Notice" and posted_year = 1995 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, 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-1997-2069-0007 | FAA | FAA vs. Delta Airlines, Inc. FAA-1997-2069 | Notice of Settlement of Case | Notice | Notice | 1995-11-08T05:00:00Z | 1995 | 11 | 1995-11-08T05:00:00Z | 1995-11-09T04:59:59Z | 2024-11-12T02:54:47Z | 1 | 0 | 0900006480316738 | |
| FAA-2000-7952-0002 | FAA | Service Difficulty Reports FAA-2000-7952 | U.S. DOT/FAA - 1995 Operational and Structural Difficulty Reports | Notice | Notice of Proposed Rulemaking (NPRM) | 1995-08-14T04:00:00Z | 1995 | 8 | 1995-08-14T04:00:00Z | 1995-08-15T03:59:59Z | 2024-11-07T17:12:36Z | 1 | 0 | 09000064802c81bb | |
| FAA-1997-3045-0132 | FAA | Notice of Proposed Rulemaking - Commuter Operations and General Certification and Operations Requirements FAA-1997-3045 | DOT/FAA - Notice of Public Conference/Meeting | Notice | Public Meetings | 1995-05-26T04:00:00Z | 1995 | 5 | 1995-05-26T04:00:00Z | 1995-05-27T03:59:59Z | 2008-01-12T00:34:34Z | 0 | 0 | 0900006480333826 | |
| FAA-1997-3044-0042 | FAA | Revisions to Digital Flight Data Recorder Rules - Notice of Proposed Rulemaking FAA-1997-3044 | Increased Flight Data Recorder Parameters - Notice of Public Meeting and Request for Comments | Notice | Notice | 1995-03-14T05:00:00Z | 1995 | 3 | 1995-03-14T05:00:00Z | 1995-03-15T04:59:59Z | 2008-01-12T00:38:41Z | 0 | 0 | 090000648031de4d | |
| FAA-1997-3045-0001 | FAA | Notice of Proposed Rulemaking - Commuter Operations and General Certification and Operations Requirements FAA-1997-3045 | Notice of Proposed Rulemaking (NPRM) - Commuter Operations and General Certification and Operations Requirements | Notice | Notice of Proposed Rulemaking (NPRM) | 1995-03-03T05:00:00Z | 1995 | 3 | 1995-03-03T05:00:00Z | 1995-03-30T04:59:59Z | 2023-11-08T02:02:01Z | 0 | 0 | 09000064803337d8 |
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;