documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "EEOC", document_type = "Rule" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-0330 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | ADA Appendix Sections Related to ADA Wellness Rule Vacated by Court | Rule | 2024-07-05T04:00:00Z | 2024 | 7 | 2024-07-05T04:00:00Z | 2024-07-05T12:25:53Z | 2024-14606 | 0 | 0 | 09000064865dc569 | ||
| EEOC_FRDOC_0001-0327 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Procedures for Previously Exempt State and Local Government Employee Complaints of Employment Discrimination under the Government Employee Rights Act | Rule | 2024-06-04T04:00:00Z | 2024 | 6 | 2024-06-04T04:00:00Z | 2024-06-04T11:38:42Z | 2024-12029 | 0 | 0 | 090000648659477a | ||
| EEOC_FRDOC_0001-0326 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Amendment of Procedural and Administrative Regulations to Include the Pregnant Workers Fairness Act; Correction | Rule | 2024-05-28T04:00:00Z | 2024 | 5 | 2024-05-28T04:00:00Z | 2024-05-28T15:12:45Z | 2024-11611 | 0 | 0 | 0900006486585f0b | ||
| EEOC_FRDOC_0001-0325 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Implementation of the Pregnant Workers Fairness Act | Rule | 2024-04-19T04:00:00Z | 2024 | 4 | 2024-04-19T04:00:00Z | 2024-04-19T11:48:40Z | 2024-07527 | 0 | 0 | 09000064864e17f7 | ||
| EEOC_FRDOC_0001-0323 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Amendment of Procedural and Administrative Regulations to Include the Pregnant Workers Fairness Act; Correction | Rule | 2024-02-23T05:00:00Z | 2024 | 2 | 2024-02-23T05:00:00Z | 2024-02-23T14:34:58Z | 2024-03691 | 0 | 0 | 0900006486429583 | ||
| EEOC_FRDOC_0001-0322 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Civil Monetary Penalty Inflation Adjustment | Rule | 2024-02-16T05:00:00Z | 2024 | 2 | 2024-02-16T05:00:00Z | 2024-02-16T13:16:06Z | 2024-03177 | 0 | 0 | 090000648640b5d7 | ||
| EEOC_FRDOC_0001-0321 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Congressional Disapproval of Update of Commission's Conciliation Procedures | Rule | 2024-02-16T05:00:00Z | 2024 | 2 | 2024-02-16T05:00:00Z | 2024-02-16T13:15:38Z | 2024-03176 | 0 | 0 | 090000648640b510 | ||
| EEOC-2024-0001-0001 | EEOC | Amendment of Procedural and Administrative Regulations to Include the Pregnant Workers Fairness Act EEOC-2024-0001 | Amendment of Procedural and Administrative Regulations to Include the Pregnant Workers Fairness Act | Rule | 2024-02-14T05:00:00Z | 2024 | 2 | 2024-02-14T05:00:00Z | 2024-04-16T03:59:59Z | 2024-04-16T01:00:43Z | 2024-02764 | 0 | 0 | 0900006486406d5b |
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;