documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "GSA-GSA-2016-0004" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
- Notice 2
- Proposed Rule 1
- Rule 1
agency_id 1
- GSA 4
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| GSA-GSA-2016-0004-0006 | GSA | Commission to Prevent Child Abuse and Neglect Fatalities (CECANF) GSA-GSA-2016-0004 | Public Availability of Agency Records and Informational Materials | Rule | Final Rule | 2020-01-29T05:00:00Z | 2020 | 1 | 2020-01-29T05:00:00Z | 2020-02-24T14:40:04Z | 2020-00057 | 0 | 0 | 0900006484300a7e | |
| GSA-GSA-2016-0004-0003 | GSA | Commission to Prevent Child Abuse and Neglect Fatalities (CECANF) GSA-GSA-2016-0004 | Public Availability of Agency Records and Informational Materials | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2018-06-20T04:00:00Z | 2018 | 6 | 2018-06-20T04:00:00Z | 2018-08-21T03:59:59Z | 2018-08-18T01:02:29Z | 2018-13105 | 0 | 0 | 0900006483433763 |
| GSA-GSA-2016-0004-0002 | GSA | Commission to Prevent Child Abuse and Neglect Fatalities (CECANF) GSA-GSA-2016-0004 | Commission To Eliminate Child Abuse and Neglect Fatalities; Announcement of Meetings (Notice-CECANF-2016-–03) | Notice | Public Meetings | 2016-02-08T05:00:00Z | 2016 | 2 | 2016-02-08T05:00:00Z | 2016-02-16T21:02:18Z | 2016-02452 | 0 | 0 | 0900006481e59ee9 | |
| GSA-GSA-2016-0004-0001 | GSA | Commission to Prevent Child Abuse and Neglect Fatalities (CECANF) GSA-GSA-2016-0004 | Commission To Eliminate Child Abuse and Neglect Fatalities; Commission To Eliminate Child Abuse and Neglect Fatalities; Announcement of Meeting (Notice-CECANF-2016-01) | Notice | Public Meetings | 2016-01-11T05:00:00Z | 2016 | 1 | 2016-01-11T05:00:00Z | 2016-02-02T16:06:47Z | 2016-00343 | 0 | 0 | 0900006481dfce3e |
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;