documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-2010-N-0155" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, comment_start_date, withdrawn, posted_date (date), comment_start_date (date), comment_end_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-2010-N-0155-0059 | FDA | None FDA-2010-N-0155 | See Docket ID FDA-2010-D-0094 | Supporting & Related Material | 2010-09-01T00:00:00Z | 2010 | 9 | 2010-09-18T02:09:29Z | 0 | 1 | 0900006480b41f7b | ||||
| FDA-2010-N-0155-0058 | FDA | None FDA-2010-N-0155 | The PEW Charitable Trusts to the Food and Drug Administration (FDA), August 27, 2010 - [Multiple Submitters=9,831] - Memorandum | Other | M-Memorandum | 2010-08-30T04:00:00Z | 2010 | 8 | 2010-08-30T04:00:00Z | 2013-07-27T23:29:40Z | 0 | 0 | 0900006480b3f1bd | ||
| FDA-2010-N-0155-0014 | FDA | None FDA-2010-N-0155 | Veterinary Feed Directive; Extension of Comment Period | Proposed Rule | NEC-Notice of Extension | 2010-06-28T04:00:00Z | 2010 | 6 | 2010-06-28T04:00:00Z | 2010-08-28T03:59:59Z | 2012-08-28T02:01:08Z | 2010-15561 | 0 | 0 | 0900006480b0ba47 |
| FDA-2010-N-0155-0006 | FDA | None FDA-2010-N-0155 | American Association of Bovine Practitioners - Request for Extension Comment Due Date | Other | EXT-Request for Extension Comment Due Date | 2010-04-28T04:00:00Z | 2010 | 4 | 2010-04-28T04:00:00Z | 2013-07-27T23:16:14Z | 0 | 0 | 0900006480adb2d0 | ||
| FDA-2010-N-0155-0007 | FDA | None FDA-2010-N-0155 | Academy of Veterinary Consultants (AVC) - Request for Extension of Comment Due Date | Other | EXT-Request for Extension Comment Due Date | 2010-04-28T04:00:00Z | 2010 | 4 | 2010-04-28T04:00:00Z | 2013-07-27T23:17:01Z | 0 | 0 | 0900006480ae08c5 | ||
| FDA-2010-N-0155-0005 | FDA | None FDA-2010-N-0155 | American Veterinary Medical Association (AVMA) - Request for Extension Comment Due Date | Other | EXT-Request for Extension Comment Due Date | 2010-04-20T04:00:00Z | 2010 | 4 | 2010-04-20T04:00:00Z | 2013-08-11T03:07:57Z | 0 | 0 | 0900006480ad7dae | ||
| FDA-2010-N-0155-0001 | FDA | None FDA-2010-N-0155 | Veterinary Feed Directive | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2010-03-29T04:00:00Z | 2010 | 3 | 2010-03-29T04:00:00Z | 2010-06-29T03:59:59Z | 2015-06-03T16:03:27Z | 2010-06872 | 0 | 0 | 0900006480aca86f |
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;