documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAR-FAR-2009-0001" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2009-0001-0008 | FAR | Federal Acquisition Regulation; Federal Acquisition Circular; Introduction FAR-FAR-2009-0001 | Federal Acquisition Regulation; Federal Acquisition Circular 2005-38; Introduction | Rule | Final | 2009-12-10T05:00:00Z | 2009 | 12 | 2009-12-10T05:00:00Z | 2010-02-07T03:07:58Z | E9-28928 | 0 | 0 | 0900006480a684d7 | |
| FAR-FAR-2009-0001-0006 | FAR | Federal Acquisition Regulation; Federal Acquisition Circular; Introduction FAR-FAR-2009-0001 | Federal Acquisition Regulation; Federal Acquisition Circular 2005-37; Introduction | Rule | Final | 2009-10-14T04:00:00Z | 2009 | 10 | 2009-10-14T04:00:00Z | 2009-11-09T21:51:30Z | E9-24551 | 0 | 0 | 0900006480a41832 | |
| FAR-FAR-2009-0001-0007 | FAR | Federal Acquisition Regulation; Federal Acquisition Circular; Introduction FAR-FAR-2009-0001 | Federal Acquisition Regulation: Federal Acquisition Circular 2005-36; Introduction | Rule | Final | 2009-08-11T04:00:00Z | 2009 | 8 | 2009-08-11T04:00:00Z | 2010-01-11T16:31:54Z | E9-19161 | 0 | 0 | 0900006480a057e1 | |
| FAR-FAR-2009-0001-0005 | FAR | Federal Acquisition Regulation; Federal Acquisition Circular; Introduction FAR-FAR-2009-0001 | Federal Acquisition Regulation; Federal Acquisition Circular 2005-34; Introduction | Rule | 2009-08-03T04:00:00Z | 2009 | 8 | 2009-08-03T04:00:00Z | 2009-08-20T01:04:11Z | E9-15437 | 0 | 0 | 09000064809fde99 | ||
| FAR-FAR-2009-0001-0004 | FAR | Federal Acquisition Regulation; Federal Acquisition Circular; Introduction FAR-FAR-2009-0001 | Federal Acquisition Regulation; Federal Acquisition Circular 2005-35; Introduction | Rule | Final | 2009-07-14T04:00:00Z | 2009 | 7 | 2009-07-14T04:00:00Z | 2009-07-16T22:03:58Z | E9-16617 | 0 | 0 | 09000064809f0e39 | |
| FAR-FAR-2009-0001-0003 | FAR | Federal Acquisition Regulation; Federal Acquisition Circular; Introduction FAR-FAR-2009-0001 | Federal Acquisition Regulation (FAR): Federal Acquisition Circular 2005-33; Introduction | Rule | Final | 2009-06-15T04:00:00Z | 2009 | 6 | 2009-06-15T04:00:00Z | 2009-06-16T12:10:03Z | E9-13979 | 0 | 0 | 09000064809cf360 | |
| FAR-FAR-2009-0001-0002 | FAR | Federal Acquisition Regulation; Federal Acquisition Circular; Introduction FAR-FAR-2009-0001 | Federal Acquisition Regulation; Federal Acquisition Circular 2005-32; Introduction | Rule | Final | 2009-03-31T04:00:00Z | 2009 | 3 | 2009-03-31T04:00:00Z | 2009-04-12T15:33:22Z | E9-07027 | 0 | 0 | 09000064809393b1 | |
| FAR-FAR-2009-0001-0001 | FAR | Federal Acquisition Regulation; Federal Acquisition Circular; Introduction FAR-FAR-2009-0001 | Federal Acquisition Regulation (FAR): Introduction | Rule | Final | 2009-03-19T04:00:00Z | 2009 | 3 | 2009-03-19T04:00:00Z | 2009-03-24T14:38:30Z | E9-5874 | 0 | 0 | 090000648091fa7e | |
| FAR-FAR-2009-0001-0009 | FAR | Federal Acquisition Regulation; Federal Acquisition Circular; Introduction FAR-FAR-2009-0001 | Federal Acquisition Regulation: FAR Case 2000-305, Commercially Available Off-the-Shelf (COTS) Items | Rule | Final Rule | 2009-01-15T05:00:00Z | 2009 | 1 | 2009-01-15T05:00:00Z | 2012-12-13T19:34:28Z | E9-00551 | 0 | 0 | 09000064808211c9 |
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;