documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FDA-2021-V-0192" 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)
document_type 2
agency_id 1
- FDA 10
| 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-V-0192-0010 | FDA | None FDA-2021-V-0192 | Variance Approval Letter from FDA CDRH to Digital Projection Inc. | Other | Approval for Variance (VRA) | 2024-02-06T05:00:00Z | 2024 | 2 | 2024-02-06T05:00:00Z | 2024-02-06T16:23:39Z | 0 | 0 | 09000064863e85e6 | ||
| FDA-2021-V-0192-0009 | FDA | None FDA-2021-V-0192 | Variance Amendment Report from Digital Projection Inc | Other | Amendment | 2024-01-30T05:00:00Z | 2024 | 1 | 2024-01-30T05:00:00Z | 2024-01-30T17:23:54Z | 0 | 0 | 09000064863d0951 | ||
| FDA-2021-V-0192-0008 | FDA | None FDA-2021-V-0192 | Amended Variance Approval Letter from FDA CDRH to Digital Projection Inc. | Other | Approval for Variance (VRA) | 2024-01-25T05:00:00Z | 2024 | 1 | 2024-01-25T05:00:00Z | 2024-01-25T17:19:56Z | 0 | 0 | 09000064863c2f7b | ||
| FDA-2021-V-0192-0007 | FDA | None FDA-2021-V-0192 | Variance Amendment Report from Digital Projection Inc. /Delta Electronics Inc. | Other | Amendment | 2023-12-28T05:00:00Z | 2023 | 12 | 2023-12-28T05:00:00Z | 2023-12-28T12:46:02Z | 0 | 0 | 090000648635cf0d | ||
| FDA-2021-V-0192-0006 | FDA | None FDA-2021-V-0192 | Variance Approval Letter from FDA CDRH to Digital Projection Inc. | Other | Approval for Variance (VRA) | 2023-08-01T04:00:00Z | 2023 | 8 | 2023-08-01T04:00:00Z | 2023-08-01T20:21:43Z | 0 | 0 | 0900006485da50da | ||
| FDA-2021-V-0192-0005 | FDA | None FDA-2021-V-0192 | Variance Amendment from DIGITAL PROJECTION INC | Other | Amendment | 2023-06-29T04:00:00Z | 2023 | 6 | 2023-06-29T04:00:00Z | 2023-06-29T18:52:19Z | 0 | 0 | 0900006485c195ef | ||
| FDA-2021-V-0192-0004 | FDA | None FDA-2021-V-0192 | Digital projection Variance 2021-V-0192 part number update | Supporting & Related Material | Background Material | 2021-12-20T05:00:00Z | 2021 | 12 | 2021-12-20T21:09:19Z | 0 | 0 | 0900006484ed701d | |||
| FDA-2021-V-0192-0003 | FDA | None FDA-2021-V-0192 | Variance Approval Letter from FDA CDRH to Digital Projection Inc | Other | Approval for Variance (VRA) | 2021-03-22T04:00:00Z | 2021 | 3 | 2021-03-22T04:00:00Z | 2021-03-22T13:13:39Z | 0 | 0 | 0900006484a73d1d | ||
| FDA-2021-V-0192-0001 | FDA | None FDA-2021-V-0192 | Variance Application from Digital Projection Inc | Other | Application for Variance (VAR) | 2021-02-16T05:00:00Z | 2021 | 2 | 2021-02-16T05:00:00Z | 2021-02-16T19:56:03Z | 0 | 0 | 0900006484a387a5 | ||
| FDA-2021-V-0192-0002 | FDA | None FDA-2021-V-0192 | Acknowledgment Letter from FDA DMS to Digital Projection Inc | Other | Acknowledgement Letter/Receipt | 2021-02-16T05:00:00Z | 2021 | 2 | 2021-02-16T05:00:00Z | 2021-02-16T19:57:51Z | 0 | 0 | 0900006484a387a9 |
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;