documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "RITA", document_type = "Rule" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, 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-2007-28522-0015 | RITA | Public Comments on Reporting Requirements for Aircraft Returning to Departure Gate RITA-2007-28522 | Revision of Airline Service Quality Performance Reports and Disclosure Requirements | Rule | Federal Register Publication | 2007-11-21T05:00:00Z | 2007 | 11 | 2007-11-21T05:00:00Z | 2008-01-23T04:59:59Z | 2024-11-07T01:39:03Z | 1 | 0 | 0900006480366e55 | |
| RITA-2007-27185-0002 | RITA | Paperwork Reduction Act Notice RITA-2007-27185 | U.S. DOT/RITA - Notice | Rule | Federal Register Publication | 2007-09-14T04:00:00Z | 2007 | 9 | 2007-09-14T04:00:00Z | 2007-09-15T03:59:59Z | 2024-11-08T04:07:45Z | 1 | 0 | 09000064802b28ec | |
| RITA-2007-28836-0001 | RITA | Nationwide Differential Global Positioning System Program - Request for Comments RITA-2007-28836 | U.S. DOT/RITA - Notice; Request for Public Comments | Rule | Federal Register Publication | 2007-08-01T04:00:00Z | 2007 | 8 | 2007-08-01T04:00:00Z | 2007-08-02T03:59:59Z | 2024-11-11T22:34:06Z | 1 | 0 | 09000064802bf274 | |
| RITA-2007-28522-0001 | RITA | Public Comments on Reporting Requirements for Aircraft Returning to Departure Gate RITA-2007-28522 | U.S. DOT/RITA - Notice of Public Meeting | Rule | Federal Register Publication | 2007-05-17T04:00:00Z | 2007 | 5 | 2007-05-17T04:00:00Z | 2007-06-22T03:59:59Z | 2024-11-08T04:19:14Z | 1 | 0 | 09000064802b6414 | |
| RITA-2007-27185-0001 | RITA | Paperwork Reduction Act Notice RITA-2007-27185 | U.S. DOT/RITA - Notice and Request for Comments | Rule | Federal Register Publication | 2007-02-13T05:00:00Z | 2007 | 2 | 2007-02-13T05:00:00Z | 2007-02-14T04:59:59Z | 2024-11-08T04:07:44Z | 1 | 0 | 09000064802b28eb | |
| RITA-BTS-2005-22232-0002 | RITA | National Ferry Data Base RITA-BTS-2005-22232 | U.S. DOT/RITA - Notice and Request for Comments | Rule | Federal Register Publication | 2007-02-12T05:00:00Z | 2007 | 2 | 2007-02-12T05:00:00Z | 2007-02-13T04:59:59Z | 2024-11-08T04:00:38Z | 1 | 0 | 09000064802aeac1 | |
| RITA-2006-26758-0001 | RITA | Regulatory Framework for a Hydrogen Economy - Request for Public Comments RITA-2006-26758 | U.S. DOT/RITA - Notice of Inquiry and Request for Public Comment | Rule | Federal Register Publication | 2007-01-05T05:00:00Z | 2007 | 1 | 2007-01-05T05:00:00Z | 2007-01-06T04:59:59Z | 2024-11-07T17:03:10Z | 1 | 0 | 09000064802bb551 |
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;