documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "GSA-GSAR-2006-0008" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| GSA-GSAR-2006-0008-0001 | GSA | 2006 General Services Administration Notices GSA-GSAR-2006-0008 | SES Performance Review Board | Notice | Notice of Intent | 2006-10-03T16:29:36Z | 2006 | 10 | 2006-10-03T16:29:36Z | 2017-09-18T14:23:58Z | E6-16254 | 0 | 0 | 09000064801d100f | |
| GSA-GSAR-2006-0008-0006 | GSA | 2006 General Services Administration Notices GSA-GSAR-2006-0008 | Establishment of a Transaction Fee for Transportation Services Provided for the GSA, Office of Global Supply | Notice | General Notice | 2006-08-25T20:49:52Z | 2006 | 8 | 2006-08-25T20:49:52Z | 2017-09-18T14:23:58Z | E6-14179 | 0 | 0 | 09000064801bec66 | |
| GSA-GSAR-2006-0008-0005 | GSA | 2006 General Services Administration Notices GSA-GSAR-2006-0008 | Establishment of a Transaction Fee for Transportation Services Provided for the GSA, Office of Global Supply | Notice | General Notice | 2006-07-06T20:45:15Z | 2006 | 7 | 2006-07-06T20:45:15Z | 2017-09-18T14:23:58Z | E6-10579 | 0 | 0 | 0900006480196777 | |
| GSA-GSAR-2006-0008-0008 | GSA | 2006 General Services Administration Notices GSA-GSAR-2006-0008 | Notification of a Public Meeting of the Small Business Advisory Committee | Notice | Public Meetings | 2006-04-27T21:07:30Z | 2006 | 4 | 2006-04-27T21:07:30Z | 2017-09-18T14:23:58Z | E6-06360 | 0 | 0 | 090000648016671a | |
| GSA-GSAR-2006-0008-0007 | GSA | 2006 General Services Administration Notices GSA-GSAR-2006-0008 | Office of Small Business Utilization; Small Business Advisory Committee; Notification of a Public Meeting of the Small Business Advisory Committee | Notice | Public Meetings | 2006-02-06T22:05:34Z | 2006 | 2 | 2006-02-06T22:05:34Z | 2017-09-18T14:23:58Z | E6-01525 | 0 | 0 | 09000064801284e4 | |
| GSA-GSAR-2006-0008-0002 | GSA | 2006 General Services Administration Notices GSA-GSAR-2006-0008 | 2006 Travel and Relocation Innovation Award | Notice | Notice of Intent | 2006-01-12T17:59:26Z | 2006 | 1 | 2006-01-12T17:59:26Z | 2017-09-18T14:23:58Z | E6-00168 | 0 | 0 | 090000648010f4a3 |
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;