documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FAA-2006-24281" 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-2006-24281-0092 | FAA | None FAA-2006-24281 | Aging Airplane Program: Widespread Fatigue Damage; Correction | Rule | Final Rule | 2012-09-07T04:00:00Z | 2012 | 9 | 2012-09-07T04:00:00Z | 2024-11-11T20:43:23Z | 2012-22090 | 1 | 0 | 090000648110b7c5 | |
| FAA-2006-24281-0091 | FAA | None FAA-2006-24281 | Aging Airplane Program: Widespread Fatigue Damage; Technical Amendment | Rule | Final Rule | 2012-05-24T04:00:00Z | 2012 | 5 | 2012-05-24T04:00:00Z | 2024-11-07T22:24:52Z | 2012-12658 | 1 | 0 | 090000648101b4b4 | |
| FAA-2006-24281-0088 | FAA | None FAA-2006-24281 | Aging Airplane Program: Widespread Fatigue Damage | Rule | Federal Register Publication | 2010-11-15T05:00:00Z | 2010 | 11 | 2010-11-15T05:00:00Z | 2024-11-12T04:55:48Z | 2010-28363 | 1 | 0 | 0900006480b88cfb | |
| FAA-2006-24281-0066 | FAA | None FAA-2006-24281 | Aviation Rulemaking Advisory Committee Meeting on Transport Airplane and Engine Issues--Aging Aircraft Program: Widespread Fatigue Damage | Rule | Federal Register Publication | 2008-11-07T05:00:00Z | 2008 | 11 | 2008-11-07T05:00:00Z | 2024-11-07T21:58:45Z | E8-26566 | 1 | 0 | 090000648079c401 | |
| FAA-2006-24281-0022 | FAA | None FAA-2006-24281 | U.S. DOT/FAA - Notice of Proposed Rulemaking (NPRM); Extension of Comment Period | Rule | Federal Register Publication | 2006-07-07T04:00:00Z | 2006 | 7 | 2006-07-07T04:00:00Z | 2006-07-08T03:59:59Z | 2024-11-07T17:23:17Z | 1 | 0 | 09000064802c6b45 | |
| FAA-2006-24281-0002 | FAA | None FAA-2006-24281 | U.S. DOT/FAA - Notice of Proposed Rulemaking (NPRM) | Rule | Federal Register Publication | 2006-04-18T04:00:00Z | 2006 | 4 | 2006-04-18T04:00:00Z | 2006-04-19T03:59:59Z | 2024-11-07T17:23:16Z | 1 | 0 | 09000064802c6b3f |
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;