documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "NOAA-NMFS-2011-0019" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NOAA-NMFS-2011-0019-0005 | NOAA | Inseason Actions 2011 NOAA-NMFS-2011-0019 | Gulf of Mexico Reef Fishery: Closure of Commercial Sector for Greater Amberjack | Rule | 2011-10-18T04:00:00Z | 2011 | 10 | 2011-10-18T04:00:00Z | 2011-12-01T21:43:34Z | 2011-26923 | 0 | 0 | 0900006480f54e8c | ||
| NOAA-NMFS-2011-0019-0004 | NOAA | Inseason Actions 2011 NOAA-NMFS-2011-0019 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Coastal Migratory Pelagic Resources of the Gulf of Mexico and South Atlantic; Closure | Rule | 2011-10-07T04:00:00Z | 2011 | 10 | 2011-10-07T04:00:00Z | 2011-12-01T21:43:34Z | 2011-26015 | 0 | 0 | 0900006480f4e649 | ||
| NOAA-NMFS-2011-0019-0002 | NOAA | Inseason Actions 2011 NOAA-NMFS-2011-0019 | Fisheries of Caribbean, Gulf of Mexico, and South Atlantic: Coastal Migratory Pelagic Resources of Gulf of Mexico and South Atlantic; Closure | Rule | 2011-09-14T04:00:00Z | 2011 | 9 | 2011-09-14T04:00:00Z | 2012-03-24T19:32:52Z | 2011-23507 | 0 | 0 | 0900006480f19698 | ||
| NOAA-NMFS-2011-0019-0003 | NOAA | Inseason Actions 2011 NOAA-NMFS-2011-0019 | Fisheries of Caribbean, Gulf of Mexico, and South Atlantic: Gulf of Mexico Reef Fish Fishery; 2011 Commercial Quota and 2011 Commercial Fishing Season for Greater Amberjack | Rule | 2011-08-19T04:00:00Z | 2011 | 8 | 2011-08-19T04:00:00Z | 2011-12-01T21:43:29Z | 2011-21251 | 0 | 0 | 0900006480ee56cc | ||
| NOAA-NMFS-2011-0019-0001 | NOAA | Inseason Actions 2011 NOAA-NMFS-2011-0019 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Coastal Migratory Pelagic Resources of the Gulf of Mexico and South Atlantic; Closure | Rule | 2011-03-24T04:00:00Z | 2011 | 3 | 2011-03-24T04:00:00Z | 2011-12-01T21:42:19Z | 2011-06981 | 0 | 0 | 0900006480c0fd4e |
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;