documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "NOAA-NMFS-2013-0100" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: withdrawn, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NOAA-NMFS-2013-0100-0008 | NOAA | Revisions to the Code of Federal Regulations for Species Under the Jurisdiction of the National Marine Fisheries Service NOAA-NMFS-2013-0100 | Threatened and Endangered Marine and Anadromous Species; CFR Correction | Rule | 2016-03-28T04:00:00Z | 2016 | 3 | 2016-04-06T16:13:15Z | 2016-07044 | 0 | 0 | 0900006481ee2bed | |||
| NOAA-NMFS-2013-0100-0007 | NOAA | Revisions to the Code of Federal Regulations for Species Under the Jurisdiction of the National Marine Fisheries Service NOAA-NMFS-2013-0100 | Endangered and Threatened Wildlife and Plants: Species under the Jurisdiction of the National Marine Fisheries Service; Correction | Rule | 2014-12-31T05:00:00Z | 2014 | 12 | 2014-12-31T05:00:00Z | 2015-06-12T14:22:57Z | 2014-30677 | 0 | 0 | 090000648199c051 | ||
| NOAA-NMFS-2013-0100-0006 | NOAA | Revisions to the Code of Federal Regulations for Species Under the Jurisdiction of the National Marine Fisheries Service NOAA-NMFS-2013-0100 | Fisheries off West Coast States: Highly Migratory Species Fishery; Closure | Rule | 2014-07-25T00:00:00Z | 2014 | 7 | 2015-06-12T14:32:32Z | 0 | 1 | 09000064817e156e | ||||
| NOAA-NMFS-2013-0100-0005 | NOAA | Revisions to the Code of Federal Regulations for Species Under the Jurisdiction of the National Marine Fisheries Service NOAA-NMFS-2013-0100 | Endangered and Threatened Wildlife and Plants: Species Under the Jurisdiction of the National Marine Fisheries Service | Rule | 2014-04-14T04:00:00Z | 2014 | 4 | 2014-04-14T04:00:00Z | 2014-07-17T15:29:42Z | 2014-08347 | 0 | 0 | 09000064816b25e6 | ||
| NOAA-NMFS-2013-0100-0001 | NOAA | Revisions to the Code of Federal Regulations for Species Under the Jurisdiction of the National Marine Fisheries Service NOAA-NMFS-2013-0100 | Endangered and Threatened Wildlife: Species Under the Jurisdiction of the National Marine Fisheries Service | Proposed Rule | 2013-06-26T04:00:00Z | 2013 | 6 | 2013-06-26T04:00:00Z | 2013-08-27T03:59:59Z | 2013-08-17T01:01:29Z | 2013-15015 | 0 | 0 | 09000064813413bb |
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;