documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "CMS", document_type = "Proposed Rule" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CMS-2005-0044-0001 | CMS | Medicare Program; Physicians Referrals to Health Care Entities With Which They Have Financial Relationships; Exceptions for Certain Electronic Prescribing and Electronic Health Records Arrangements CMS-2005-0044 | Medicare Program; Physicians Referrals to Health Care Entities With Which They Have Financial Relationships; Exceptions for Certain Electronic Prescribing and Electronic Health Records Arrangements | Proposed Rule | 2005-10-11T04:00:00Z | 2005 | 10 | 2005-10-11T04:00:00Z | 2005-12-13T04:59:59Z | 2011-06-11T15:24:32Z | 05-20322 | 0 | 0 | 090000648009172b | |
| CMS-2005-0042-0001 | CMS | Medicare Program; Termination of Non-Random Prepayment Review CMS-2005-0042 | Medicare Program; Termination of Non-Random Prepayment Review | Proposed Rule | 2005-10-07T04:00:00Z | 2005 | 10 | 2005-10-07T04:00:00Z | 2005-12-07T04:59:59Z | 2011-06-11T15:24:32Z | 05-19925 | 0 | 0 | 090000648009030f | |
| CMS-2005-0022-0001 | CMS | Medicare Program; Health Care Infrastructure Improvement Program; Forgiveness of Indebtedness CMS-2005-0022 | Medicare Program; Health Care Infrastructure Improvement Program; Forgiveness of Indebtedness | Proposed Rule | 2005-09-30T04:00:00Z | 2005 | 9 | 2005-09-30T04:00:00Z | 2005-11-30T04:59:59Z | 2011-06-11T15:24:29Z | 05-19307 | 0 | 0 | 090000648008d09f | |
| CMS-2005-0016-0001 | CMS | Medicaid Program; Disproportionate Share Hospital Payments CMS-2005-0016 | Medicaid Program; Disproportionate Share Hospital Payments | Proposed Rule | 2005-09-23T04:00:00Z | 2005 | 9 | 2005-09-23T04:00:00Z | 2011-06-11T15:24:28Z | 05-19051 | 0 | 0 | 090000648007b71f | ||
| CMS-2005-0007-0001 | CMS | Medicare Program; Prior Determination for Certain Items and Services CMS-2005-0007 | Medicare Program; Prior Determination for Certain Items and Services | Proposed Rule | 2005-08-30T04:00:00Z | 2005 | 8 | 2005-08-30T04:00:00Z | 2005-11-01T04:59:59Z | 2011-06-11T15:24:27Z | 05-17175 | 0 | 0 | 09000064800502d9 | |
| CMS-2005-0005-0001 | CMS | Medicaid Program; Disproportionate Share Hospital Payments CMS-2005-0005 | Medicaid Program; Disproportionate Share Hospital Payments | Proposed Rule | 2005-08-26T04:00:00Z | 2005 | 8 | 2005-08-26T04:00:00Z | 2005-10-26T03:59:59Z | 2011-06-11T15:24:26Z | 05-16974 | 0 | 0 | 0900006480050133 | |
| CMS-2005-0004-0001 | CMS | Medicare Program; Revisions to Payment Policies Under the Physician Fee Schedule for Calendar Year 2006 CMS-2005-0004 | Medicare Program; Revisions to Payment Policies Under the Physician Fee Schedule for Calendar Year 2006 | Proposed Rule | 2005-08-08T04:00:00Z | 2005 | 8 | 2005-08-08T04:00:00Z | 2005-10-01T03:59:59Z | 2011-06-11T15:24:26Z | 05-15370 | 0 | 0 | 090000648004fd07 | |
| CMS-2005-0001-0001 | CMS | Medicare Program; Revised Civil Money Penalties, Assessments, Exclusions, and Related Appeals Procedures CMS-2005-0001 | Medicare Program; Revised Civil Money Penalties, Assessments, Exclusions, and Related Appeals Procedures | Proposed Rule | 2005-08-04T04:00:00Z | 2005 | 8 | 2005-08-04T04:00:00Z | 2005-10-04T03:59:59Z | 2011-06-11T15:24:26Z | 05-15291 | 0 | 0 | 090000648004f9bf |
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;