documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NIH-2011-0003" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- NIH 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NIH-2011-0003-0907 | NIH | Clinical Trials Registration and Results Submission NIH-2011-0003 | Clinical Trials Registration and Results Information Submission | Rule | 2016-09-21T04:00:00Z | 2016 | 9 | 2016-09-21T12:50:58Z | 2016-22129 | 0 | 0 | 090000648223422e | |||
| NIH-2011-0003-0908 | NIH | Clinical Trials Registration and Results Submission NIH-2011-0003 | References for Final Rule | Supporting & Related Material | 2016-09-21T04:00:00Z | 2016 | 9 | 2016-09-21T13:34:18Z | 0 | 0 | 0900006482234a80 | ||||
| NIH-2011-0003-0909 | NIH | Clinical Trials Registration and Results Submission NIH-2011-0003 | References in NPRM | Supporting & Related Material | 2016-09-21T04:00:00Z | 2016 | 9 | 2016-09-21T13:34:41Z | 0 | 0 | 0900006482234a83 | ||||
| NIH-2011-0003-0399 | NIH | Clinical Trials Registration and Results Submission NIH-2011-0003 | Proposed Rule; Extension Of Comment Period; Request For Comments. | Supporting & Related Material | 2015-02-13T05:00:00Z | 2015 | 2 | 2015-02-13T14:21:41Z | 0 | 0 | 0900006481a017b9 | ||||
| NIH-2011-0003-0677 | NIH | Clinical Trials Registration and Results Submission NIH-2011-0003 | Extension of Comment Period: Clinical Trials Registration and Results Submission | Proposed Rule | 2015-02-13T05:00:00Z | 2015 | 2 | 2015-02-13T05:00:00Z | 2015-03-03T18:59:12Z | 2015-02990 | 0 | 0 | 0900006481a02518 | ||
| NIH-2011-0003-0003 | NIH | Clinical Trials Registration and Results Submission NIH-2011-0003 | Clinical Trials Registration and Results Submission | Proposed Rule | 2014-11-21T05:00:00Z | 2014 | 11 | 2014-11-21T05:00:00Z | 2015-03-24T03:59:59Z | 2015-05-14T01:30:44Z | 2014-26197 | 0 | 0 | 090000648193bc18 | |
| NIH-2011-0003-0002 | NIH | Clinical Trials Registration and Results Submission NIH-2011-0003 | NPRM at a Glance | Supporting & Related Material | 2014-11-19T00:00:00Z | 2014 | 11 | 2016-09-21T16:49:28Z | 0 | 1 | 090000648193837b | ||||
| NIH-2011-0003-0001 | NIH | Clinical Trials Registration and Results Submission NIH-2011-0003 | Key changes proposed in the NPRM | Supporting & Related Material | 2014-11-19T00:00:00Z | 2014 | 11 | 2016-09-21T16:49:12Z | 0 | 1 | 090000648193837a |
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;