documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2012-0202" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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-2012-0202-0015 | NOAA | 2013-2014 Pacific Coast Groundfish Harvest Specifications and Management Measures NOAA-NMFS-2012-0202 | Fisheries Off West Coast States: Biennial Specifications and Management Measures; Inseason Adjustments | Rule | 2014-11-20T05:00:00Z | 2014 | 11 | 2014-11-20T05:00:00Z | 2015-01-20T23:44:56Z | 2014-27489 | 0 | 0 | 090000648193a166 | ||
| NOAA-NMFS-2012-0202-0014 | NOAA | 2013-2014 Pacific Coast Groundfish Harvest Specifications and Management Measures NOAA-NMFS-2012-0202 | Fisheries off West Coast States: Biennial Specifications and Management Measures | Rule | 2014-07-25T04:00:00Z | 2014 | 7 | 2014-07-25T04:00:00Z | 2014-07-25T20:32:31Z | 2014-17579 | 0 | 0 | 09000064817e1571 | ||
| NOAA-NMFS-2012-0202-0013 | NOAA | 2013-2014 Pacific Coast Groundfish Harvest Specifications and Management Measures NOAA-NMFS-2012-0202 | Fisheries off West Coast States: Pacific Coast Groundfish Fishery; 2013-2014 Biennial Specifications and Management Measures; Correction | Rule | 2014-05-16T04:00:00Z | 2014 | 5 | 2014-05-16T04:00:00Z | 2014-07-25T19:16:42Z | 2014-11309 | 0 | 0 | 09000064816ff2f4 | ||
| NOAA-NMFS-2012-0202-0012 | NOAA | 2013-2014 Pacific Coast Groundfish Harvest Specifications and Management Measures NOAA-NMFS-2012-0202 | Fisheries off West Coast States: Biennial Specifications and Management Measures; Inseason Adjustments | Rule | 2014-04-09T04:00:00Z | 2014 | 4 | 2014-04-09T04:00:00Z | 2014-07-25T18:38:55Z | 2014-07982 | 0 | 0 | 09000064816ab419 | ||
| NOAA-NMFS-2012-0202-0011 | NOAA | 2013-2014 Pacific Coast Groundfish Harvest Specifications and Management Measures NOAA-NMFS-2012-0202 | Fisheries off West Coast States: Biennial Specifications and Management Measures; Inseason Adjustments | Rule | 2013-12-03T05:00:00Z | 2013 | 12 | 2013-12-03T05:00:00Z | 2014-02-18T21:00:11Z | 2013-29021 | 0 | 0 | 09000064814a3d0f | ||
| NOAA-NMFS-2012-0202-0010 | NOAA | 2013-2014 Pacific Coast Groundfish Harvest Specifications and Management Measures NOAA-NMFS-2012-0202 | Fisheries off West Coast States: Biennial Specifications and Management Measures; Inseason Adjustments | Rule | 2013-08-13T04:00:00Z | 2013 | 8 | 2013-08-13T04:00:00Z | 2013-09-04T21:22:55Z | 2013-19602 | 0 | 0 | 09000064813af071 | ||
| NOAA-NMFS-2012-0202-0009 | NOAA | 2013-2014 Pacific Coast Groundfish Harvest Specifications and Management Measures NOAA-NMFS-2012-0202 | Fisheries off West Coast States: Biennial Specifications and Management Measures; Inseason Adjustments | Rule | 2013-05-06T04:00:00Z | 2013 | 5 | 2013-05-06T04:00:00Z | 2013-05-07T22:11:27Z | 2013-10698 | 0 | 0 | 09000064812babb4 | ||
| NOAA-NMFS-2012-0202-0008 | NOAA | 2013-2014 Pacific Coast Groundfish Harvest Specifications and Management Measures NOAA-NMFS-2012-0202 | Fisheries Off West Coast States; Pacific Coast Groundfish Fishery: 2013-2014 Biennial Specifications and Management Measures | Rule | 2013-01-03T05:00:00Z | 2013 | 1 | 2013-01-03T05:00:00Z | 2013-01-03T23:07:22Z | 2012-31134 | 0 | 0 | 09000064811a3b59 | ||
| NOAA-NMFS-2012-0202-0001 | NOAA | 2013-2014 Pacific Coast Groundfish Harvest Specifications and Management Measures NOAA-NMFS-2012-0202 | Magnuson-Stevens Act Provisions: Fisheries Off West Coast States; Pacific Coast Groundfish Fishery; 2013-2014 Biennial Specifications and Management Measures | Proposed Rule | 2012-11-14T05:00:00Z | 2012 | 11 | 2012-11-14T05:00:00Z | 2012-12-06T04:59:59Z | 2012-12-06T03:02:20Z | 2012-27338 | 0 | 0 | 090000648116748f |
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;