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 = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-0347 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Civil Monetary Penalty Inflation Adjustment | Rule | 2025-09-30T04:00:00Z | 2025 | 9 | 2025-09-30T04:00:00Z | 2025-09-30T16:13:14Z | 2025-18972 | 0 | 0 | 09000064b8fe7d5c | ||
| EEOC_FRDOC_0001-0346 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Performance Review Board Members | Notice | 2025-09-18T04:00:00Z | 2025 | 9 | 2025-09-18T04:00:00Z | 2025-09-18T16:11:56Z | 2025-18035 | 0 | 0 | 09000064b8fb0e72 | ||
| EEOC_FRDOC_0001-0345 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2025-01-13T05:00:00Z | 2025 | 1 | 2025-01-13T05:00:00Z | 2025-01-13T13:34:30Z | 2025-00549 | 0 | 0 | 09000064868b6795 | ||
| EEOC_FRDOC_0001-0344 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Recordkeeping and Reporting Requirements: Americans with Disabilities Act, Genetic Information Nondiscrimination Act, and Pregnant Workers Fairness Act | Rule | 2025-01-10T05:00:00Z | 2025 | 1 | 2025-01-10T05:00:00Z | 2025-01-10T13:01:58Z | 2024-31751 | 0 | 0 | 09000064868ad821 | ||
| EEOC_FRDOC_0001-0343 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2025-01-06T05:00:00Z | 2025 | 1 | 2025-01-06T05:00:00Z | 2025-02-06T04:59:59Z | 2025-01-08T02:00:46Z | 2024-31755 | 0 | 0 | 090000648689ec0f |
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;