documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "RITA-BTS-1999-5889" and posted_year = 2000 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| RITA-BTS-1999-5889-0041 | RITA | Petitions for Exemption from Public Release RITA-BTS-1999-5889 | U.S. DOT/BTS - Notice | Rule | Federal Register Publication | 2000-09-07T04:00:00Z | 2000 | 9 | 2000-09-07T04:00:00Z | 2000-09-08T03:59:59Z | 2024-11-12T03:24:27Z | 1 | 0 | 090000648032ea8f | |
| RITA-BTS-1999-5889-0040 | RITA | Petitions for Exemption from Public Release RITA-BTS-1999-5889 | Schneider Transport, Inc., Schneider Tank Lines, Inc. Schneider National Carriers, Inc., Schneider National Bulk Carriers, Inc., Schneider Specilized Carriers, Inc. - Supplemental Request for Reconsideration | Other | Appeal | 2000-09-01T04:00:00Z | 2000 | 9 | 2000-09-01T04:00:00Z | 2000-09-02T03:59:59Z | 2024-11-12T03:24:27Z | 1 | 0 | 090000648032ea8d | |
| RITA-BTS-1999-5889-0039 | RITA | Petitions for Exemption from Public Release RITA-BTS-1999-5889 | Drug Transport, Inc. - Request for Reconsideration and Reply to Request for More Information | Other | Request | 2000-08-28T04:00:00Z | 2000 | 8 | 2000-08-28T04:00:00Z | 2000-08-29T03:59:59Z | 2024-11-12T03:24:27Z | 1 | 0 | 090000648032ea8b | |
| RITA-BTS-1999-5889-0038 | RITA | Petitions for Exemption from Public Release RITA-BTS-1999-5889 | Clarksville Refrigerated Lines, Inc. - Additional Information | Other | Additional Information | 2000-08-28T04:00:00Z | 2000 | 8 | 2000-08-28T04:00:00Z | 2000-08-29T03:59:59Z | 2024-11-12T03:24:27Z | 1 | 0 | 090000648032ea8a | |
| RITA-BTS-1999-5889-0037 | RITA | Petitions for Exemption from Public Release RITA-BTS-1999-5889 | U.S. DOT/BTS - Notice | Notice | Notice | 2000-03-08T05:00:00Z | 2000 | 3 | 2000-03-08T05:00:00Z | 2000-03-09T04:59:59Z | 2024-11-12T03:24:26Z | 1 | 0 | 090000648032ea88 | |
| RITA-BTS-1999-5889-0036 | RITA | Petitions for Exemption from Public Release RITA-BTS-1999-5889 | Decision on Request for Exemption from Public Release of Report Forms M and QFR | Other | Initial Decision | 2000-03-03T05:00:00Z | 2000 | 3 | 2000-03-03T05:00:00Z | 2000-03-04T04:59:59Z | 2024-11-12T03:24:03Z | 1 | 0 | 090000648032ea87 |
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;