documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "RITA" and document_type = "Supporting & Related Material" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| RITA-2013-0001-0004 | RITA | Nationwide Differential Global Positioning System - Notice and Request for Comments RITA-2013-0001 | Richard James Hartnett - See Attachments | Supporting & Related Material | Supplement | 2013-05-14T04:00:00Z | 2013 | 5 | 2024-11-12T05:14:49Z | 0 | 0 | 09000064812bbd1d | |||
| RITA-2007-28522-0012 | RITA | Public Comments on Reporting Requirements for Aircraft Returning to Departure Gate RITA-2007-28522 | U.S. DOT/RITA - Regulatory Evaluation | Supporting & Related Material | Assessment Document or Analysis | 2007-11-15T05:00:00Z | 2007 | 11 | 2017-03-08T16:16:11Z | 0 | 0 | 0900006480364ddb | |||
| RITA-BTS-1998-4659-0027 | RITA | Revision to Reporting Requirements for Motor Carriers of Property RITA-BTS-1998-4659 | Central Analysis Bureau, Inc. - Supplement to Comment | Supporting & Related Material | Supplement | 1999-03-05T05:00:00Z | 1999 | 3 | 2024-11-12T03:10:32Z | 0 | 0 | 0900006480327094 | |||
| RITA-BTS-1996-1979-0006 | RITA | Notice Requesting Comments - Bureau of Transportation Statistics; Negoommittee to Revise the Motor Carrier Financial and Operating Data Collection Program RITA-BTS-1996-1979 | Interstate Truckload Carriers Conference - Advisory Committee Report | Supporting & Related Material | Advisory Committee Report | 1997-01-07T05:00:00Z | 1997 | 1 | 2024-11-12T02:44:51Z | 0 | 0 | 0900006480315ce0 |
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;