documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2002-13169" and posted_year = 2003 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_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-2002-13169-0019 | FAA | In the Matter of Barbara Armbrister-Boynton - Complaint - CP02GL0082 FAA-2002-13169 | U.S. DOT/OST - Order Terminating Proceeding - CP02GL0082 | Other | Order | 2003-06-05T04:00:00Z | 2003 | 6 | 2003-06-05T04:00:00Z | 2003-06-21T03:59:59Z | 2024-11-12T02:29:27Z | 1 | 0 | 0900006480308a8c | |
| FAA-2002-13169-0018 | FAA | In the Matter of Barbara Armbrister-Boynton - Complaint - CP02GL0082 FAA-2002-13169 | U.S. DOT/OST/M-20 - Order Postponing Hearing - CP02GL0082 | Other | Order | 2003-06-03T04:00:00Z | 2003 | 6 | 2003-06-03T04:00:00Z | 2003-06-06T03:59:59Z | 2024-11-12T02:29:27Z | 1 | 0 | 0900006480308a8b | |
| FAA-2002-13169-0020 | FAA | In the Matter of Barbara Armbrister-Boynton - Complaint - CP02GL0082 FAA-2002-13169 | U.S. DOT/FAA - Certificate of Service - CP02GL0082 | Other | Certificate of Service | 2003-06-03T04:00:00Z | 2003 | 6 | 2003-06-03T04:00:00Z | 2003-08-02T03:59:59Z | 2024-11-12T02:29:28Z | 1 | 0 | 0900006480308a8e | |
| FAA-2002-13169-0015 | FAA | In the Matter of Barbara Armbrister-Boynton - Complaint - CP02GL0082 FAA-2002-13169 | U.S. DOT/OST - Notice of Hearing - CP02GL0082 | Notice | Notice | 2003-03-05T05:00:00Z | 2003 | 3 | 2003-03-05T05:00:00Z | 2003-04-08T03:59:59Z | 2024-11-12T02:29:27Z | 1 | 0 | 0900006480308a8a | |
| FAA-2002-13169-0011 | FAA | In the Matter of Barbara Armbrister-Boynton - Complaint - CP02GL0082 FAA-2002-13169 | U.S.DOT/OST - Order Continuing Hearing - CP02GL0082 | Other | Order | 2003-01-16T05:00:00Z | 2003 | 1 | 2003-01-16T05:00:00Z | 2003-02-04T04:59:59Z | 2024-11-12T02:29:02Z | 1 | 0 | 0900006480308a82 | |
| FAA-2002-13169-0013-0001 | FAA | In the Matter of Barbara Armbrister-Boynton - Complaint - CP02GL0082 FAA-2002-13169 | Barbara Armbrister-Boyton - Notice of Appearance - CP02GL0082 | Notice | Notice | 2003-01-10T05:00:00Z | 2003 | 1 | 2003-01-10T05:00:00Z | 2003-02-07T04:59:59Z | 2024-11-12T02:29:26Z | 1 | 0 | 0900006480308a86 | |
| FAA-2002-13169-0013-0002 | FAA | In the Matter of Barbara Armbrister-Boynton - Complaint - CP02GL0082 FAA-2002-13169 | Barbara Armbrister-Boyton - Notice of Appearance - CP02GL0082 | Notice | Notice | 2003-01-10T05:00:00Z | 2003 | 1 | 2003-01-10T05:00:00Z | 2003-02-07T04:59:59Z | 2024-11-12T02:29:27Z | 1 | 0 | 0900006480308a87 | |
| FAA-2002-13169-0010 | FAA | In the Matter of Barbara Armbrister-Boynton - Complaint - CP02GL0082 FAA-2002-13169 | U.S.DOT/OST - Notice of Hearing - CP02GL0082 | Notice | Notice | 2003-01-08T05:00:00Z | 2003 | 1 | 2003-01-08T05:00:00Z | 2003-02-04T04:59:59Z | 2024-11-12T02:29:02Z | 1 | 0 | 0900006480308a80 | |
| FAA-2002-13169-0009 | FAA | In the Matter of Barbara Armbrister-Boynton - Complaint - CP02GL0082 FAA-2002-13169 | U.S. DOT/OST - Order Postponing Hearing | Other | Order | 2003-01-07T05:00:00Z | 2003 | 1 | 2003-01-07T05:00:00Z | 2003-02-04T04:59:59Z | 2024-11-12T02:29:48Z | 1 | 0 | 0900006480308a97 |
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;