documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "GSA", document_type = "Rule" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| GSA-GSBCA-2007-0009-0001 | GSA | General Services Administration Civilian Board of Contract Appeals GSA-GSBCA-2007-0009 | BCA Case 2006-61-1; Rules of Procedure of the Civilian Board of Contract Appeals | Rule | Interim | 2007-07-05T04:00:00Z | 2007 | 7 | 2007-07-05T04:00:00Z | 2007-09-29T03:59:59Z | 2017-09-18T14:28:47Z | 07-03064 | 0 | 0 | 090000648025d6a9 |
| GSA-FMR-2007-0001-0002 | GSA | 2007 plus related documents - General Services Administration, Federal Management Regulation (FMR) Rules GSA-FMR-2007-0001 | FMR Amendment 2007-02, FMR Case 2007-102-1, Donation of Surplus Personal Property--Historic Light Stations (Final Rule) | Rule | Final | 2007-03-16T04:00:00Z | 2007 | 3 | 2007-03-16T04:00:00Z | 2017-09-18T14:26:24Z | E7-04845 | 0 | 0 | 09000064802148ba | |
| GSA-FMR-2007-0001-0001 | GSA | 2007 plus related documents - General Services Administration, Federal Management Regulation (FMR) Rules GSA-FMR-2007-0001 | Federal Management Regulation; FMR Case 2004-102-1, Disposition of Personal Property | Rule | Final | 2007-03-07T05:00:00Z | 2007 | 3 | 2017-09-18T14:26:24Z | E7-03958 | 0 | 0 | 090000648020e6f7 | ||
| GSA-GSAR-2007-0003-0001 | GSA | 2007 General Services Administration (GSA), General Services Acquisition Regulation (GSAR) Rules GSA-GSAR-2007-0003 | GSAR Amendment 2007-01; GSAR Case 2006-G522, Federal Supply Schedule Contracts-Recovery Purchasing by State and Local Governments Through Federal Supply Schedules | Rule | Interim | 2007-02-01T05:00:00Z | 2007 | 2 | 2007-02-01T05:00:00Z | 2007-04-03T03:59:59Z | 2017-09-18T14:26:31Z | E7-01641 | 0 | 0 | 09000064801f936b |
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;