documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FAA-2001-10910" and posted_year = 2001 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_end_date, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Other 3
- Supporting & Related Material 2
- Notice 1
- Rule 1
posted_year 1
- 2001 · 7 ✖
agency_id 1
- FAA 7
| 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-2001-10910-0219 | FAA | Collision Avoidance Systems FAA-2001-10910 | U.S. DOT/FAA - Correspondence regarding Commenters Affiliation | Other | Correspondence | 2001-12-26T05:00:00Z | 2001 | 12 | 2001-12-26T05:00:00Z | 2001-12-27T04:59:59Z | 2024-11-08T05:39:52Z | 1 | 0 | 0900006480302e61 | |
| FAA-2001-10910-0004 | FAA | Collision Avoidance Systems FAA-2001-10910 | Independent Pilots Association - Petition for Rulemaking on Collision Avoidance | Other | Petition(s) | 2001-11-02T05:00:00Z | 2001 | 11 | 2001-11-02T05:00:00Z | 2001-11-03T04:59:59Z | 2024-11-08T05:39:51Z | 1 | 0 | 0900006480302f28 | |
| FAA-2001-10910-0003 | FAA | Collision Avoidance Systems FAA-2001-10910 | U.S. DOT/FAA - Initial Regulatory Evaluation, Initial Regulatory Flexibility Determination, and Trade Impact Assessment | Supporting & Related Material | Analysis | 2001-11-02T05:00:00Z | 2001 | 11 | 2024-11-07T18:01:22Z | 0 | 0 | 0900006480302eb9 | |||
| FAA-2001-10910-0002 | FAA | Collision Avoidance Systems FAA-2001-10910 | Notice of Proposed Rulemaking | Rule | Federal Register Publication | 2001-11-01T05:00:00Z | 2001 | 11 | 2001-11-01T05:00:00Z | 2001-11-02T04:59:59Z | 2024-11-08T05:37:19Z | 1 | 0 | 0900006480302e4b | |
| FAA-2001-10910-0001 | FAA | Collision Avoidance Systems FAA-2001-10910 | U.S. DOT/FAA - Notice of Proposed Rulemaking (Original) | Notice | Notice of Proposed Rulemaking (NPRM) | 2001-10-31T05:00:00Z | 2001 | 10 | 2001-10-31T05:00:00Z | 2001-11-01T04:59:59Z | 2024-11-08T05:34:56Z | 1 | 0 | 0900006480302ddf | |
| FAA-2001-10910-0007 | FAA | Collision Avoidance Systems FAA-2001-10910 | National Transportation Safety Board (NTSB) - Supplement - Safety Recommendation | Supporting & Related Material | Supplement | 2001-09-09T04:00:00Z | 2001 | 9 | 2024-11-08T05:39:29Z | 0 | 0 | 0900006480302fa0 | |||
| FAA-2001-10910-0006 | FAA | Collision Avoidance Systems FAA-2001-10910 | U.S. DOT/ FAA - Report - Assesment of Midair Collision Risk and Safety Belt Benefits of TCAS II for Cargo Aircraft | Other | Report | 2001-06-01T04:00:00Z | 2001 | 6 | 2001-06-01T04:00:00Z | 2001-11-03T04:59:59Z | 2024-11-08T05:39:08Z | 1 | 0 | 0900006480302f95 |
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;