documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FAR-2017-0053" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FAR-2017-0053-0048 | FAR | Federal Acquisition Regulation (FAR) Information Collections - 2017 FAR-2017-0053 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Past Performance Information | Notice | Request for Comments | 2018-02-20T05:00:00Z | 2018 | 2 | 2018-02-20T05:00:00Z | 2018-03-23T03:59:59Z | 2018-03-15T13:01:07Z | 2018-03337 | 0 | 0 | 0900006482f45a47 |
| FAR-2017-0053-0047 | FAR | Federal Acquisition Regulation (FAR) Information Collections - 2017 FAR-2017-0053 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Prohibition of Acquisition of Products Produced by Forced or Indentured Child Labor | Notice | Request for Comments | 2018-02-09T05:00:00Z | 2018 | 2 | 2018-02-09T05:00:00Z | 2018-03-13T03:59:59Z | 2018-03-11T03:00:36Z | 2018-02587 | 0 | 0 | 0900006482f0606d |
| FAR-2017-0053-0045 | FAR | Federal Acquisition Regulation (FAR) Information Collections - 2017 FAR-2017-0053 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Certification of Independent Price Determination, Contractor Code of Business Ethics and Compliance, and Preventing Personal Conflicts of Interest | Notice | Request for Comments | 2018-01-19T05:00:00Z | 2018 | 1 | 2018-01-19T05:00:00Z | 2018-02-21T04:59:59Z | 2018-02-21T02:05:48Z | 2018-00934 | 0 | 0 | 0900006482e2ecbd |
| FAR-2017-0053-0046 | FAR | Federal Acquisition Regulation (FAR) Information Collections - 2017 FAR-2017-0053 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Organization and Direction of Work | Notice | Request for Comments | 2018-01-19T05:00:00Z | 2018 | 1 | 2018-01-19T05:00:00Z | 2018-02-21T04:59:59Z | 2018-01-19T16:49:54Z | 2018-00931 | 0 | 0 | 0900006482e2ed41 |
| FAR-2017-0053-0044 | FAR | Federal Acquisition Regulation (FAR) Information Collections - 2017 FAR-2017-0053 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Place of Performance | Notice | Request for Comments | 2018-01-18T05:00:00Z | 2018 | 1 | 2018-01-18T05:00:00Z | 2018-02-21T04:59:59Z | 2018-01-28T03:22:31Z | 2018-00778 | 0 | 0 | 0900006482e260ff |
| FAR-2017-0053-0043 | FAR | Federal Acquisition Regulation (FAR) Information Collections - 2017 FAR-2017-0053 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | Request for Comments | 2018-01-18T05:00:00Z | 2018 | 1 | 2018-01-18T05:00:00Z | 2018-02-21T04:59:59Z | 2018-01-28T02:01:25Z | 2018-00779 | 0 | 0 | 0900006482e25f32 |
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;