documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-2018-N-0417" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2018-N-0417-0007 | FDA | None FDA-2018-N-0417 | Request for Nominations of Voting Members on a Public Advisory Committee; National Mammography Quality Assurance Advisory Committee | Notice | Request for Nominations | 2022-12-22T05:00:00Z | 2022 | 12 | 2022-12-22T13:25:37Z | 2022-27883 | 0 | 0 | 090000648554cc75 | ||
| FDA-2018-N-0417-0005 | FDA | None FDA-2018-N-0417 | Request for Nominations of Voting Members on a Public Advisory Committee; National Mammography Quality Assurance Advisory Committee | Notice | Request for Nominations | 2021-12-03T05:00:00Z | 2021 | 12 | 2021-12-03T05:00:00Z | 2021-12-03T16:25:28Z | 2021-26258 | 0 | 0 | 0900006484e9c7d4 | |
| FDA-2018-N-0417-0006 | FDA | None FDA-2018-N-0417 | Request for Nominations on the National Mammography Quality Assurance Advisory Committee | Notice | Request for Nominations | 2021-12-03T05:00:00Z | 2021 | 12 | 2021-12-03T05:00:00Z | 2021-12-03T16:43:54Z | 2021-26264 | 0 | 0 | 0900006484e9c85b | |
| FDA-2018-N-0417-0004 | FDA | None FDA-2018-N-0417 | Request for Nominations on the National Mammography Quality Assurance Advisory Committee | Notice | General Notice | 2021-01-08T05:00:00Z | 2021 | 1 | 2021-01-08T05:00:00Z | 2021-11-15T17:00:58Z | 2021-00122 | 0 | 0 | 09000064849e8bd0 | |
| FDA-2018-N-0417-0003 | FDA | None FDA-2018-N-0417 | Request for Nominations of Voting Members on a Public Advisory Committee; National Mammography Quality Assurance Advisory Committee | Notice | Advisory Committee | 2020-12-21T05:00:00Z | 2020 | 12 | 2020-12-21T05:00:00Z | 2020-12-21T13:33:01Z | 2020-28054 | 0 | 0 | 09000064849aeb78 | |
| FDA-2018-N-0417-0002 | FDA | None FDA-2018-N-0417 | Request for Nominations on the National Mammography Quality Assurance Advisory Committee | Notice | Request for Nominations | 2019-12-12T05:00:00Z | 2019 | 12 | 2019-12-12T05:00:00Z | 2019-12-12T14:33:45Z | 2019-26735 | 0 | 0 | 0900006484206b20 | |
| FDA-2018-N-0417-0001 | FDA | None FDA-2018-N-0417 | Request for Nominations on the National Mammography Quality Assurance Advisory Committee | Notice | Request for Nominations | 2018-02-13T05:00:00Z | 2018 | 2 | 2018-02-13T05:00:00Z | 2018-02-13T14:53:56Z | 2018-02922 | 0 | 0 | 0900006482f279d5 |
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;