documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FAA-2007-29305" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, open_for_comment, withdrawn, 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-2007-29305-0222 | FAA | None FAA-2007-29305 | Automatic Dependent Surveillance--Broadcast (ADS-B) Out Performance Requirements To Support Air Traffic Control (ATC) Service; Reopening of Comment Period | Rule | Federal Register Publication | 2008-10-02T04:00:00Z | 2008 | 10 | 2008-10-02T04:00:00Z | 2008-11-04T04:59:59Z | 2024-11-07T21:59:38Z | E8-23199 | 1 | 0 | 09000064807332d9 |
| FAA-2007-29305-0221 | FAA | None FAA-2007-29305 | ADS-B ARC Report to the FAA | Other | Report | 2008-09-26T04:00:00Z | 2008 | 9 | 2008-09-26T04:00:00Z | 2013-07-28T01:56:19Z | 0 | 0 | 0900006480728d5f | ||
| FAA-2007-29305-0220 | FAA | None FAA-2007-29305 | Air Transport Association of America, Inc. and National Business Aviation Association, Inc. - Transmittal Letter - ADS-B ARC Report to the FAA | Other | Letter(s) | 2008-09-26T04:00:00Z | 2008 | 9 | 2008-09-26T04:00:00Z | 2013-07-27T22:26:07Z | 0 | 0 | 0900006480728d40 | ||
| FAA-2007-29305-0218 | FAA | None FAA-2007-29305 | U.S. DOT/FAA - Memo for the Record | Other | Memo, Action Memo or Letter | 2008-05-09T04:00:00Z | 2008 | 5 | 2008-05-09T04:00:00Z | 2013-07-28T01:43:54Z | 0 | 0 | 0900006480553993 | ||
| FAA-2007-29305-0208 | FAA | None FAA-2007-29305 | Stephen Vastagh | Other | 2008-03-05T00:00:00Z | 2008 | 3 | 2024-11-07T21:51:05Z | 0 | 1 | 09000064803e831c | ||||
| FAA-2007-29305-0108 | FAA | None FAA-2007-29305 | Soaring Society of America - Request | Other | Request | 2008-02-27T05:00:00Z | 2008 | 2 | 2008-02-27T05:00:00Z | 2024-11-07T21:50:53Z | 1 | 0 | 09000064803cb872 | ||
| FAA-2007-29305-0056 | FAA | None FAA-2007-29305 | U.S. DOT/FAA - Response to Additional NPRM Clarification Questions Submitted to the FAA by the ADS-B ARC | Other | Response(s) | 2008-02-01T05:00:00Z | 2008 | 2 | 2008-02-01T05:00:00Z | 2024-11-08T03:47:52Z | 1 | 0 | 09000064803a67bc |
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;