documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2005-N-0232" 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), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- FDA 9
| 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-2005-N-0232-0009 | FDA | Revocation of Status of Specific Products; Group A Streptococcus FDA-2005-N-0232 | Revocation of Status of Specific Products; Group A Streptococcus; Confirmation of Effective Date | Notice | Notice of Final Rule | 2006-04-24T04:00:00Z | 2006 | 4 | 2006-04-20T04:00:00Z | 2025-10-08T19:17:39Z | 06-3790 | 0 | 0 | 090000648044224b | |
| FDA-2005-N-0232-0007 | FDA | Revocation of Status of Specific Products; Group A Streptococcus FDA-2005-N-0232 | BACKGROUND | Supporting & Related Material | Background Material | 2005-12-07T05:00:00Z | 2005 | 12 | 2025-07-11T01:56:24Z | 0 | 0 | 0900006480442249 | |||
| FDA-2005-N-0232-0001 | FDA | Revocation of Status of Specific Products; Group A Streptococcus FDA-2005-N-0232 | Revocation of Status of Specific Products; Group A Streptococcus; Companion Document to Direct Final Rule | Notice | General Notice | 2005-12-07T05:00:00Z | 2005 | 12 | 2005-12-02T05:00:00Z | 2006-02-16T04:59:59Z | 2025-10-08T19:09:26Z | 05-23545 | 0 | 0 | 09000064804421bb |
| FDA-2005-N-0232-0003 | FDA | Revocation of Status of Specific Products; Group A Streptococcus FDA-2005-N-0232 | BACKGROUND | Supporting & Related Material | Background Material | 2005-12-07T05:00:00Z | 2005 | 12 | 2025-07-11T01:52:21Z | 0 | 0 | 0900006480442245 | |||
| FDA-2005-N-0232-0005 | FDA | Revocation of Status of Specific Products; Group A Streptococcus FDA-2005-N-0232 | BACKGROUND | Supporting & Related Material | Background Material | 2005-12-07T05:00:00Z | 2005 | 12 | 2025-07-11T01:54:47Z | 0 | 0 | 0900006480442247 | |||
| FDA-2005-N-0232-0004 | FDA | Revocation of Status of Specific Products; Group A Streptococcus FDA-2005-N-0232 | BACKGROUND | Supporting & Related Material | Background Material | 2005-12-07T05:00:00Z | 2005 | 12 | 2025-07-11T01:53:24Z | 0 | 0 | 0900006480442246 | |||
| FDA-2005-N-0232-0006 | FDA | Revocation of Status of Specific Products; Group A Streptococcus FDA-2005-N-0232 | BACKGROUND | Supporting & Related Material | Background Material | 2005-12-07T05:00:00Z | 2005 | 12 | 2025-07-11T01:55:36Z | 0 | 0 | 0900006480442248 | |||
| FDA-2005-N-0232-0002 | FDA | Revocation of Status of Specific Products; Group A Streptococcus FDA-2005-N-0232 | BACKGROUND | Supporting & Related Material | Background Material | 2005-12-07T05:00:00Z | 2005 | 12 | 2025-07-11T01:51:17Z | 0 | 0 | 090000648044223d | |||
| FDA-2005-N-0232-0008 | FDA | Revocation of Status of Specific Products; Group A Streptococcus FDA-2005-N-0232 | Revocation of Status of Specific Products; Group A Streptococcus | Notice | Notice of Final Rule | 2005-12-07T05:00:00Z | 2005 | 12 | 2005-12-02T05:00:00Z | 2006-02-16T04:59:59Z | 2025-10-08T19:14:21Z | 05-23546 | 0 | 0 | 090000648044224a |
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;