documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2018-N-4757" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FDA 8
| 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-4757-0013 | FDA | None FDA-2018-N-4757 | Revocation of the Test for Mycoplasma | Rule | Final Rule | 2020-08-21T04:00:00Z | 2020 | 8 | 2020-08-21T04:00:00Z | 2020-08-21T14:02:06Z | 2020-17085 | 0 | 0 | 09000064848168ad | |
| FDA-2018-N-4757-0012 | FDA | None FDA-2018-N-4757 | Revocation of the Test for Mycoplasma | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-08-19T04:00:00Z | 2020 | 8 | 2020-08-19T04:00:00Z | 2020-08-19T19:34:32Z | 0 | 0 | 0900006484811b4b | ||
| FDA-2018-N-4757-0008 | FDA | None FDA-2018-N-4757 | PRIA Reference 3 - Guidance for Industry re Revocation of the Test for Mycoplasma | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T12:56:12Z | 0 | 0 | 0900006483cf5cd7 | |||
| FDA-2018-N-4757-0005 | FDA | None FDA-2018-N-4757 | PRIA - Elimination of 21 CFR 610.30 Test for Mycoplasma re Revocation of the Test for Mycoplasma | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T12:55:45Z | 0 | 0 | 0900006483cf6109 | |||
| FDA-2018-N-4757-0007 | FDA | None FDA-2018-N-4757 | PRIA Reference 2 - Memo from CBER re Revocation of the Test for Mycoplasma | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T12:56:04Z | 0 | 0 | 0900006483cf5cd6 | |||
| FDA-2018-N-4757-0009 | FDA | None FDA-2018-N-4757 | PRIA Reference 4 - Electronic Code of Federal Regulations re Revocation of the Test for Mycoplasma | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T13:13:44Z | 0 | 0 | 0900006483cf6108 | |||
| FDA-2018-N-4757-0006 | FDA | None FDA-2018-N-4757 | PRIA Reference 1 - Electronic Code of Federal Regulations re Revocation of the Test for Mycoplasma | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T12:55:54Z | 0 | 0 | 0900006483cf5cd5 | |||
| FDA-2018-N-4757-0001 | FDA | None FDA-2018-N-4757 | Revocation of the Test for Mycoplasma | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-04-02T04:00:00Z | 2019 | 4 | 2019-04-02T04:00:00Z | 2019-06-18T03:59:59Z | 2019-06-14T01:01:26Z | 2019-06188 | 0 | 0 | 0900006483b571a2 |
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;