documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "FAR-2011-0079" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FAR-2011-0079-0057 | FAR | Federal Acquisition Regulation; Information Collections FAR-2011-0079 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Reporting Executive Compensation and First-Tier Subcontract Awards; OMB Control No. 9000-0177 | Notice | Notice of Intent | 2012-04-17T04:00:00Z | 2012 | 4 | 2012-04-17T04:00:00Z | 2012-05-18T03:59:59Z | 2012-10-31T14:34:42Z | 2012-09112 | 0 | 0 | 0900006480ff2766 |
| FAR-2011-0079-0055 | FAR | Federal Acquisition Regulation; Information Collections FAR-2011-0079 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Federal Acquisition Regulations; Material and Workmanship; OMB Control No. 9000–0062 | Notice | Notice of Intent | 2012-04-05T04:00:00Z | 2012 | 4 | 2012-04-05T04:00:00Z | 2012-05-08T03:59:59Z | 2012-04-25T20:55:44Z | 2012-08143 | 0 | 0 | 0900006480fe9cac |
| FAR-2011-0079-0056 | FAR | Federal Acquisition Regulation; Information Collections FAR-2011-0079 | Agency Information Collection Activities; Prposals, Submissions, and Approvals: Progress Payments; OMB Control No. 9000–0010 | Notice | Notice of Intent | 2012-03-30T04:00:00Z | 2012 | 3 | 2012-03-30T04:00:00Z | 2012-05-01T03:59:59Z | 2012-06-07T12:19:06Z | 2012-07655 | 0 | 0 | 0900006480fe4de0 |
| FAR-2011-0079-0039 | FAR | Federal Acquisition Regulation; Information Collections FAR-2011-0079 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Federal Acquisition Regulation; Past Performance Information; OMB Control 9000-0142 | Notice | Request for Comments | 2012-02-09T05:00:00Z | 2012 | 2 | 2012-02-09T05:00:00Z | 2012-03-13T03:59:59Z | 2012-02-13T20:21:51Z | 2012-03050 | 0 | 0 | 0900006480fb0fc7 |
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;