documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FAA-2006-25877" 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-25877-0118 | FAA | None FAA-2006-25877 | Inclusion of Reference to Manual Requirements | Rule | Federal Register Publication | 2010-08-12T04:00:00Z | 2010 | 8 | 2010-08-12T04:00:00Z | 2011-06-11T16:11:37Z | 2010-19912 | 0 | 0 | 0900006480b2ef52 | |
| FAA-2006-25877-0117 | FAA | None FAA-2006-25877 | Production and Airworthiness Approvals, Part Marking, and Miscellaneous Amendments: Correction | Rule | Federal Register Publication | 2010-03-01T05:00:00Z | 2010 | 3 | 2010-03-01T05:00:00Z | 2024-11-07T22:15:58Z | 2010-04161 | 1 | 0 | 0900006480ab0ca1 | |
| FAA-2006-25877-0114 | FAA | None FAA-2006-25877 | Production and Airworthiness Approvals, Part Marking, and Miscellaneous Amendments | Rule | Federal Register Publication | 2009-10-16T04:00:00Z | 2009 | 10 | 2009-10-16T04:00:00Z | 2009-10-17T03:59:59Z | 2011-06-11T16:11:37Z | E9-24821 | 0 | 0 | 0900006480a43471 |
| FAA-2006-25877-0111 | FAA | None FAA-2006-25877 | Production and Airworthiness Approvals, Part Marking, and Miscellaneous Proposals | Rule | Federal Register Publication | 2007-11-13T05:00:00Z | 2007 | 11 | 2007-11-13T05:00:00Z | 2024-11-07T21:47:19Z | E7-22111 | 1 | 0 | 0900006480362eaf | |
| FAA-2006-25877-0093 | FAA | None FAA-2006-25877 | U.S. DOT/FAA - Notice of Availability and Request for Comments | Rule | Federal Register Publication | 2007-02-14T05:00:00Z | 2007 | 2 | 2007-02-14T05:00:00Z | 2007-02-15T04:59:59Z | 2024-11-07T02:08:44Z | 1 | 0 | 09000064802aaadf | |
| FAA-2006-25877-0025 | FAA | None FAA-2006-25877 | U.S. DOT/FAA - Notice of Proposed Rulemaking (NPRM); Extension of Comment Period | Rule | Federal Register Publication | 2006-12-20T05:00:00Z | 2006 | 12 | 2006-12-20T05:00:00Z | 2006-12-21T04:59:59Z | 2024-11-07T02:06:06Z | 1 | 0 | 09000064802aaa90 | |
| FAA-2006-25877-0002 | FAA | None FAA-2006-25877 | U.S. DOT/FAA - Notice of Proposed Rulemaking (NPRM) | Rule | Federal Register Publication | 2006-10-05T04:00:00Z | 2006 | 10 | 2006-10-05T04:00:00Z | 2006-10-06T03:59:59Z | 2024-11-07T02:06:06Z | 1 | 0 | 09000064802aaa89 |
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;