documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NLRB_FRDOC_0001" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_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-0087 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Meetings; Sunshine Act, | Notice | 2015-12-31T05:00:00Z | 2015 | 12 | 2015-12-31T05:00:00Z | 2015-12-31T13:13:42Z | 2015-33089 | 0 | 0 | 0900006481dde92a | ||
| NLRB_FRDOC_0001-0086 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Appointments of Individuals to Serve as Members of Performance Review Boards; Correction, | Notice | 2015-12-15T05:00:00Z | 2015 | 12 | 2015-12-15T05:00:00Z | 2015-12-15T13:53:31Z | 2015-31421 | 0 | 0 | 0900006481da72ce | ||
| NLRB_FRDOC_0001-0085 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Rules and Regulations, | Rule | 2015-12-14T05:00:00Z | 2015 | 12 | 2015-12-14T05:00:00Z | 2015-12-14T14:20:36Z | 2015-31339 | 0 | 0 | 0900006481da20f1 | ||
| NLRB_FRDOC_0001-0084 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Appointments of Individuals to Serve as Members of Performance Review Boards | Notice | 2015-11-25T05:00:00Z | 2015 | 11 | 2015-11-25T05:00:00Z | 2015-11-25T13:45:18Z | 2015-30031 | 0 | 0 | 0900006481d7290b | ||
| NLRB_FRDOC_0001-0083 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Statement of Organization and Functions; Restructuring of Field Organization | Notice | 2015-10-28T04:00:00Z | 2015 | 10 | 2015-10-28T04:00:00Z | 2015-10-28T13:06:18Z | 2015-27392 | 0 | 0 | 0900006481cf5462 | ||
| NLRB_FRDOC_0001-0082 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | National Labor Relations Board FY 2014 Service Contract Inventory; Availability | Notice | 2015-06-08T04:00:00Z | 2015 | 6 | 2015-06-08T04:00:00Z | 2015-06-08T12:21:41Z | 2015-13843 | 0 | 0 | 0900006481b20f1e | ||
| NLRB_FRDOC_0001-0081 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2015-06-02T04:00:00Z | 2015 | 6 | 2015-06-02T04:00:00Z | 2015-06-02T13:00:00Z | 2015-13429 | 0 | 0 | 0900006481b1524c | ||
| NLRB_FRDOC_0001-0080 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Representation - Case Procedures | Rule | 2015-04-10T04:00:00Z | 2015 | 4 | 2015-04-10T04:00:00Z | 2015-04-10T18:50:50Z | 2015-08159 | 0 | 0 | 0900006481a9e2ee | ||
| NLRB_FRDOC_0001-0079 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2015-04-01T04:00:00Z | 2015 | 4 | 2015-04-01T04:00:00Z | 2015-04-01T13:02:34Z | 2015-07565 | 0 | 0 | 0900006481a858e7 | ||
| NLRB_FRDOC_0001-0078 | NLRB | Recently Posted NLRB Rules and Notices. NLRB_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2015-01-08T05:00:00Z | 2015 | 1 | 2015-01-08T05:00:00Z | 2015-01-08T15:05:47Z | 2015-00131 | 0 | 0 | 09000064819acea3 |
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;