documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EEOC_FRDOC_0001" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EEOC_FRDOC_0001-0236 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Removal of Final GINA Wellness Rule Vacated by Court | Rule | 2018-12-20T05:00:00Z | 2018 | 12 | 2018-12-20T05:00:00Z | 2018-12-20T13:01:19Z | 2018-27538 | 0 | 0 | 09000064839b8cfd | ||
| EEOC_FRDOC_0001-0237 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Removal of Final ADA Wellness Rule Vacated by Court | Rule | 2018-12-20T05:00:00Z | 2018 | 12 | 2018-12-20T05:00:00Z | 2018-12-20T13:04:55Z | 2018-27539 | 0 | 0 | 09000064839b91fa | ||
| EEOC_FRDOC_0001-0235 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2018-10-24T04:00:00Z | 2018 | 10 | 2018-10-24T04:00:00Z | 2018-10-24T12:15:53Z | 2018-23373 | 0 | 0 | 0900006483843778 | ||
| EEOC_FRDOC_0001-0234 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | SES Performance Review Board-Appointment of Members | Notice | 2018-10-12T04:00:00Z | 2018 | 10 | 2018-10-12T04:00:00Z | 2018-10-12T11:51:03Z | 2018-22249 | 0 | 0 | 09000064837c7212 | ||
| EEOC_FRDOC_0001-0233 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T04:00:00Z | 2018-08-17T12:00:33Z | 2018-17922 | 0 | 0 | 090000648363085f | ||
| EEOC_FRDOC_0001-0232 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Federal Sector Equal Employment Opportunity; CFR Correction | Rule | 2018-06-27T04:00:00Z | 2018 | 6 | 2018-06-27T04:00:00Z | 2018-06-27T11:59:22Z | 2018-13907 | 0 | 0 | 0900006483468f91 | ||
| EEOC_FRDOC_0001-0230 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2018-04-30T04:00:00Z | 2018 | 4 | 2018-04-30T04:00:00Z | 2018-05-31T03:59:59Z | 2018-04-30T11:49:45Z | 2018-08993 | 0 | 0 | 090000648320bca4 | |
| EEOC_FRDOC_0001-0229 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2018-04-25T04:00:00Z | 2018 | 4 | 2018-04-25T04:00:00Z | 2018-05-26T03:59:59Z | 2018-04-25T11:57:05Z | 2018-08685 | 0 | 0 | 09000064831c0feb | |
| EEOC_FRDOC_0001-0225 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Adjustment of the Penalty for Violation of Notice Posting Requirements | Rule | 2018-01-18T05:00:00Z | 2018 | 1 | 2018-01-18T05:00:00Z | 2018-01-18T12:51:10Z | 2018-00815 | 0 | 0 | 0900006482e260b7 |
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;