documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2011-0229" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- NOAA 9
| 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-0229-0016 | NOAA | Stock Status Determinations; Notice of Intent (NOI) to prepare an Environmental Impact Statement (EIS); request for comments NOAA-NMFS-2011-0229 | Atlantic Highly Migratory Species: Atlantic Shark Management Measures; Intent To Prepare Environmental Impact Statement | Proposed Rule | 2012-05-29T04:00:00Z | 2012 | 5 | 2012-05-29T04:00:00Z | 2012-06-22T03:59:59Z | 2012-06-21T02:00:52Z | 2012-12976 | 0 | 0 | 090000648101f83d | |
| NOAA-NMFS-2011-0229-0009 | NOAA | Stock Status Determinations; Notice of Intent (NOI) to prepare an Environmental Impact Statement (EIS); request for comments NOAA-NMFS-2011-0229 | Atlantic Highly Migratory Species: Atlantic Shark Management Measures; Correction | Proposed Rule | 2011-10-24T04:00:00Z | 2011 | 10 | 2011-10-24T04:00:00Z | 2011-12-01T21:43:35Z | 2011-27476 | 0 | 0 | 0900006480f5a0fc | ||
| NOAA-NMFS-2011-0229-0005 | NOAA | Stock Status Determinations; Notice of Intent (NOI) to prepare an Environmental Impact Statement (EIS); request for comments NOAA-NMFS-2011-0229 | Atlantic_Blacknose_Shark_Assessment_Summary_Report | Supporting & Related Material | 2011-10-11T04:00:00Z | 2011 | 10 | 2011-10-11T16:36:36Z | 0 | 0 | 0900006480f50415 | ||||
| NOAA-NMFS-2011-0229-0007 | NOAA | Stock Status Determinations; Notice of Intent (NOI) to prepare an Environmental Impact Statement (EIS); request for comments NOAA-NMFS-2011-0229 | Dusky_Shark_Assessment_Summary_Report | Supporting & Related Material | 2011-10-11T04:00:00Z | 2011 | 10 | 2011-10-11T16:36:37Z | 0 | 0 | 0900006480f50417 | ||||
| NOAA-NMFS-2011-0229-0004 | NOAA | Stock Status Determinations; Notice of Intent (NOI) to prepare an Environmental Impact Statement (EIS); request for comments NOAA-NMFS-2011-0229 | A5_Issues_and_Options_presentation | Supporting & Related Material | 2011-10-11T04:00:00Z | 2011 | 10 | 2011-10-11T16:36:36Z | 0 | 0 | 0900006480f50414 | ||||
| NOAA-NMFS-2011-0229-0008 | NOAA | Stock Status Determinations; Notice of Intent (NOI) to prepare an Environmental Impact Statement (EIS); request for comments NOAA-NMFS-2011-0229 | Sandbar_Shark_Assessment_Summary_Report | Supporting & Related Material | 2011-10-11T04:00:00Z | 2011 | 10 | 2011-10-11T16:36:38Z | 0 | 0 | 0900006480f50456 | ||||
| NOAA-NMFS-2011-0229-0006 | NOAA | Stock Status Determinations; Notice of Intent (NOI) to prepare an Environmental Impact Statement (EIS); request for comments NOAA-NMFS-2011-0229 | Gulf_of_Mexico_Blacknose_Shark_Assessment_Summary_Report | Supporting & Related Material | 2011-10-11T04:00:00Z | 2011 | 10 | 2011-10-11T16:36:37Z | 0 | 0 | 0900006480f50416 | ||||
| NOAA-NMFS-2011-0229-0003 | NOAA | Stock Status Determinations; Notice of Intent (NOI) to prepare an Environmental Impact Statement (EIS); request for comments NOAA-NMFS-2011-0229 | 10-06-11_Shark_Stock_Status_Determinations_and_A5_NOI listserve notice | Supporting & Related Material | 2011-10-11T04:00:00Z | 2011 | 10 | 2011-10-11T15:51:56Z | 0 | 0 | 0900006480f502f6 | ||||
| NOAA-NMFS-2011-0229-0001 | NOAA | Stock Status Determinations; Notice of Intent (NOI) to prepare an Environmental Impact Statement (EIS); request for comments NOAA-NMFS-2011-0229 | Atlantic Highly Migratory Species: Atlantic Shark Management Measures | Proposed Rule | 2011-10-07T04:00:00Z | 2011 | 10 | 2011-10-07T04:00:00Z | 2012-01-01T04:59:59Z | 2011-12-01T21:43:34Z | 2011-26021 | 0 | 0 | 0900006480f4e719 |
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;