documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NOAA-NMFS-2009-0156" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- NOAA 10
| 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-2009-0156-0019 | NOAA | Taking of Marine Mammals Incidental to Commercial Fishing Operations; Harbor Porpoise Take Reduction Plan Regulations NOAA-NMFS-2009-0156 | Final Environmental Assessment | Supporting & Related Material | 2010-02-23T05:00:00Z | 2010 | 2 | 2010-02-23T14:35:03Z | 0 | 0 | 0900006480aab374 | ||||
| NOAA-NMFS-2009-0156-0018 | NOAA | Taking of Marine Mammals Incidental to Commercial Fishing Operations; Harbor Porpoise Take Reduction Plan Regulations NOAA-NMFS-2009-0156 | Taking of Marine Mammals Incidental to Commercial Fishing Operations: Harbor Porpoise Take Reduction Plan Regulations | Rule | 2010-02-19T05:00:00Z | 2010 | 2 | 2010-02-19T05:00:00Z | 2011-06-11T15:15:18Z | 2010-03273 | 0 | 0 | 0900006480aa83f4 | ||
| NOAA-NMFS-2009-0156-0017 | NOAA | Taking of Marine Mammals Incidental to Commercial Fishing Operations; Harbor Porpoise Take Reduction Plan Regulations NOAA-NMFS-2009-0156 | Taking of Marine Mammals Incidental to Commercial Fishing Operations; Harbor Porpoise Take Reduction Plan Regulations | Proposed Rule | 2009-08-10T04:00:00Z | 2009 | 8 | 2009-08-10T04:00:00Z | 2011-06-11T15:15:18Z | Z9-17190 | 0 | 0 | 0900006480a0503d | ||
| NOAA-NMFS-2009-0156-0007 | NOAA | Taking of Marine Mammals Incidental to Commercial Fishing Operations; Harbor Porpoise Take Reduction Plan Regulations NOAA-NMFS-2009-0156 | 2007 Stock Assessment Report (SAR) FR Notice | Supporting & Related Material | 2009-07-21T04:00:00Z | 2009 | 7 | 2009-07-21T17:44:05Z | 0 | 0 | 09000064809f6395 | ||||
| NOAA-NMFS-2009-0156-0006 | NOAA | Taking of Marine Mammals Incidental to Commercial Fishing Operations; Harbor Porpoise Take Reduction Plan Regulations NOAA-NMFS-2009-0156 | 2006 Stock Assessment Report (SAR) FR Notice | Supporting & Related Material | 2009-07-21T04:00:00Z | 2009 | 7 | 2009-07-21T17:44:04Z | 0 | 0 | 09000064809f638f | ||||
| NOAA-NMFS-2009-0156-0003 | NOAA | Taking of Marine Mammals Incidental to Commercial Fishing Operations; Harbor Porpoise Take Reduction Plan Regulations NOAA-NMFS-2009-0156 | 2000 Stock Assessment Report (SAR) FR Notice | Supporting & Related Material | 2009-07-21T04:00:00Z | 2009 | 7 | 2009-07-21T17:43:59Z | 0 | 0 | 09000064809f6025 | ||||
| NOAA-NMFS-2009-0156-0005 | NOAA | Taking of Marine Mammals Incidental to Commercial Fishing Operations; Harbor Porpoise Take Reduction Plan Regulations NOAA-NMFS-2009-0156 | 2004 Stock Assessment Report (SAR) FR | Supporting & Related Material | 2009-07-21T04:00:00Z | 2009 | 7 | 2009-07-21T17:44:02Z | 0 | 0 | 09000064809f638c | ||||
| NOAA-NMFS-2009-0156-0002 | NOAA | Taking of Marine Mammals Incidental to Commercial Fishing Operations; Harbor Porpoise Take Reduction Plan Regulations NOAA-NMFS-2009-0156 | EA PROPOSED MODIFICATIONS TO THE HARBOR PORPOISE TAKE REDUCTION PLAN | Supporting & Related Material | 2009-07-21T04:00:00Z | 2009 | 7 | 2009-07-21T17:43:58Z | 0 | 0 | 09000064809f12b6 | ||||
| NOAA-NMFS-2009-0156-0001 | NOAA | Taking of Marine Mammals Incidental to Commercial Fishing Operations; Harbor Porpoise Take Reduction Plan Regulations NOAA-NMFS-2009-0156 | Taking of Marine Mammals Incidental to Commercial Fishing Operations; Harbor Porpoise Take Reduction Plan Regulations | Proposed Rule | 2009-07-21T04:00:00Z | 2009 | 7 | 2009-07-21T04:00:00Z | 2009-08-21T03:59:59Z | 2011-06-11T15:15:18Z | E9-17190 | 0 | 0 | 09000064809f71ea | |
| NOAA-NMFS-2009-0156-0004 | NOAA | Taking of Marine Mammals Incidental to Commercial Fishing Operations; Harbor Porpoise Take Reduction Plan Regulations NOAA-NMFS-2009-0156 | 2001 Stock Assessment Report (SAR) FR Notice | Supporting & Related Material | 2009-07-21T04:00:00Z | 2009 | 7 | 2009-07-21T17:44:01Z | 0 | 0 | 09000064809f6027 |
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;