documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "USCG-2013-0756" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_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-2013-0756-0006 | USCG | None USCG-2013-0756 | Maritime Labour Convention 2006 - Title 5, Compliance and Enforcement | Supporting & Related Material | 2013-09-03T04:00:00Z | 2013 | 9 | 2013-09-03T16:39:00Z | 0 | 0 | 09000064813ce002 | ||||
| USCG-2013-0756-0008 | USCG | None USCG-2013-0756 | Assessment Guidelines for STCW Code Table A-III/2 | Supporting & Related Material | 2013-09-03T04:00:00Z | 2013 | 9 | 2013-09-03T16:49:08Z | 0 | 0 | 09000064813ce071 | ||||
| USCG-2013-0756-0004 | USCG | None USCG-2013-0756 | Maritime Labour Convention 2006 - Title 1 Coast Guard Regulatory Changes or Updates | Supporting & Related Material | 2013-09-03T04:00:00Z | 2013 | 9 | 2013-09-03T16:30:18Z | 0 | 0 | 09000064813cabb7 | ||||
| USCG-2013-0756-0007 | USCG | None USCG-2013-0756 | Maritime Labour Convention 2006, Title 3, Inspection & Certification | Supporting & Related Material | 2013-09-03T04:00:00Z | 2013 | 9 | 2013-09-03T16:44:22Z | 0 | 0 | 09000064813ce044 | ||||
| USCG-2013-0756-0009 | USCG | None USCG-2013-0756 | Task Statement 83 - Grandfathering | Supporting & Related Material | 2013-09-03T04:00:00Z | 2013 | 9 | 2013-09-03T16:51:25Z | 0 | 0 | 09000064813ce0ae | ||||
| USCG-2013-0756-0005 | USCG | None USCG-2013-0756 | U.S. DHS/CG - Merchant Mariner Evaluation of Fitness for Entry Level Rating | Supporting & Related Material | 2013-09-03T04:00:00Z | 2013 | 9 | 2013-09-03T16:34:54Z | 0 | 0 | 09000064813cdefe | ||||
| USCG-2013-0756-0010 | USCG | None USCG-2013-0756 | Task Statement 83 - Proposal for MERPAC 39 | Supporting & Related Material | 2013-09-03T04:00:00Z | 2013 | 9 | 2013-09-03T16:57:26Z | 0 | 0 | 09000064813ce07e | ||||
| USCG-2013-0756-0002 | USCG | None USCG-2013-0756 | Maritime Labour Convention 2006 - Title 2 Condition so f Employment | Supporting & Related Material | 2013-09-03T04:00:00Z | 2013 | 9 | 2013-09-03T15:22:15Z | 0 | 0 | 09000064813ca9ed | ||||
| USCG-2013-0756-0003 | USCG | None USCG-2013-0756 | Maritime Labour Convention 2006 - Title 4, Health Protection, Medical Care, Welfare and Social Security | Supporting & Related Material | 2013-09-03T04:00:00Z | 2013 | 9 | 2013-09-03T16:25:57Z | 0 | 0 | 09000064813caa28 | ||||
| USCG-2013-0756-0001 | USCG | None USCG-2013-0756 | Meetings: Merchant Marine Personnel Advisory Committee (Federal Register Publication) | Notice | Meeting | 2013-08-21T04:00:00Z | 2013 | 8 | 2013-08-21T04:00:00Z | 2017-03-10T22:26:36Z | 2013-20350 | 0 | 0 | 09000064813bccf2 |
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;