documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2021-N-0002" and posted_year = 2022 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), 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-2021-N-0002-0045 | FDA | None FDA-2021-N-0002 | New Animal Drugs; Approval of New Animal Drug Applications; Change of Sponsor | Rule | Final Rule | 2022-03-29T04:00:00Z | 2022 | 3 | 2022-03-29T04:00:00Z | 2022-03-29T13:38:19Z | 2022-06395 | 0 | 0 | 0900006484feb0a8 | |
| FDA-2021-N-0002-0044 | FDA | None FDA-2021-N-0002 | New Animal Drugs; Withdrawal of Approval of New Animal Drug Application | Notice | Withdrawal | 2022-02-28T05:00:00Z | 2022 | 2 | 2022-02-28T05:00:00Z | 2022-02-28T16:29:16Z | 2022-03539 | 0 | 0 | 0900006484fab908 | |
| FDA-2021-N-0002-0043 | FDA | None FDA-2021-N-0002 | New Animal Drugs; Approval of New Animal Drug Applications; Withdrawal of Approval of a New Animal Drug Application; Change of Sponsor | Rule | Final Rule | 2022-02-28T05:00:00Z | 2022 | 2 | 2022-02-28T05:00:00Z | 2022-02-28T16:22:14Z | 2022-03538 | 0 | 0 | 0900006484fab3c6 | |
| FDA-2021-N-0002-0037 | FDA | None FDA-2021-N-0002 | FOI Summary oA 200-708 approved August 2 2021 | Supporting & Related Material | Background Material | 2022-02-25T05:00:00Z | 2022 | 2 | 2022-02-25T13:45:46Z | 0 | 0 | 0900006484fa0eea | |||
| FDA-2021-N-0002-0041 | FDA | None FDA-2021-N-0002 | FOI Summary sN 141-063 approved August 19 2021 | Supporting & Related Material | Background Material | 2022-02-25T05:00:00Z | 2022 | 2 | 2022-02-25T13:46:01Z | 0 | 0 | 0900006484fa0ef2 | |||
| FDA-2021-N-0002-0042 | FDA | None FDA-2021-N-0002 | FOI Summary oN 141-545 approved July 15 2021 | Supporting & Related Material | Background Material | 2022-02-25T05:00:00Z | 2022 | 2 | 2022-02-25T13:46:05Z | 0 | 0 | 0900006484fa0ef5 | |||
| FDA-2021-N-0002-0040 | FDA | None FDA-2021-N-0002 | FOI Summary oA 200-709 approved August 18 2021 | Supporting & Related Material | Background Material | 2022-02-25T05:00:00Z | 2022 | 2 | 2022-02-25T13:45:57Z | 0 | 0 | 0900006484fa0ef0 | |||
| FDA-2021-N-0002-0038 | FDA | None FDA-2021-N-0002 | FOI Summary sA 200-618 approved August 16 2021 | Supporting & Related Material | Background Material | 2022-02-25T05:00:00Z | 2022 | 2 | 2022-02-25T13:45:50Z | 0 | 0 | 0900006484fa0eed | |||
| FDA-2021-N-0002-0039 | FDA | None FDA-2021-N-0002 | FOI Summary oA 200-703 approved July 7 2021 | Supporting & Related Material | Background Material | 2022-02-25T05:00:00Z | 2022 | 2 | 2022-02-25T13:45:53Z | 0 | 0 | 0900006484fa0eee |
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;