documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "NOAA-NMFS-2011-0206" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2011-0206-0008 | NOAA | Secretarial Amendment to the Northeast Multispecies Fishery Management Plan to establish ACLs and AMs for the Small Mesh Fishery NOAA-NMFS-2011-0206 | Fisheries of the Northeastern United States: Northeast Multispecies Fisheries Management Plan; Northern Red Hake Quota Harvested | Rule | 2012-09-20T04:00:00Z | 2012 | 9 | 2012-09-20T04:00:00Z | 2012-10-05T13:25:32Z | 2012-23254 | 0 | 0 | 090000648111feb5 | ||
| NOAA-NMFS-2011-0206-0007 | NOAA | Secretarial Amendment to the Northeast Multispecies Fishery Management Plan to establish ACLs and AMs for the Small Mesh Fishery NOAA-NMFS-2011-0206 | Fisheries of the Northeastern U.S.: Northeast Multispecies Fishery Management Plan, Secretarial Amendment | Rule | 2012-03-30T04:00:00Z | 2012 | 3 | 2012-03-30T04:00:00Z | 2012-05-03T20:03:20Z | 2012-07710 | 0 | 0 | 0900006480fe4ddd | ||
| NOAA-NMFS-2011-0206-0004 | NOAA | Secretarial Amendment to the Northeast Multispecies Fishery Management Plan to establish ACLs and AMs for the Small Mesh Fishery NOAA-NMFS-2011-0206 | Fisheries of the Northeastern United States: Northeast Multispecies Fishery Management Plan; Secretarial Amendment | Proposed Rule | 2011-12-23T05:00:00Z | 2011 | 12 | 2011-12-23T05:00:00Z | 2012-02-22T04:59:59Z | 2012-03-24T19:35:03Z | 2011-32996 | 0 | 0 | 0900006480f8888b | |
| NOAA-NMFS-2011-0206-0001 | NOAA | Secretarial Amendment to the Northeast Multispecies Fishery Management Plan to establish ACLs and AMs for the Small Mesh Fishery NOAA-NMFS-2011-0206 | Fisheries of the Northeastern United States: Northeast Multispecies Fisheries, Small-Mesh Multispecies | Proposed Rule | 2011-09-19T04:00:00Z | 2011 | 9 | 2011-09-19T04:00:00Z | 2011-10-20T03:59:59Z | 2011-12-01T21:43:32Z | 2011-24013 | 0 | 0 | 0900006480f21dbc |
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;