documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2012-0707" and document_type = "Other" 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-2012-0707-0012 | FAA | None FAA-2012-0707 | U.S. DOT/FAA - Decision | Other | Decision | 2014-08-25T04:00:00Z | 2014 | 8 | 2014-08-25T04:00:00Z | 2014-08-25T20:48:36Z | 0 | 0 | 090000648183d3f0 | ||
| FAA-2012-0707-0009 | FAA | None FAA-2012-0707 | U.S. DOT/FAA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2014-03-05T05:00:00Z | 2014 | 3 | 2014-03-05T05:00:00Z | 2024-11-07T23:04:45Z | 1 | 0 | 09000064815f9f8c | ||
| FAA-2012-0707-0008 | FAA | None FAA-2012-0707 | L-3 Communications Integrated Systems - Exemption/Rulemaking | Other | Petition(s) | 2014-03-04T05:00:00Z | 2014 | 3 | 2014-03-04T05:00:00Z | 2024-11-12T05:25:28Z | 1 | 0 | 09000064815f6615 | ||
| FAA-2012-0707-0007 | FAA | None FAA-2012-0707 | U.S. DOT/FAA - Partial Grant of Exemption | Other | Decision | 2013-01-18T05:00:00Z | 2013 | 1 | 2024-11-12T05:12:50Z | 1 | 0 | 09000064811c8ceb | |||
| FAA-2012-0707-0006 | FAA | None FAA-2012-0707 | L-3 Communications - Additional Information | Other | Additional Information | 2012-11-08T05:00:00Z | 2012 | 11 | 2012-11-08T05:00:00Z | 2024-11-11T20:43:25Z | 1 | 0 | 0900006481161c28 | ||
| FAA-2012-0707-0005 | FAA | None FAA-2012-0707 | U.S. DOT/FAA - Request for Additional Information | Other | Request | 2012-10-22T04:00:00Z | 2012 | 10 | 2012-10-22T04:00:00Z | 2024-11-12T05:08:22Z | 1 | 0 | 0900006481148f26 | ||
| FAA-2012-0707-0003 | FAA | None FAA-2012-0707 | L-3 Communications - Additional Information | Other | Additional Information | 2012-08-22T04:00:00Z | 2012 | 8 | 2012-08-22T04:00:00Z | 2012-08-22T18:06:34Z | 0 | 0 | 09000064810e58b9 | ||
| FAA-2012-0707-0002 | FAA | None FAA-2012-0707 | U.S. DOT/FAA - Request for Additional Information | Other | Request | 2012-08-17T04:00:00Z | 2012 | 8 | 2024-11-11T20:40:49Z | 1 | 0 | 09000064810ddbcc | |||
| FAA-2012-0707-0001 | FAA | None FAA-2012-0707 | L-3 Communications - Exemption/Rulemaking | Other | Petition(s) | 2012-06-29T04:00:00Z | 2012 | 6 | 2012-06-29T04:00:00Z | 2024-11-07T22:39:56Z | 1 | 0 | 090000648106e164 |
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;