documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAR-2014-0051" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2014-0051-0009 | FAR | FAC Introduction and Federal Acquisition Regulations: Prohibition on Contracting with Inverted Domestic Corporations-Representation and Notification; FAR Case 2014-0051 FAR-2014-0051 | Federal Acquisition Regulations: Federal Acquisition Circular 2005-80; Introduction | Rule | Final Rule | 2015-01-29T05:00:00Z | 2015 | 1 | 2015-01-29T05:00:00Z | 2015-02-03T20:48:28Z | 2015-01523 | 0 | 0 | 09000064819e62ce | |
| FAR-2014-0051-0008 | FAR | FAC Introduction and Federal Acquisition Regulations: Prohibition on Contracting with Inverted Domestic Corporations-Representation and Notification; FAR Case 2014-0051 FAR-2014-0051 | Federal Acquisition Regulations: Federal Acquisition Circular 2005-79; Introduction | Rule | Final Rule | 2014-12-15T05:00:00Z | 2014 | 12 | 2014-12-15T05:00:00Z | 2015-02-03T20:24:28Z | 2014-29139 | 0 | 0 | 0900006481976736 | |
| FAR-2014-0051-0007 | FAR | FAC Introduction and Federal Acquisition Regulations: Prohibition on Contracting with Inverted Domestic Corporations-Representation and Notification; FAR Case 2014-0051 FAR-2014-0051 | Federal Acquisition Regulations: Federal Acquisition Circular 2005-78; Introduction | Rule | Final Rule | 2014-11-25T05:00:00Z | 2014 | 11 | 2014-11-25T05:00:00Z | 2015-02-03T20:16:51Z | 2014-27656 | 0 | 0 | 0900006481944a65 | |
| FAR-2014-0051-0005 | FAR | FAC Introduction and Federal Acquisition Regulations: Prohibition on Contracting with Inverted Domestic Corporations-Representation and Notification; FAR Case 2014-0051 FAR-2014-0051 | Federal Acquisition Regulations: Introduction | Rule | Final Rule | 2014-10-14T04:00:00Z | 2014 | 10 | 2014-10-14T04:00:00Z | 2014-11-18T14:56:23Z | 2014-24233 | 0 | 0 | 09000064818bca56 | |
| FAR-2014-0051-0004 | FAR | FAC Introduction and Federal Acquisition Regulations: Prohibition on Contracting with Inverted Domestic Corporations-Representation and Notification; FAR Case 2014-0051 FAR-2014-0051 | Federal Acquisition Regulation: Federal Acquisition Circular 2005-76; Introduction | Rule | Final Rule | 2014-07-25T04:00:00Z | 2014 | 7 | 2014-07-25T04:00:00Z | 2014-09-10T13:51:46Z | 2014-17496 | 0 | 0 | 09000064817e1533 | |
| FAR-2014-0051-0001 | FAR | FAC Introduction and Federal Acquisition Regulations: Prohibition on Contracting with Inverted Domestic Corporations-Representation and Notification; FAR Case 2014-0051 FAR-2014-0051 | Federal Acquisition Regulations: Federal Acquisition Circular 2005-75; Introduction | Rule | Final Rule | 2014-06-24T04:00:00Z | 2014 | 6 | 2014-06-24T04:00:00Z | 2014-07-08T17:08:12Z | 2014-14380 | 0 | 0 | 090000648175e9bb | |
| FAR-2014-0051-0002 | FAR | FAC Introduction and Federal Acquisition Regulations: Prohibition on Contracting with Inverted Domestic Corporations-Representation and Notification; FAR Case 2014-0051 FAR-2014-0051 | Federal Acquisition Regulations: Federal Acquisition Circular 2005-74; Introduction | Rule | Final Rule | 2014-05-30T04:00:00Z | 2014 | 5 | 2014-05-30T04:00:00Z | 2014-09-10T13:42:10Z | 2014-12411 | 0 | 0 | 090000648171f52d | |
| FAR-2014-0051-0003 | FAR | FAC Introduction and Federal Acquisition Regulations: Prohibition on Contracting with Inverted Domestic Corporations-Representation and Notification; FAR Case 2014-0051 FAR-2014-0051 | Federal Acquisition Regulation: Federal Acquisition Circular 2005-73; Introduction | Rule | Final Rule | 2014-04-29T04:00:00Z | 2014 | 4 | 2014-04-29T04:00:00Z | 2014-09-10T13:33:39Z | 2014-08743 | 0 | 0 | 09000064816d4167 |
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;