documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FAA-2007-0016" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, posted_date (date), comment_start_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-2007-0016-0010 | FAA | None FAA-2007-0016 | U.S.DOT/FAA - Motion To Terminate Proceedings - CP07SO0016 | Other | Motion | 2008-08-28T04:00:00Z | 2008 | 8 | 2008-08-28T04:00:00Z | 2024-11-12T04:18:20Z | 1 | 0 | 09000064806de834 | ||
| FAA-2007-0016-0009 | FAA | None FAA-2007-0016 | U.S. DOT/OST - Administrative Law Judge's Order Terminating Proceeding with Prejudice - CP07SO0016 | Other | Order | 2008-08-14T04:00:00Z | 2008 | 8 | 2008-08-14T04:00:00Z | 2013-07-28T01:55:25Z | 0 | 0 | 09000064806c42ad | ||
| FAA-2007-0016-0008 | FAA | None FAA-2007-0016 | U.S. DOT/OST - Administrative Law Judge's Order Setting New Date For Hearing - CP07SO0016 | Other | Order | 2008-05-20T04:00:00Z | 2008 | 5 | 2008-05-20T04:00:00Z | 2013-07-27T22:14:29Z | 0 | 0 | 09000064805f300b | ||
| FAA-2007-0016-0007 | FAA | None FAA-2007-0016 | U.S. DOT/OST - Notice of Hearing - CP07SO0016 | Other | Adjudication Notice | 2008-04-29T04:00:00Z | 2008 | 4 | 2008-04-29T04:00:00Z | 2013-07-27T21:31:34Z | 0 | 0 | 09000064805383b3 | ||
| FAA-2007-0016-0006 | FAA | None FAA-2007-0016 | U.S. DOT/FAA - Agency's First Supplemental Answers to Respondent's Interrogatories and Request for Production of Documents - CP07SO0016 | Other | Answer | 2008-02-25T05:00:00Z | 2008 | 2 | 2008-02-25T05:00:00Z | 2013-08-11T02:30:19Z | 0 | 0 | 09000064803c3e14 | ||
| FAA-2007-0016-0005 | FAA | None FAA-2007-0016 | U.S. DOT/FAA - Agency's Compliance with Prehearing Order - CP07SO0016 | Other | Other | 2008-02-15T05:00:00Z | 2008 | 2 | 2008-02-15T05:00:00Z | 2013-08-11T02:29:53Z | 0 | 0 | 09000064803b088b | ||
| FAA-2007-0016-0004 | FAA | None FAA-2007-0016 | U.S. DOT/OST - Administrative Law Judge's Prehearing Order Establishing Procedures - CP07SO0016 | Other | Order | 2008-01-18T05:00:00Z | 2008 | 1 | 2008-01-18T05:00:00Z | 2024-11-07T01:41:01Z | 1 | 0 | 090000648039d092 | ||
| FAA-2007-0016-0003 | FAA | None FAA-2007-0016 | U.S. DOT/OST - Notice of Assignment of Proceeding - CP07SO0016 | Notice | Notice | 2008-01-02T05:00:00Z | 2008 | 1 | 2008-01-02T05:00:00Z | 2024-11-07T23:54:25Z | 1 | 0 | 090000648037fda4 | ||
| FAA-2007-0016-0002 | FAA | None FAA-2007-0016 | U.S. DOT/FAA - Respondent's Answer to Complaint - CP07SO0016 | Other | Answer | 2007-12-10T05:00:00Z | 2007 | 12 | 2007-12-10T05:00:00Z | 2024-11-11T21:35:36Z | 1 | 0 | 0900006480375e19 | ||
| FAA-2007-0016-0001 | FAA | None FAA-2007-0016 | U.S. DOT/FAA - Request for Hearing and Complaint - CP07500016 | Other | Request for Hearing and Complaint | 2007-11-27T05:00:00Z | 2007 | 11 | 2007-11-27T05:00:00Z | 2024-11-07T23:55:37Z | 1 | 0 | 0900006480368c8b |
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;