documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NLRB_FRDOC_0001" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NLRB_FRDOC_0001-0186 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Performance Review Board Members | Notice | 2024-12-10T05:00:00Z | 2024 | 12 | 2024-12-10T05:00:00Z | 2024-12-10T13:50:32Z | 2024-28877 | 0 | 0 | 090000648685f311 | ||
| NLRB_FRDOC_0001-0185 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Performance Review Board Members | Notice | 2024-10-29T04:00:00Z | 2024 | 10 | 2024-10-29T04:00:00Z | 2024-10-29T11:42:45Z | 2024-25036 | 0 | 0 | 09000064867ea7bf | ||
| NLRB_FRDOC_0001-0184 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2024-09-10T04:00:00Z | 2024 | 9 | 2024-09-10T04:00:00Z | 2024-09-10T12:17:02Z | 2024-20572 | 0 | 0 | 09000064866e09fa | ||
| NLRB_FRDOC_0001-0183 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Representation—Case Procedures: Election Bars; Proof of Majority Support in Construction Industry Collective-Bargaining Relationships | Rule | 2024-08-01T04:00:00Z | 2024 | 8 | 2024-08-01T04:00:00Z | 2024-08-01T12:13:28Z | 2024-16535 | 0 | 0 | 09000064866114d4 | ||
| NLRB_FRDOC_0001-0182 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Rules and Regulations | Rule | 2024-06-13T04:00:00Z | 2024 | 6 | 2024-06-13T04:00:00Z | 2024-06-13T12:14:38Z | 2024-13004 | 0 | 0 | 09000064865b3a79 | ||
| NLRB_FRDOC_0001-0180 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Representation-Case Procedures | Rule | 2024-04-12T04:00:00Z | 2024 | 4 | 2024-04-12T04:00:00Z | 2024-04-12T12:06:57Z | 2024-07819 | 0 | 0 | 09000064864d299a | ||
| NLRB_FRDOC_0001-0178 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Privacy Act; Systems of Records | Notice | 2024-04-09T04:00:00Z | 2024 | 4 | 2024-04-09T04:00:00Z | 2024-05-10T03:59:59Z | 2024-04-10T01:00:39Z | 2024-07324 | 0 | 0 | 09000064864c297e | |
| NLRB_FRDOC_0001-0179 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Privacy Act; Systems of Records | Rule | 2024-04-09T04:00:00Z | 2024 | 4 | 2024-04-09T04:00:00Z | 2024-05-10T03:59:59Z | 2024-04-09T12:04:51Z | 2024-07323 | 0 | 0 | 09000064864c2a1e | |
| NLRB_FRDOC_0001-0177 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Unified Agenda of Federal Regulatory and Deregulatory Actions | Proposed Rule | 2024-02-09T05:00:00Z | 2024 | 2 | 2024-02-09T05:00:00Z | 2024-02-09T14:48:36Z | 2024-00467 | 0 | 0 | 09000064863f782d |
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;