home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

11 rows where agency_id = "USCG", document_type = "Other" and posted_year = 2001 sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: docket_id, 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)

posted_year 1

  • 2001 · 11 ✖

document_type 1

  • Other · 11 ✖

agency_id 1

  • USCG · 11 ✖
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-10048-0010 USCG Vessel Documentation: "Sold Foreign" USCG-2001-10048 American President Lines, Ltd. Other   2001-12-13T05:00:00Z 2001 12 2001-12-13T05:00:00Z 2001-12-14T04:59:59Z 2017-03-10T22:28:04Z   0 0 0900006480300d83
USCG-2001-9046-0043 USCG Tank Level or Pressure Monitoring Devices USCG-2001-9046 Jacki B. Ritchie Other   2001-10-16T04:00:00Z 2001 10 2001-10-16T04:00:00Z 2001-10-17T03:59:59Z 2017-03-10T22:27:56Z   0 0 09000064802ac267
USCG-2001-8737-0026 USCG Potential Approaches to Setting Ballast Water Treatment Standards USCG-2001-8737 U.S. DOT/RSPA - Exemption Control Sheet Other   2001-10-02T04:00:00Z 2001 10 2001-10-02T04:00:00Z 2001-12-18T04:59:59Z 2017-03-10T22:28:12Z   0 0 0900006480383864
USCG-2001-9970-0002 USCG Great Lakes Pilotage Advisory Committee; Vacancy USCG-2001-9970 In the Matter of Hickman Transport Co., Inc. - Order Dismissing Proceeding and Closing Docket Other   2001-09-04T04:00:00Z 2001 9 2001-09-04T04:00:00Z 2001-09-05T03:59:59Z 2017-03-10T22:28:10Z   0 0 09000064803459d4
USCG-2001-8737-0010 USCG Potential Approaches to Setting Ballast Water Treatment Standards USCG-2001-8737 Wisconsin Department of Natural Resources Other   2001-06-29T04:00:00Z 2001 6 2001-06-29T04:00:00Z 2001-06-30T03:59:59Z 2017-03-10T22:28:10Z   0 0 0900006480345d05
USCG-2001-9188-0003 USCG Proposed Decommissioning and/or Excessing of the Remaining 180-Foot Seagoing Buoy Tender Class, and the Proposed Excessing of the Vessel, FIR (WLM 212) USCG-2001-9188 Maryland Department of Planning Other   2001-05-18T04:00:00Z 2001 5 2001-05-18T04:00:00Z 2001-05-19T03:59:59Z 2017-03-10T22:28:10Z   0 0 0900006480341e8f
USCG-2000-7080-0019 USCG Cargo Securing on Vessels Operating in U.S. Waters USCG-2000-7080 APL LTD and Eagle Marine Service - Request for a Delay of the Implementation of the Proposed Rule Other   2001-03-06T05:00:00Z 2001 3 2001-03-06T05:00:00Z 2001-03-07T04:59:59Z 2017-03-10T22:28:10Z   0 0 0900006480338199
USCG-2000-6931-0018 USCG Fire Suppression Systems and Voyage Planning for Towing Vessels USCG-2000-6931 Casualty Data Reports (DOC. 2 of 3) Cases 33-65 Other   2001-02-02T05:00:00Z 2001 2 2001-02-02T05:00:00Z 2001-02-03T04:59:59Z 2017-03-10T22:28:09Z   0 0 0900006480336378
USCG-2000-6931-0017 USCG Fire Suppression Systems and Voyage Planning for Towing Vessels USCG-2000-6931 Casualty Data Reports - (Doc. 1 of 3) - Cases 1-32 Other   2001-02-02T05:00:00Z 2001 2 2001-02-02T05:00:00Z 2001-02-03T04:59:59Z 2017-03-10T22:28:09Z   0 0 0900006480336373
USCG-2000-6931-0019 USCG Fire Suppression Systems and Voyage Planning for Towing Vessels USCG-2000-6931 Casualty Data Reports (Doc. 3 of 3) Cases 66-105 Other   2001-02-02T05:00:00Z 2001 2 2001-02-02T05:00:00Z 2001-02-03T04:59:59Z 2017-03-10T22:28:09Z   0 0 090000648033637e
USCG-1998-3423-0101 USCG National Invasive Species Act of 1996 USCG-1998-3423 Request of Hi Tech Marine International Pty. Ltd. for Approval of an Alternative Ballast Water Management Method Other   2001-01-24T05:00:00Z 2001 1 2001-01-24T05:00:00Z 2001-01-26T04:59:59Z 2017-03-10T22:28:06Z   0 0 0900006480320070

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 3918.692ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API