documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2010-0997" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, last_modified, 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-2010-0997-0022 | FAA | None FAA-2010-0997 | Safety Management System for Certificated Airports: Extension of Comment Period | Rule | Federal Register Publication | 2010-12-10T05:00:00Z | 2010 | 12 | 2010-12-10T05:00:00Z | 2011-03-08T04:59:59Z | 2019-05-09T14:57:57Z | 2010-31094 | 0 | 0 | 0900006480bb3912 |
| FAA-2010-0997-0020 | FAA | None FAA-2010-0997 | Clark County Department of Aviation - Request for 90-Day Extension of Comment Period | Other | Request | 2010-12-08T05:00:00Z | 2010 | 12 | 2010-12-08T05:00:00Z | 2013-08-11T04:43:08Z | 0 | 0 | 0900006480bad189 | ||
| FAA-2010-0997-0018 | FAA | None FAA-2010-0997 | American Association of Airport Executives - Request for an Extension of the Comment Period | Other | Request | 2010-11-29T05:00:00Z | 2010 | 11 | 2010-11-29T05:00:00Z | 2013-07-27T23:37:58Z | 0 | 0 | 0900006480b9cec6 | ||
| FAA-2010-0997-0019 | FAA | None FAA-2010-0997 | Airports Council International - North American - Request for an Extension of the Comment Period | Other | Request | 2010-11-29T05:00:00Z | 2010 | 11 | 2010-11-29T05:00:00Z | 2013-07-27T23:37:58Z | 0 | 0 | 0900006480b9cf2c | ||
| FAA-2010-0997-0017 | FAA | None FAA-2010-0997 | Attorney General of Oklahoma - Letter | Other | Letter(s) | 2010-11-18T05:00:00Z | 2010 | 11 | 2010-11-18T05:00:00Z | 2013-08-11T01:38:11Z | 0 | 0 | 0900006480b96345 | ||
| FAA-2010-0997-0012 | FAA | None FAA-2010-0997 | U.S. DOT/FAA - Memorandum to Docket of Electronic Message from Lambert-Saint Louis International Airport | Other | Memo, Action Memo or Letter | 2010-10-28T04:00:00Z | 2010 | 10 | 2010-10-28T04:00:00Z | 2013-07-27T23:35:46Z | 0 | 0 | 0900006480b78895 | ||
| FAA-2010-0997-0011 | FAA | None FAA-2010-0997 | U.S. DOT/FAA - Memorandum of Telephone Conversation with Pratt and Whitney | Other | Memo, Action Memo or Letter | 2010-10-28T04:00:00Z | 2010 | 10 | 2010-10-28T04:00:00Z | 2013-07-27T23:35:55Z | 0 | 0 | 0900006480b78fe3 | ||
| FAA-2010-0997-0010 | FAA | None FAA-2010-0997 | U.S. DOT/FAA - See Attachment | Other | Other | 2010-10-27T04:00:00Z | 2010 | 10 | 2010-10-27T04:00:00Z | 2013-07-27T23:35:41Z | 0 | 0 | 0900006480b78140 | ||
| FAA-2010-0997-0002 | FAA | None FAA-2010-0997 | Experimental Aircraft Association - Request for Extension of the Comment Period | Other | Request | 2010-10-13T04:00:00Z | 2010 | 10 | 2010-10-13T04:00:00Z | 2019-05-09T15:02:09Z | 0 | 0 | 0900006480b6c049 | ||
| FAA-2010-0997-0006 | FAA | None FAA-2010-0997 | U.S. DOT/FAA - Initial Regulatory Evaluation | Supporting & Related Material | Assessment Document or Analysis | 2010-10-13T04:00:00Z | 2010 | 10 | 2012-03-24T19:35:24Z | 0 | 0 | 0900006480b6ce0f | |||
| FAA-2010-0997-0001 | FAA | None FAA-2010-0997 | Safety Management System for Certificated Airports | Rule | Federal Register Publication | 2010-10-07T04:00:00Z | 2010 | 10 | 2010-10-07T04:00:00Z | 2011-01-06T04:59:59Z | 2019-05-07T13:36:56Z | 2010-25338 | 0 | 0 | 0900006480b69d69 |
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;