documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "USCG-2010-0990" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- USCG 8
| 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-2010-0990-2737 | USCG | Vessel Documentation User Fees - Annual Renewal Fee USCG-2010-0990 | Vessel Documentation Renewal Fees (Federal register Publication) | Proposed Rule | Request for Comment | 2015-03-03T05:00:00Z | 2015 | 3 | 2015-03-03T05:00:00Z | 2015-06-02T03:59:59Z | 2015-06-10T01:30:23Z | 2015-03651 | 0 | 0 | 0900006481a2763c |
| USCG-2010-0990-2735 | USCG | Vessel Documentation User Fees - Annual Renewal Fee USCG-2010-0990 | Environmental Checklist | Supporting & Related Material | 2014-08-15T04:00:00Z | 2014 | 8 | 2014-08-15T18:31:24Z | 0 | 0 | 090000648182637a | ||||
| USCG-2010-0990-2734 | USCG | Vessel Documentation User Fees - Annual Renewal Fee USCG-2010-0990 | Vessel DocumentationRenewal Fees | Rule | Final Rule | 2014-08-12T04:00:00Z | 2014 | 8 | 2014-08-12T04:00:00Z | 2017-03-10T22:22:45Z | 2014-18999 | 0 | 0 | 090000648181b8d7 | |
| USCG-2010-0990-2731 | USCG | Vessel Documentation User Fees - Annual Renewal Fee USCG-2010-0990 | USCG - Coast Guard Reimbursable Standard Rates | Supporting & Related Material | 2014-03-14T04:00:00Z | 2014 | 3 | 2014-03-14T19:56:31Z | 0 | 0 | 0900006481666550 | ||||
| USCG-2010-0990-0011 | USCG | Vessel Documentation User Fees - Annual Renewal Fee USCG-2010-0990 | Environmental Checklist (10/13/2010) | Supporting & Related Material | 2013-03-22T04:00:00Z | 2013 | 3 | 2013-03-22T18:43:05Z | 0 | 0 | 090000648123831e | ||||
| USCG-2010-0990-0002 | USCG | Vessel Documentation User Fees - Annual Renewal Fee USCG-2010-0990 | Biennial review NVDC 20110228 nprm | Supporting & Related Material | 2013-03-06T05:00:00Z | 2013 | 3 | 2013-03-06T15:25:52Z | 0 | 0 | 0900006481219565 | ||||
| USCG-2010-0990-0003 | USCG | Vessel Documentation User Fees - Annual Renewal Fee USCG-2010-0990 | NVDC user fee cost study for Renewing CODs | Supporting & Related Material | 2013-03-06T05:00:00Z | 2013 | 3 | 2013-03-06T15:30:00Z | 0 | 0 | 0900006481219557 | ||||
| USCG-2010-0990-0001 | USCG | Vessel Documentation User Fees - Annual Renewal Fee USCG-2010-0990 | NPRM: Vessel Documentation Renewal Fees (Federal Register Publication) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2013-03-04T05:00:00Z | 2013 | 3 | 2013-03-04T05:00:00Z | 2013-05-04T03:59:59Z | 2017-03-10T22:26:27Z | 2013-04866 | 0 | 0 | 09000064812168d4 |
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;