documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "GSA", document_type = "Rule" and posted_year = 2006 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-2006-0001-0008 | GSA | 2006 General Services Administration Federal Management Regulation (FMR) Rules GSA-FMR-2006-0001 | FMR Case 2006-102-5 Federal Management Regulation; Utilization, Donation, and Disposal of Foreign Gifts and Decorations | Rule | Final | 2006-05-18T17:14:00Z | 2006 | 5 | 2006-05-18T17:14:00Z | 2017-09-18T14:23:53Z | 06-04629 | 0 | 0 | 0900006480174b5d | |
| GSA-FMR-2006-0001-0007 | GSA | 2006 General Services Administration Federal Management Regulation (FMR) Rules GSA-FMR-2006-0001 | FMR Case 2006-102-1 Federal Management Regulation; Motor Vehicle Management | Rule | Interim | 2006-05-12T17:16:52Z | 2006 | 5 | 2006-05-12T17:16:52Z | 2006-06-13T03:59:59Z | 2017-09-18T14:23:53Z | 06-04430 | 0 | 0 | 090000648017100d |
| GSA-FMR-2006-0001-0006 | GSA | 2006 General Services Administration Federal Management Regulation (FMR) Rules GSA-FMR-2006-0001 | FMR Real Property Policies Update; Tech Amendment (Federal Register) | Rule | Final | 2006-05-11T20:41:45Z | 2006 | 5 | 2006-05-11T20:41:45Z | 2017-09-18T14:23:52Z | E6-07221 | 0 | 0 | 09000064801702ae | |
| GSA-FMR-2006-0001-0005 | GSA | 2006 General Services Administration Federal Management Regulation (FMR) Rules GSA-FMR-2006-0001 | FMR Correction to Amendment Numbers | Rule | Final | 2006-05-05T16:22:12Z | 2006 | 5 | 2017-09-18T14:23:52Z | 06-04127 | 0 | 0 | 090000648016c59c | ||
| GSA-FMR-2006-0001-0004 | GSA | 2006 General Services Administration Federal Management Regulation (FMR) Rules GSA-FMR-2006-0001 | FMR Case 2006-102-2, Donation of Surplus Personal Property | Rule | Final | 2006-04-25T16:25:33Z | 2006 | 4 | 2006-04-25T16:25:33Z | 2017-09-18T14:23:52Z | 06-03881 | 0 | 0 | 0900006480164ad2 | |
| GSA-FMR-2006-0001-0003 | GSA | 2006 General Services Administration Federal Management Regulation (FMR) Rules GSA-FMR-2006-0001 | FMR Case 2006-102-3, Replacement of Personal Property Pursuant to the Exchange/Sale Authority | Rule | Final | 2006-04-24T17:30:13Z | 2006 | 4 | 2006-04-24T17:30:13Z | 2017-09-18T14:23:52Z | 06-03845 | 0 | 0 | 0900006480163da8 | |
| GSA-FMR-2006-0001-0002 | GSA | 2006 General Services Administration Federal Management Regulation (FMR) Rules GSA-FMR-2006-0001 | Federal Travel Regulation; 2006 Privately Owned Vehicle Mileage Reimbursement | Rule | Interim | 2006-01-06T20:19:10Z | 2006 | 1 | 2006-01-06T20:19:10Z | 2017-09-18T14:23:52Z | 06-00086 | 0 | 0 | 090000648010967f |
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;