documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FAR-FAR-2008-0002" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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-FAR-2008-0002-0052 | FAR | Federal Acquisition Regulation; Proposed Rule FAR-FAR-2008-0002 | Federal Acquisition Regulation (FAR): FAR Case 2005-032, Contractor's Request for Progress Payments | Rule | Final | 2009-06-15T04:00:00Z | 2009 | 6 | 2009-06-15T04:00:00Z | 2014-01-18T16:55:22Z | E9-13977 | 0 | 0 | 09000064809cf294 | |
| FAR-FAR-2008-0002-0042 | FAR | Federal Acquisition Regulation; Proposed Rule FAR-FAR-2008-0002 | FAR Case 2007-018, Organizational Conflicts of Interest (Reopening of Comment Period) | Proposed Rule | Proposed Rules | 2008-06-18T04:00:00Z | 2008 | 6 | 2008-06-18T04:00:00Z | 2008-07-19T03:59:59Z | 2014-01-17T22:03:30Z | E8-13724 | 0 | 0 | 090000648062c9f9 |
| FAR-FAR-2008-0002-0041 | FAR | Federal Acquisition Regulation; Proposed Rule FAR-FAR-2008-0002 | FAR Case 2007-017; Service Contractor Employee Personal Conflicts of Interest (Reopening of Comment Period) | Proposed Rule | Proposed Rules | 2008-06-17T04:00:00Z | 2008 | 6 | 2008-06-17T04:00:00Z | 2008-07-18T03:59:59Z | 2014-01-17T22:00:09Z | E8-13634 | 0 | 0 | 090000648062a695 |
| FAR-FAR-2008-0002-0001 | FAR | Federal Acquisition Regulation; Proposed Rule FAR-FAR-2008-0002 | FAR Case 2005-032, Contractors Request for Progress Payments (Proposed Rule) | Proposed Rule | Proposed Rules | 2008-04-08T04:00:00Z | 2008 | 4 | 2008-04-08T04:00:00Z | 2008-06-10T03:59:59Z | 2014-01-18T17:29:43Z | E8-07293 | 0 | 0 | 090000648046e40b |
| FAR-FAR-2008-0002-0027 | FAR | Federal Acquisition Regulation; Proposed Rule FAR-FAR-2008-0002 | FAR Case 2006-022, Contractor Performance Information (Proposed Rule) | Proposed Rule | Proposed Rules | 2008-04-02T04:00:00Z | 2008 | 4 | 2008-04-02T04:00:00Z | 2008-06-03T03:59:59Z | 2014-01-17T20:42:44Z | E8-06795 | 0 | 0 | 090000648042745c |
| FAR-FAR-2008-0002-0003 | FAR | Federal Acquisition Regulation; Proposed Rule FAR-FAR-2008-0002 | FAR Case 2007-018; Organizational Conflicts of Interest | Proposed Rule | Advanced Notice | 2008-03-26T04:00:00Z | 2008 | 3 | 2008-03-26T04:00:00Z | 2008-05-28T03:59:59Z | 2014-01-17T21:44:57Z | E8-06096 | 0 | 0 | 0900006480409294 |
| FAR-FAR-2008-0002-0002 | FAR | Federal Acquisition Regulation; Proposed Rule FAR-FAR-2008-0002 | FAR Case 2007-017; Service Contractor Employee Personal Conflicts of Interest (Advance Notice of Proposed Rulemaking) | Proposed Rule | Advanced Notice | 2008-03-26T04:00:00Z | 2008 | 3 | 2008-03-26T04:00:00Z | 2008-05-28T03:59:59Z | 2014-01-17T21:44:57Z | E8-06100 | 0 | 0 | 0900006480409211 |
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;