documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2007-29305" and document_type = "Rule" 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-2007-29305-0299 | FAA | None FAA-2007-29305 | Automatic Dependent Surveillance-Broadcast Out Performance Requirements to Support Air Traffic Control Service; Technical Amendment; Corrections | Rule | Correction | 2015-03-04T05:00:00Z | 2015 | 3 | 2015-03-04T05:00:00Z | 2024-11-07T23:16:53Z | 2015-04476 | 1 | 0 | 0900006481a2a449 | |
| FAA-2007-29305-0298 | FAA | None FAA-2007-29305 | Automatic Dependent Surveillance-Broadcast Out Performance Requirements to Support Air Traffic Control Service; Amendments | Rule | Final Rule | 2015-02-09T05:00:00Z | 2015 | 2 | 2015-02-09T05:00:00Z | 2015-02-09T14:47:38Z | 2015-02579 | 0 | 0 | 09000064819fab02 | |
| FAA-2007-29305-0294 | FAA | None FAA-2007-29305 | Automatic Dependent Surveillance-Broadcast (ADS-B) Out Performance Requirements to Support Air Traffic Control (ATC) Service | Rule | Federal Register Publication | 2010-08-11T04:00:00Z | 2010 | 8 | 2010-08-11T04:00:00Z | 2015-03-28T23:39:15Z | 2010-19809 | 0 | 0 | 0900006480b2dfde | |
| FAA-2007-29305-0290 | FAA | None FAA-2007-29305 | Automatic Dependent Surveillance: Broadcast (ADS-B) Out Performance Requirements To Support Air Traffic Control (ATC) Service; Correction | Rule | Federal Register Publication | 2010-06-30T04:00:00Z | 2010 | 6 | 2010-06-30T04:00:00Z | 2024-11-07T22:16:48Z | 2010-15852 | 1 | 0 | 0900006480b0e9bd | |
| FAA-2007-29305-0291 | FAA | None FAA-2007-29305 | Automatic Dependent Surveillance: Broadcast (ADS-B) Out Performance Requirements To Support Air Traffic Control (ATC) Service; Technical Amendment | Rule | Federal Register Publication | 2010-06-30T04:00:00Z | 2010 | 6 | 2010-06-30T04:00:00Z | 2024-11-07T22:16:54Z | 2010-15853 | 1 | 0 | 0900006480b0e9fc | |
| FAA-2007-29305-0289 | FAA | None FAA-2007-29305 | Automatic Dependent Surveillance-Broadcast (ADS-B) Out Performance Requirements to Support Air Traffic Control (ATC) Service | Rule | Federal Register Publication | 2010-05-28T04:00:00Z | 2010 | 5 | 2010-05-28T04:00:00Z | 2024-11-07T22:15:52Z | 2010-12645 | 1 | 0 | 0900006480af5d4b | |
| 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-0045 | FAA | None FAA-2007-29305 | Revised Initial Regulatory Flexibility Analysis | Rule | Federal Register Publication | 2007-12-21T05:00:00Z | 2007 | 12 | 2007-12-21T05:00:00Z | 2008-03-04T04:59:59Z | 2011-06-11T16:14:23Z | E7-24713 | 0 | 0 | 090000648037d5c1 |
| FAA-2007-29305-0026 | FAA | None FAA-2007-29305 | Automatic Dependent Surveillance--Broadcast (ADS-B) Out Performance Requirements to Support Air Traffic Control (ATC) Service; Extension of Comment Period | Rule | Federal Register Publication | 2007-11-19T05:00:00Z | 2007 | 11 | 2007-11-19T05:00:00Z | 2008-03-04T04:59:59Z | 2024-11-07T01:38:53Z | E7-22544 | 1 | 0 | 0900006480365bcd |
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;