documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "CDC", document_type = "Other" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: comment_end_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CDC-2016-0113-0001 | CDC | Understanding Relationship Dynamics and Conflict Survey 0920-17FB CDC-2016-0113 | Understanding Relationship Dynamics and Conflict Survey 0920-17FB 2016-28899 | Other | 2016-12-05T05:00:00Z | 2016 | 12 | 2016-12-05T05:00:00Z | 2017-02-01T04:59:59Z | 2017-01-19T02:00:40Z | 0 | 0 | 09000064823dfc51 | ||
| CDC-2016-0106-0001 | CDC | ZEN Colombia Study: Zika in Pregnant Women and Children in Colombia 0920-16BGA CDC-2016-0106 | ZEN Colombia Study: Zika in Pregnant Women and Children in Colombia 0920-16BGA 2016-27691 | Other | 2016-11-28T05:00:00Z | 2016 | 11 | 2016-11-28T05:00:00Z | 2017-01-18T04:59:59Z | 2016-11-29T02:01:04Z | 0 | 0 | 09000064823c245a | ||
| CDC-2016-0061-0001 | CDC | Emergency Epidemic Investigation Data Collections 0920-1011 CDC-2016-0061 | Emergency Epidemic Investigation Data Collections 0920-1011 2016-16882 | Other | 2016-09-12T04:00:00Z | 2016 | 9 | 2016-09-12T04:00:00Z | 2016-09-17T03:59:59Z | 2016-09-12T14:24:59Z | 0 | 0 | 09000064821fa1b0 | ||
| CDC-2016-0084-0001 | CDC | Report of Verified Case of Tuberculosis (RVCT) 0920-0026 CDC-2016-0084 | Report of Verified Case of Tuberculosis (RVCT) 0920-0026 2016-20069 | Other | 2016-08-25T04:00:00Z | 2016 | 8 | 2016-08-25T04:00:00Z | 2016-10-25T03:59:59Z | 2016-10-24T01:01:18Z | 0 | 0 | 090000648219ba04 | ||
| CDC-2016-0063-0001 | CDC | Generic Clearance for CDC/ATSDR Formative Research and Tool Development (CDC) 0920-16AVC CDC-2016-0063 | Generic Clearance for CDC/ATSDR Formative Research and Tool Development (CDC) 0920-16AVC 2016-16873 | Other | 2016-07-18T04:00:00Z | 2016 | 7 | 2016-07-18T04:00:00Z | 2016-09-17T03:59:59Z | 2016-07-18T12:35:19Z | 0 | 0 | 09000064820c10b8 | ||
| CDC-2016-0041-0001 | CDC | CBO Outcome Monitoring Projects for CBO HIV Prevention Services Clients” 0920-16AHI CDC-2016-0041 | CBO Outcome Monitoring Projects for CBO HIV Prevention Services Clients” 0920-16AHI 2016-10399 | Other | 2016-05-04T04:00:00Z | 2016 | 5 | 2016-05-04T04:00:00Z | 2016-07-06T03:59:59Z | 2016-05-16T15:00:53Z | 0 | 0 | 0900006481fa8d66 | ||
| CDC-2016-0022-0001 | CDC | 2017 and 2019 National Youth Risk Behavior Surveys 0920-0493 CDC-2016-0022 | 2017 and 2019 National Youth Risk Behavior Surveys 0920-0493 2016-04431 | Other | 2016-03-02T05:00:00Z | 2016 | 3 | 2016-03-02T05:00:00Z | 2016-05-03T03:59:59Z | 2016-05-02T22:00:41Z | 0 | 0 | 0900006481e986e4 |
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;