documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "IRS-2015-0032" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, open_for_comment, withdrawn, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| IRS-2015-0032-0021 | IRS | Definition of Terms Relating to Marital Status (REG-148998-13) IRS-2015-0032 | Definition of Terms Relating to Marital Status | Rule | Final Rule | 2016-09-02T04:00:00Z | 2016 | 9 | 2016-09-02T04:00:00Z | 2016-09-08T14:29:06Z | 2016-21096 | 0 | 0 | 09000064821c143e | |
| IRS-2015-0032-0018 | IRS | Definition of Terms Relating to Marital Status (REG-148998-13) IRS-2015-0032 | Definitions of Terms Relating to Marital Status; Hearing | Proposed Rule | 2016-01-12T05:00:00Z | 2016 | 1 | 2016-01-12T05:00:00Z | 2016-01-19T22:00:23Z | 2016-00386 | 0 | 0 | 0900006481e01d0d | ||
| IRS-2015-0032-0003 | IRS | Definition of Terms Relating to Marital Status (REG-148998-13) IRS-2015-0032 | Definition of Terms Relating to Marital Status | Proposed Rule | Request for Comment | 2015-10-23T04:00:00Z | 2015 | 10 | 2015-10-23T04:00:00Z | 2015-12-08T04:59:59Z | 2024-11-07T23:28:11Z | 2015-26890 | 1 | 0 | 0900006481ce4b00 |
| IRS-2015-0032-0001 | IRS | Definition of Terms Relating to Marital Status (REG-148998-13) IRS-2015-0032 | Partnership Transactions Involving Equity Interests of a Partner; Corrections | Rule | 2015-07-08T00:00:00Z | 2015 | 7 | 2015-10-27T15:37:41Z | 0 | 1 | 0900006481b713de | ||||
| IRS-2015-0032-0002 | IRS | Definition of Terms Relating to Marital Status (REG-148998-13) IRS-2015-0032 | Partnership Transactions Involving Equity Interests of a Partner; Corrections | Rule | 2015-07-08T00:00:00Z | 2015 | 7 | 2015-10-27T15:38:10Z | 0 | 1 | 0900006481b714ab |
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;