documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FDA-1995-N-0062" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, posted_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-1995-N-0062-0027 | FDA | Quality/fill container; common or unusual name regulations-OPEN FDA-1995-N-0062 | Tab A: Copy of the Draft Regulatory Action as Submitted to the Office of Management and Budget's (OMB) Office of Information and Regulatory Affairs (OIRA) | Supporting & Related Material | Background Material | 2007-06-10T04:00:00Z | 2007 | 6 | 2020-01-10T19:04:37Z | 0 | 0 | 090000648056c9e3 | |||
| FDA-1995-N-0062-0026 | FDA | Quality/fill container; common or unusual name regulations-OPEN FDA-1995-N-0062 | Tab C: A Copy of the Final Regulatory Action as Published in the Federal Register | Supporting & Related Material | Background Material | 2007-06-10T04:00:00Z | 2007 | 6 | 2020-01-09T18:10:05Z | 0 | 0 | 090000648056c9cd | |||
| FDA-1995-N-0062-0029 | FDA | Quality/fill container; common or unusual name regulations-OPEN FDA-1995-N-0062 | Tab B: The Substantive Changes Between the Draft Submitted to OIRA for Review and the Regulatory Action Subsequently Announced | Supporting & Related Material | Background Material | 2007-06-10T04:00:00Z | 2007 | 6 | 2020-01-10T19:23:13Z | 0 | 0 | 090000648056c9e8 | |||
| FDA-1995-N-0062-0023 | FDA | Quality/fill container; common or unusual name regulations-OPEN FDA-1995-N-0062 | Tab C - Proposed rule of General Principles and Food Standards Modernization | Supporting & Related Material | Background Material | 2007-06-10T04:00:00Z | 2007 | 6 | 2021-04-13T14:51:59Z | 0 | 0 | 090000648056c9c8 | |||
| FDA-1995-N-0062-0024 | FDA | Quality/fill container; common or unusual name regulations-OPEN FDA-1995-N-0062 | Tab B - Proposed rule of General Principles and Food Standards | Supporting & Related Material | Background Material | 2007-06-10T04:00:00Z | 2007 | 6 | 2021-04-13T14:49:56Z | 0 | 0 | 090000648056c9ca | |||
| FDA-1995-N-0062-0028 | FDA | Quality/fill container; common or unusual name regulations-OPEN FDA-1995-N-0062 | Regulations Policy and Management Staff Memorandum to Division of Dockets Management - Executive Order 12866 [Food Standards; General Principles and Food Standards Modernization - Proposed Rule] - Reference 1 (Copy) | Supporting & Related Material | Background Material | 2007-06-10T04:00:00Z | 2007 | 6 | 2020-01-09T17:53:35Z | 0 | 0 | 090000648056c9e6 | |||
| FDA-1995-N-0062-0025 | FDA | Quality/fill container; common or unusual name regulations-OPEN FDA-1995-N-0062 | Tab A - Proposed rule of General Principles and Food Standards Modernization of Food Standards | Supporting & Related Material | Background Material | 2007-06-10T04:00:00Z | 2007 | 6 | 2021-04-13T14:46:33Z | 0 | 0 | 090000648056c9cc | |||
| FDA-1995-N-0062-0020 | FDA | Quality/fill container; common or unusual name regulations-OPEN FDA-1995-N-0062 | Memorandum of Telephone Conversation between FDA/CFSAN and Grocery Manufacturers Association/Food Products Association | Other | Memorandum | 2007-03-07T05:00:00Z | 2007 | 3 | 2020-01-13T13:47:26Z | 0 | 0 | 090000648056c9be | |||
| FDA-1995-N-0062-0022 | FDA | Quality/fill container; common or unusual name regulations-OPEN FDA-1995-N-0062 | Memorandum of Telephone Conversation between FDA/CFSAN and Grocery Manufacturers Association/Food Products Association | Other | Memorandum | 2007-03-07T05:00:00Z | 2007 | 3 | 2020-01-13T13:49:08Z | 0 | 0 | 090000648056c9c3 | |||
| FDA-1995-N-0062-0021 | FDA | Quality/fill container; common or unusual name regulations-OPEN FDA-1995-N-0062 | Memorandum of Telephone Conversation between FDA/CFSAN and Grocery Manufacturers Association/Food Products Association | Other | Memorandum | 2007-03-07T05:00:00Z | 2007 | 3 | 2020-01-13T13:47:55Z | 0 | 0 | 090000648056c9c0 |
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;