documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EEOC_FRDOC_0001" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EEOC_FRDOC_0001-0245 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Hearings: Proposed EEO-1 Report Amendments | Notice | 2019-11-05T05:00:00Z | 2019 | 11 | 2019-11-05T05:00:00Z | 2019-11-05T12:47:02Z | 2019-24118 | 0 | 0 | 090000648411e780 | ||
| EEOC_FRDOC_0001-0244 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Appointment of Members: Performance Review Board | Notice | 2019-09-19T04:00:00Z | 2019 | 9 | 2019-09-19T04:00:00Z | 2019-09-19T11:54:38Z | 2019-20204 | 0 | 0 | 0900006483f9b399 | ||
| EEOC_FRDOC_0001-0242 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | EEO-1 Pay Data Collection for 2017 | Rule | 2019-05-03T04:00:00Z | 2019 | 5 | 2019-05-03T04:00:00Z | 2019-05-03T12:28:13Z | 2019-09225 | 0 | 0 | 0900006483c2de56 | ||
| EEOC_FRDOC_0001-0241 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Immediate Reinstatement of Revised EEO-1: Pay Data Collection | Rule | 2019-05-01T04:00:00Z | 2019 | 5 | 2019-05-01T04:00:00Z | 2019-05-01T11:51:17Z | 2019-09002 | 0 | 0 | 0900006483c2239f | ||
| EEOC_FRDOC_0001-0240 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | 2019 Adjustment of the Penalty for Violation of Notice Posting Requirements | Rule | 2019-03-21T04:00:00Z | 2019 | 3 | 2019-03-21T04:00:00Z | 2019-03-21T11:49:49Z | 2019-05386 | 0 | 0 | 0900006483b0d16e |
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;