documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "GSA-FMR-2008-0001" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-FMR-2008-0001-0022 | GSA | 2008 General Services Administration, Federal Management Regulation (FMR) Rules GSA-FMR-2008-0001 | Federal Management Regulations: Mail Management; Requirements for Agencies (Change 2014–02; FMR Case 2008–102–4) | Rule | Final Rule | 2014-06-11T04:00:00Z | 2014 | 6 | 2014-06-11T04:00:00Z | 2017-09-18T14:24:17Z | 2014-13592 | 0 | 0 | 090000648173a73b | |
| GSA-FMR-2008-0001-0009 | GSA | 2008 General Services Administration, Federal Management Regulation (FMR) Rules GSA-FMR-2008-0001 | Federal Management Regulations: Mail Management; Financial Requirements for All Agencies; FMR Case 2008-102-4 | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2013-05-13T04:00:00Z | 2013 | 5 | 2013-05-13T04:00:00Z | 2013-07-13T03:59:59Z | 2017-09-18T14:24:15Z | 2013-11139 | 0 | 0 | 09000064812dfc20 |
| GSA-FMR-2008-0001-0006 | GSA | 2008 General Services Administration, Federal Management Regulation (FMR) Rules GSA-FMR-2008-0001 | Federal Management Regulations: Motor Vehicle Management | Rule | Final | 2009-03-20T04:00:00Z | 2009 | 3 | 2009-03-20T04:00:00Z | 2017-09-18T14:24:15Z | E9-6152 | 0 | 0 | 09000064809227d5 | |
| GSA-FMR-2008-0001-0007 | GSA | 2008 General Services Administration, Federal Management Regulation (FMR) Rules GSA-FMR-2008-0001 | Federal Management Regulation: FMR Case 2008-102-2, Utilization, Donation, and Disposal of Foreign Gifts and Decorations | Rule | Final | 2009-01-15T05:00:00Z | 2009 | 1 | 2009-01-15T05:00:00Z | 2017-09-18T14:24:15Z | E9-00562 | 0 | 0 | 09000064808212ee | |
| GSA-FMR-2008-0001-0001 | GSA | 2008 General Services Administration, Federal Management Regulation (FMR) Rules GSA-FMR-2008-0001 | Federal Management Regulation: FMR Case 2008-102-4, Mail Management; Financial Requirements for All Agencies | Proposed Rule | 2009-01-09T05:00:00Z | 2009 | 1 | 2009-01-09T05:00:00Z | 2009-03-11T03:59:59Z | 2017-09-18T14:24:14Z | E9-172 | 0 | 0 | 09000064808166cb | |
| GSA-FMR-2008-0001-0008 | GSA | 2008 General Services Administration, Federal Management Regulation (FMR) Rules GSA-FMR-2008-0001 | Federal Management Regulation; FMR Case 2008-102-3, Real Property Policies Update - Smoking Restrictions | Rule | Final | 2008-12-19T05:00:00Z | 2008 | 12 | 2008-12-19T05:00:00Z | 2017-09-18T14:24:14Z | E8-30180 | 0 | 0 | 09000064807e2d43 |
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;