documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "OMB_FRDOC_0001" and posted_year = 2010 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OMB_FRDOC_0001-0076 | OMB | Recently Posted OMB Rules and Notices. OMB_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Generic Clearance for the Collection of Qualitative Feedback on Agency Service Delivery | Notice | 2010-12-22T05:00:00Z | 2010 | 12 | 2010-12-22T05:00:00Z | 2011-02-23T04:59:59Z | 2010-12-22T14:06:04Z | 2010-32084 | 0 | 0 | 0900006480bbdd97 | |
| OMB_FRDOC_0001-0071 | OMB | Recently Posted OMB Rules and Notices. OMB_FRDOC_0001 | Compliance Assistance Resources and Points of Contact Available to Small Businesses | Notice | 2010-08-03T04:00:00Z | 2010 | 8 | 2010-08-03T04:00:00Z | 2010-08-03T13:01:02Z | 2010-18957 | 0 | 0 | 0900006480b2738c | ||
| OMB_FRDOC_0001-0070 | OMB | Recently Posted OMB Rules and Notices. OMB_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2010-08-03T04:00:00Z | 2010 | 8 | 2010-08-03T04:00:00Z | 2010-09-03T03:59:59Z | 2010-08-03T13:00:09Z | 2010-18958 | 0 | 0 | 0900006480b27349 | |
| OMB_FRDOC_0001-0066 | OMB | Recently Posted OMB Rules and Notices. OMB_FRDOC_0001 | Meetings: Presidential Memorandum on Federal Small Business Contracting | Notice | 2010-06-14T04:00:00Z | 2010 | 6 | 2010-06-14T04:00:00Z | 2010-06-29T03:59:59Z | 2024-11-13T18:41:19Z | 2010-14144 | 0 | 0 | 0900006480b01856 | |
| OMB_FRDOC_0001-0061 | OMB | Recently Posted OMB Rules and Notices. OMB_FRDOC_0001 | Work Reserved for Performance by Federal Government Employees; Correction | Notice | 2010-04-19T04:00:00Z | 2010 | 4 | 2022-04-21T14:13:59Z | 2010-08824 | 0 | 0 | 0900006480adaf4c |
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;