documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "DOT-OST-2000-7668" and posted_year = 2000 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOT-OST-2000-7668-0007 | DOT | Boston-Maine Airways Corp. - Certificate - Interstate Scheduled Service Operations DOT-OST-2000-7668 | 2000-10-1 Final Order | Other | Order | 2000-10-02T04:00:00Z | 2000 | 10 | 2000-10-02T04:00:00Z | 2000-10-03T03:59:59Z | 2024-11-11T22:07:43Z | 1 | 0 | 09000064802abd35 | |
| DOT-OST-2000-7668-0006 | DOT | Boston-Maine Airways Corp. - Certificate - Interstate Scheduled Service Operations DOT-OST-2000-7668 | Notice of Order to Show Cause (Order 2000-9-17) | Rule | Federal Register Publication | 2000-09-21T04:00:00Z | 2000 | 9 | 2000-09-21T04:00:00Z | 2000-09-22T03:59:59Z | 2024-11-11T22:07:05Z | 1 | 0 | 09000064802abd22 | |
| DOT-OST-2000-7668-0005 | DOT | Boston-Maine Airways Corp. - Certificate - Interstate Scheduled Service Operations DOT-OST-2000-7668 | 2000-9-17 Order To Show Cause Proposing Issuance of Certificate Authority | Other | Show Cause Order | 2000-09-15T04:00:00Z | 2000 | 9 | 2000-09-15T04:00:00Z | 2000-10-07T03:59:59Z | 2024-11-11T22:06:44Z | 1 | 0 | 09000064802abd16 | |
| DOT-OST-2000-7668-0004 | DOT | Boston-Maine Airways Corp. - Certificate - Interstate Scheduled Service Operations DOT-OST-2000-7668 | Boston-Maine Airways Corp. - Letter | Other | Correspondence | 2000-09-07T04:00:00Z | 2000 | 9 | 2000-09-07T04:00:00Z | 2000-09-08T03:59:59Z | 2024-11-11T22:06:22Z | 1 | 0 | 09000064802abd06 | |
| DOT-OST-2000-7668-0003 | DOT | Boston-Maine Airways Corp. - Certificate - Interstate Scheduled Service Operations DOT-OST-2000-7668 | U.S. DOT/OST - Request Additional Information | Other | Request | 2000-09-01T04:00:00Z | 2000 | 9 | 2000-09-01T04:00:00Z | 2000-09-02T03:59:59Z | 2024-11-11T22:05:37Z | 1 | 0 | 09000064802abcf7 | |
| DOT-OST-2000-7668-0002 | DOT | Boston-Maine Airways Corp. - Certificate - Interstate Scheduled Service Operations DOT-OST-2000-7668 | Boston-Maine Airways Corp. - Supplement No. 1 | Supporting & Related Material | Supplement | 2000-08-16T04:00:00Z | 2000 | 8 | 2024-11-11T22:05:14Z | 0 | 0 | 09000064802abce3 | |||
| DOT-OST-2000-7668-0001 | DOT | Boston-Maine Airways Corp. - Certificate - Interstate Scheduled Service Operations DOT-OST-2000-7668 | Boston-Maine Airways Corp. - Certificate - Interstate Scheduled Service Operations | Other | Application-SubPartB | 2000-07-31T04:00:00Z | 2000 | 7 | 2000-07-31T04:00:00Z | 2000-07-20T03:59:59Z | 2024-11-11T22:04:29Z | 1 | 0 | 09000064802abcbe |
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;