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 = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0175 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Local Union Report; Hearing Cancellation | Notice | 2014-12-08T05:00:00Z | 2014 | 12 | 2014-12-08T05:00:00Z | 2014-12-08T14:35:00Z | 2014-28668 | 0 | 0 | 090000648196402a | ||
| EEOC_FRDOC_0001-0174 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: State and Local Government Information Report; Hearing Cancellation | Notice | 2014-12-08T05:00:00Z | 2014 | 12 | 2014-12-08T05:00:00Z | 2014-12-08T14:34:51Z | 2014-28669 | 0 | 0 | 0900006481964026 | ||
| EEOC_FRDOC_0001-0173 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | SES Performance Review Board; Member Appointments | Notice | 2014-10-15T04:00:00Z | 2014 | 10 | 2014-10-15T04:00:00Z | 2014-10-15T13:25:26Z | 2014-24448 | 0 | 0 | 09000064818bf1db | ||
| EEOC_FRDOC_0001-0170 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2014-08-13T04:00:00Z | 2014 | 8 | 2014-08-13T04:00:00Z | 2014-08-13T12:18:44Z | 2014-19135 | 0 | 0 | 090000648181f194 | ||
| EEOC_FRDOC_0001-0167 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Elementary-Secondary Staff Information Report | Notice | 2014-05-06T04:00:00Z | 2014 | 5 | 2014-05-06T04:00:00Z | 2014-06-06T03:59:59Z | 2014-05-16T01:05:58Z | 2014-10354 | 0 | 0 | 09000064816e4130 | |
| EEOC_FRDOC_0001-0166 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Adjusting the Penalty for Violation of Notice Posting Requirements | Rule | 2014-03-19T04:00:00Z | 2014 | 3 | 2014-03-19T04:00:00Z | 2014-03-19T13:28:46Z | 2014-06006 | 0 | 0 | 090000648166ebf0 | ||
| EEOC_FRDOC_0001-0165 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Waivers of Rights and Claims in Settlement of a Charge or Lawsuit under the Age Discrimination in Employment Act; Corrections | Rule | 2014-03-11T04:00:00Z | 2014 | 3 | 2014-03-11T04:00:00Z | 2014-03-11T12:27:15Z | 2014-05274 | 0 | 0 | 090000648165e186 | ||
| EEOC_FRDOC_0001-0164 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2014-03-10T04:00:00Z | 2014 | 3 | 2014-03-10T04:00:00Z | 2014-03-10T13:24:23Z | 2014-05141 | 0 | 0 | 090000648165ac2b | ||
| EEOC_FRDOC_0001-0163 | EEOC | Recently Posted EEOC Rules and Notices EEOC_FRDOC_0001 | Regulations to Implement the Equal Employment Provisions of the Americans With Disabilities Act; CFR Correction | Rule | 2014-01-29T05:00:00Z | 2014 | 1 | 2014-01-29T05:00:00Z | 2014-01-29T14:21:40Z | 2014-01850 | 0 | 0 | 0900006481531c65 |
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;