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 = 2022 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-0304 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2022-12-29T05:00:00Z | 2022 | 12 | 2022-12-29T05:00:00Z | 2022-12-29T14:06:37Z | 2022-28472 | 0 | 0 | 090000648555f5ab | ||
| EEOC_FRDOC_0001-0303 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Draft Strategic Plan 2022-2026 | Notice | 2022-11-16T05:00:00Z | 2022 | 11 | 2022-11-16T05:00:00Z | 2022-12-06T04:59:59Z | 2022-12-06T02:01:04Z | 2022-24972 | 0 | 0 | 09000064854bb112 | |
| EEOC_FRDOC_0001-0300 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Performance Review Board Membership | Notice | 2022-09-19T04:00:00Z | 2022 | 9 | 2022-09-19T04:00:00Z | 2022-09-19T11:46:29Z | 2022-20140 | 0 | 0 | 0900006485327fad | ||
| EEOC_FRDOC_0001-0299 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2022-09-16T04:00:00Z | 2022 | 9 | 2022-09-16T04:00:00Z | 2022-09-16T11:42:41Z | 2022-20187 | 0 | 0 | 09000064853174c3 | ||
| EEOC_FRDOC_0001-0298 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2022-08-30T04:00:00Z | 2022 | 8 | 2022-08-30T04:00:00Z | 2022-08-30T11:29:24Z | 2022-18807 | 0 | 0 | 090000648528e5c3 | ||
| EEOC_FRDOC_0001-0297 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2022-08-16T04:00:00Z | 2022 | 8 | 2022-08-16T04:00:00Z | 2022-08-16T11:58:33Z | 2022-17661 | 0 | 0 | 090000648523f087 | ||
| EEOC_FRDOC_0001-0296 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2022-05-05T04:00:00Z | 2022 | 5 | 2022-05-05T04:00:00Z | 2022-05-05T12:12:56Z | 2022-09744 | 0 | 0 | 0900006485051e6a | ||
| EEOC_FRDOC_0001-0295 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Updates to Telephone and Facsimile Numbers | Rule | 2022-03-16T04:00:00Z | 2022 | 3 | 2022-03-16T04:00:00Z | 2022-03-16T12:06:42Z | 2022-05502 | 0 | 0 | 0900006484fcc61e | ||
| EEOC_FRDOC_0001-0293 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Civil Monetary Penalty Inflation Adjustment | Rule | 2022-02-23T05:00:00Z | 2022 | 2 | 2022-02-23T05:00:00Z | 2022-02-23T12:50:58Z | 2022-03697 | 0 | 0 | 0900006484f9d0b1 |
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;