documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "USCG", document_type = "Other" and posted_year = 2002 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| USCG-2001-10163-0192 | USCG | Federal Requirements for Propeller Injury Advoidance Measures USCG-2001-10163 | U.S. Coast Guard Response to Letter Dated October 11, 2002 | Other | 2002-10-28T05:00:00Z | 2002 | 10 | 2002-10-28T05:00:00Z | 2002-10-29T04:59:59Z | 2017-03-10T22:27:56Z | 0 | 0 | 09000064802be17b | ||
| USCG-2002-11544-0086 | USCG | Safety Zones, Security Zones and Special Local Regulations USCG-2002-11544 | CGD01-01-141 - Security Zone: Naval Force Protection, USS BARRY Port Visit, Bar Harbor, Maine | Other | 2002-09-05T04:00:00Z | 2002 | 9 | 2002-09-05T04:00:00Z | 2002-09-06T03:59:59Z | 2017-03-10T22:28:05Z | 0 | 0 | 09000064803047fa | ||
| USCG-2000-7466-0007 | USCG | Allowing Alternative Source to Incandescent Light in Private Aids to Navigation USCG-2000-7466 | International Association of Drilling Contractors | Other | 2002-08-16T04:00:00Z | 2002 | 8 | 2002-08-16T04:00:00Z | 2002-08-17T03:59:59Z | 2017-03-10T22:28:10Z | 0 | 0 | 090000648033d12d | ||
| USCG-2002-12581-0001 | USCG | Petition for Rulemaking USCG-2002-12581 | Petition for Rulemaking | Other | 2002-08-07T04:00:00Z | 2002 | 8 | 2002-08-07T04:00:00Z | 2002-08-08T03:59:59Z | 2017-03-10T22:27:56Z | 0 | 0 | 09000064802ad977 | ||
| USCG-2001-10163-0185 | USCG | Federal Requirements for Propeller Injury Advoidance Measures USCG-2001-10163 | David Fiedler | Other | 2002-05-15T04:00:00Z | 2002 | 5 | 2002-05-15T04:00:00Z | 2002-05-16T03:59:59Z | 2017-03-10T22:27:56Z | 0 | 0 | 09000064802be172 | ||
| USCG-2001-11137-0059 | USCG | Maritime Security USCG-2001-11137 | AAPA | Other | 2002-04-09T04:00:00Z | 2002 | 4 | 2002-04-09T04:00:00Z | 2002-04-10T03:59:59Z | 2017-03-10T22:28:05Z | 0 | 0 | 09000064803039e5 | ||
| USCG-2001-10016-0001 | USCG | Petition for Rulemaking; Establishment of Federal Pilotage Requirement in U.S. Virgin Islands USCG-2001-10016 | Petition for Rulemaking Dated June 12, 2001 | Other | 2002-01-29T05:00:00Z | 2002 | 1 | 2002-01-29T05:00:00Z | 2002-03-05T04:59:59Z | 2017-03-10T22:28:04Z | 0 | 0 | 0900006480300bb8 | ||
| USCG-2001-8825-0074 | USCG | Vessel Documentation: Lease Financing for Vessels Engaged In the Coastwise Trade USCG-2001-8825 | Northland Holdings, Inc. | Other | 2002-01-28T05:00:00Z | 2002 | 1 | 2002-01-28T05:00:00Z | 2002-01-30T04:59:59Z | 2017-03-10T22:28:10Z | 0 | 0 | 090000648034614b |
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;