documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "CMS-2009-0058" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2009-0058-10105 | CMS | Medicare Program; Payment Policies Under the Physician Fee Schedule and Other Revisions to Part B for CY 2010 CMS-2009-0058 | Medicare Program: Payment Policies Under the Physician Fee Schedule and Other Revisions to Part B for CY 2010; Corrections | Rule | 2010-05-11T04:00:00Z | 2010 | 5 | 2010-05-11T04:00:00Z | 2010-06-02T03:59:59Z | 2016-02-09T18:51:53Z | 2010-10814 | 0 | 0 | 0900006480aeb161 | |
| CMS-2009-0058-4081 | CMS | Medicare Program; Payment Policies Under the Physician Fee Schedule and Other Revisions to Part B for CY 2010 CMS-2009-0058 | Medicare Program; Payment Policies Under the Physician Fee Schedule and Other Revisions to Part B for CY 2010; Corrections | Rule | Corrections to a Final Rule or Final Rule with Comment Period | 2009-12-10T05:00:00Z | 2009 | 12 | 2009-12-10T05:00:00Z | 2010-01-02T04:59:59Z | 2011-06-11T15:35:05Z | E9-29256 | 0 | 0 | 0900006480a68504 |
| CMS-2009-0058-4079 | CMS | Medicare Program; Payment Policies Under the Physician Fee Schedule and Other Revisions to Part B for CY 2010 CMS-2009-0058 | Medicare Program; Payment Policies Under the Physician Fee Schedule and Other Revisions to Part B for CY 2010 | Rule | Final Rule with Comment Period | 2009-11-25T05:00:00Z | 2009 | 11 | 2009-11-25T05:00:00Z | 2009-12-30T04:59:59Z | 2009-12-28T14:35:28Z | E9-26502 | 0 | 0 | 0900006480a5e991 |
| CMS-2009-0058-4078 | CMS | Medicare Program; Payment Policies Under the Physician Fee Schedule and Other Revisions to Part B for CY 2010 CMS-2009-0058 | Medicare Program; Payment Policies Under the Physician Fee Schedule and Other Revisions to Part B for CY 2010 | Rule | Final Rule with Comment Period | 2009-10-30T04:00:00Z | 2009 | 10 | 2009-10-30T04:00:00Z | 2009-12-30T04:59:59Z | 2011-06-11T15:35:05Z | 0 | 0 | 0900006480a4eb34 |
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;