documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "GSA-GSA-2011-0001" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-GSA-2011-0001-0010 | GSA | Information Collections: General Services Administration GSA-GSA-2011-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Acquisition Regulation; Contractor's Qualifications and Financial Information; OMB Control No. 3090-0007 | Notice | Notice of Intent | 2012-05-14T04:00:00Z | 2012 | 5 | 2012-05-14T04:00:00Z | 2012-06-14T03:59:59Z | 2012-07-03T19:51:17Z | 2012-11604 | 0 | 0 | 090000648100d7a1 |
| GSA-GSA-2011-0001-0008 | GSA | Information Collections: General Services Administration GSA-GSA-2011-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Acquisition Regulations; Solicitation Provisions and Contract Clauses, Placement of Orders Clause, etc.; OMB Control No. 3090-0248 | Notice | Notice of Intent | 2012-04-30T04:00:00Z | 2012 | 4 | 2012-04-30T04:00:00Z | 2012-05-31T03:59:59Z | 2012-05-07T20:10:49Z | 2012-10303 | 0 | 0 | 0900006481000d8b |
| GSA-GSA-2011-0001-0009 | GSA | Information Collections: General Services Administration GSA-GSA-2011-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Acquisition Regulations; Quality Assurance; OMB Control No. 3090–0027 | Notice | Notice of Intent | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T04:00:00Z | 2012-04-28T03:59:59Z | 2012-05-07T21:01:10Z | 2012-07422 | 0 | 0 | 0900006480fe2f92 |
| GSA-GSA-2011-0001-0006 | GSA | Information Collections: General Services Administration GSA-GSA-2011-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2012-02-01T05:00:00Z | 2012 | 2 | 2012-02-01T05:00:00Z | 2012-04-03T03:59:59Z | 2012-04-02T19:32:30Z | 2012-02094 | 0 | 0 | 0900006480fab148 | |
| GSA-GSA-2011-0001-0007 | GSA | Information Collections: General Services Administration GSA-GSA-2011-0001 | General Services Administration Acquisition Regulation; GSAR 516–506, Solicitation Provisions and Contract Clauses; 552.216–72, Placement of Orders Clause; and 552.216–73, Ordering Information Clause; Information Collection 3090-0248 | Notice | Notice of Intent | 2012-01-24T05:00:00Z | 2012 | 1 | 2012-01-24T05:00:00Z | 2012-03-27T03:59:59Z | 2012-04-12T12:55:24Z | 2012-01311 | 0 | 0 | 0900006480fa24f6 |
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;