documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FDA-2022-N-2672" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FDA-2022-N-2672-1737 | FDA | None FDA-2022-N-2672 | FONSI for Amended EA for AAS | Other | Amendment | 2024-10-02T04:00:00Z | 2024 | 10 | 2024-10-02T04:00:00Z | 2024-10-02T15:08:05Z | 0 | 0 | 09000064867a673b | ||
| FDA-2022-N-2672-1738 | FDA | None FDA-2022-N-2672 | Final Amended EA | Other | Amendment | 2024-10-02T04:00:00Z | 2024 | 10 | 2024-10-02T04:00:00Z | 2024-10-02T15:10:22Z | 0 | 0 | 09000064867a673d | ||
| FDA-2022-N-2672-1736 | FDA | None FDA-2022-N-2672 | Draft Response to Public Comment on AAS Amended EA | Other | Response(s) | 2024-10-02T04:00:00Z | 2024 | 10 | 2024-10-02T04:00:00Z | 2024-10-02T15:07:17Z | 0 | 0 | 09000064867a6739 | ||
| FDA-2022-N-2672-1735 | FDA | None FDA-2022-N-2672 | Amended Environmental Assessment for Production of AquAdvantage Salmon at the Bay Fortune and Rollo Bay Facilities on Prince Edward Island, Canada; Availability | Notice | Notice of Availability | 2024-09-30T04:00:00Z | 2024 | 9 | 2024-09-30T14:37:02Z | 2024-22308 | 0 | 0 | 09000064867a0336 | ||
| FDA-2022-N-2672-0009 | FDA | None FDA-2022-N-2672 | Transcript of CVM’s Virtual Public Meeting - Public Meeting on Draft Amended Environmental Assessment for Production of AquAdvantage Salmon at the Bay Fortune and Rollo Bay Facilities on Prince Edward Island, Canada | Other | Transcript(s) | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T05:00:00Z | 2023-01-09T20:31:26Z | 0 | 0 | 09000064855c8191 | ||
| FDA-2022-N-2672-0004 | FDA | None FDA-2022-N-2672 | Public Meeting: Draft Amended Environmental Assessment Concerning AquAdvantage Salmon | Other | Environmental assessment | 2022-12-16T05:00:00Z | 2022 | 12 | 2022-12-16T05:00:00Z | 2022-12-16T16:09:16Z | 0 | 0 | 0900006485534aea | ||
| FDA-2022-N-2672-0005 | FDA | None FDA-2022-N-2672 | Draft Amended Environmental Assessment for Production of AquAdvantage Salmon at the Bay Fortune and Rollo Bay Facilities on Prince Edward Island, Canada - Presentation | Other | Environmental assessment | 2022-12-16T05:00:00Z | 2022 | 12 | 2022-12-16T05:00:00Z | 2022-12-16T16:09:23Z | 0 | 0 | 0900006485534aec | ||
| FDA-2022-N-2672-0002 | FDA | None FDA-2022-N-2672 | Draft Amended Environmental Assessment for Production of AquAdvantage Salmon at the Bay Fortune and Rollo Bay Facilities on Prince Edward Island, Canada; Public Meeting; Request for Comments | Notice | Public Meetings | 2022-11-17T05:00:00Z | 2022 | 11 | 2022-11-17T05:00:00Z | 2023-01-18T04:59:59Z | 2023-01-24T02:01:08Z | 2022-25002 | 0 | 0 | 09000064854bdfde |
| FDA-2022-N-2672-0003 | FDA | None FDA-2022-N-2672 | Draft Amended Environmental Assessment for Production of AquAdvantage Salmon at the Bay Fortune and Rollo Bay Facilities on Prince Edward Island, Canada; Availability; Request for Comments | Notice | Notice of Availability | 2022-11-17T05:00:00Z | 2022 | 11 | 2022-11-17T05:00:00Z | 2023-01-18T04:59:59Z | 2023-01-19T02:01:06Z | 2022-25001 | 0 | 0 | 09000064854bdfe4 |
| FDA-2022-N-2672-0001 | FDA | None FDA-2022-N-2672 | Draft Amended Environmental Assessment for Production of AquAdvantage® Salmon at the Bay Fortune and Rollo Bay Facilities on Prince Edward Island, Canada | Other | Assessment Document or Analysis | 2022-11-16T05:00:00Z | 2022 | 11 | 2022-11-16T05:00:00Z | 2022-11-16T17:45:01Z | 0 | 0 | 09000064854bb7e3 |
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;