documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "EEOC", document_type = "Notice" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, comment_end_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-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-2018-0003-0005 | EEOC | Recordkeeping Requirements under Title VII, the ADA, and GINA EEOC-2018-0003 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2018-06-01T04:00:00Z | 2018 | 6 | 2018-06-01T04:00:00Z | 2018-07-03T03:59:59Z | 2018-06-07T18:21:43Z | 2018-11798 | 0 | 0 | 090000648331e74d | |
| 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-2018-0002-0001 | EEOC | Recordkeeping Requirements of the Uniform Guidelines on Employee Selection Procedures EEOC-2018-0002 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2018-02-22T05:00:00Z | 2018 | 2 | 2018-02-22T05:00:00Z | 2018-04-24T03:59:59Z | 2018-02-22T17:10:54Z | 2018-03643 | 0 | 0 | 0900006482f51f02 | |
| EEOC-2018-0003-0001 | EEOC | Recordkeeping Requirements under Title VII, the ADA, and GINA EEOC-2018-0003 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2018-02-20T05:00:00Z | 2018 | 2 | 2018-02-20T05:00:00Z | 2018-04-24T03:59:59Z | 2018-04-13T01:03:47Z | 2018-03427 | 0 | 0 | 0900006482f459fe | |
| EEOC-2018-0001-0001 | EEOC | Extension without Change: State and Local Information Report - EEO-4 EEOC-2018-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2018-02-02T05:00:00Z | 2018 | 2 | 2018-02-02T05:00:00Z | 2018-04-04T03:59:59Z | 2018-04-03T13:01:50Z | 2018-02069 | 0 | 0 | 0900006482eb7535 |
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;