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 = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-0319 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Performance Review Board Members | Notice | 2023-10-19T04:00:00Z | 2023 | 10 | 2023-10-19T04:00:00Z | 2023-10-19T12:10:44Z | 2023-23088 | 0 | 0 | 090000648610b898 | ||
| EEOC_FRDOC_0001-0318 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Proposed Enforcement Guidance on Harassment in the Workplace | Notice | 2023-10-02T04:00:00Z | 2023 | 10 | 2023-10-02T04:00:00Z | 2023-11-02T03:59:59Z | 2024-02-18T01:35:58Z | 2023-21644 | 0 | 0 | 090000648601989e | |
| EEOC_FRDOC_0001-0317 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-08T04:00:00Z | 2023-10-11T03:59:59Z | 2023-09-08T12:35:08Z | 2023-19399 | 0 | 0 | 0900006485f588ce | |
| EEOC_FRDOC_0001-0316 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Performance Review Board Members | Notice | 2023-09-07T04:00:00Z | 2023 | 9 | 2023-09-07T04:00:00Z | 2023-09-07T12:14:35Z | 2023-19349 | 0 | 0 | 0900006485f508ef | ||
| EEOC_FRDOC_0001-0315 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Federal Sector Equal Employment Opportunity | Rule | 2023-08-24T04:00:00Z | 2023 | 8 | 2023-08-24T04:00:00Z | 2023-08-24T12:33:04Z | 2023-18100 | 0 | 0 | 0900006485ee0b2c | ||
| EEOC_FRDOC_0001-0310 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2023-05-02T04:00:00Z | 2023 | 5 | 2023-05-02T04:00:00Z | 2023-06-02T03:59:59Z | 2023-05-02T12:05:31Z | 2023-09216 | 0 | 0 | 09000064859b7b7e | |
| EEOC_FRDOC_0001-0309 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Adjustment of the Penalty for Violation of Notice Posting Requirements | Rule | 2023-03-23T04:00:00Z | 2023 | 3 | 2023-03-23T04:00:00Z | 2023-03-23T21:27:16Z | 2023-05896 | 0 | 0 | 0900006485838a6c | ||
| EEOC_FRDOC_0001-0308 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Regulations under the Genetic Information Nondiscrimination Act; Correction | Rule | 2023-03-22T04:00:00Z | 2023 | 3 | 2023-03-22T04:00:00Z | 2023-03-22T12:10:54Z | 2023-05679 | 0 | 0 | 0900006485823175 | ||
| EEOC_FRDOC_0001-0306 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2023-01-23T05:00:00Z | 2023 | 1 | 2023-01-23T05:00:00Z | 2023-01-23T13:26:19Z | 2023-01395 | 0 | 0 | 0900006485602610 |
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;