documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "FAR-FAR-2008-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, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FAR-FAR-2008-0001-1647 | FAR | 2008/2009/2010 Federal Acquisition Regulation (FAR) Rules FAR-FAR-2008-0001 | Federal Acquisition Regulation: FAR Case 2005-040, Electronic Subcontracting Reporting System | Rule | 2010-06-16T04:00:00Z | 2010 | 6 | 2010-06-16T04:00:00Z | 2011-06-11T17:20:14Z | 2010-14180 | 0 | 0 | 0900006480b02baa | ||
| FAR-FAR-2008-0001-1648 | FAR | 2008/2009/2010 Federal Acquisition Regulation (FAR) Rules FAR-FAR-2008-0001 | Federal Acquisition Regulation: FAR Case 2008-003, Public Disclosure of Justification and Approval Documents for Noncompetitive Contracts, etc. | Rule | Final | 2010-06-16T04:00:00Z | 2010 | 6 | 2010-06-16T04:00:00Z | 2011-06-11T17:20:14Z | 2010-14216 | 0 | 0 | 0900006480b02b3e | |
| FAR-FAR-2008-0001-1645 | FAR | 2008/2009/2010 Federal Acquisition Regulation (FAR) Rules FAR-FAR-2008-0001 | Federal Acquisition Regulation: FAR Case 2008-006, Enhanced Competition for Task- and Delivery-Order Contracts, etc. | Rule | Final | 2010-03-19T04:00:00Z | 2010 | 3 | 2010-03-19T04:00:00Z | 2011-06-11T17:20:14Z | 2010-05989 | 0 | 0 | 0900006480ac180f | |
| FAR-FAR-2008-0001-1646 | FAR | 2008/2009/2010 Federal Acquisition Regulation (FAR) Rules FAR-FAR-2008-0001 | Federal Acquisition Regulation: FAR Case 2008-012, Clarification of Submission of Cost or Pricing Data on Non-Commercial Modifications of Commercial Items | Rule | Final | 2010-03-19T04:00:00Z | 2010 | 3 | 2010-03-19T04:00:00Z | 2011-06-11T17:20:15Z | 2010-05986 | 0 | 0 | 0900006480ac18e4 |
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;