documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "OCC-2024-0012" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- OCC 7
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OCC-2024-0012-0056 | OCC | Financial Data Transparency Act Joint Data Standards OCC-2024-0012 | Summary of 01.27.2026 Meeting with GLEIF | Supporting & Related Material | 2026-01-29T05:00:00Z | 2026 | 1 | 2026-01-30T00:57:44Z | 0 | 0 | 09000064b9188d57 | ||||
| OCC-2024-0012-0054 | OCC | Financial Data Transparency Act Joint Data Standards OCC-2024-0012 | Summary of 02.06.2025 Meeting with LSTA and Covington & Burling, LLP | Supporting & Related Material | Meeting Summary | 2025-02-13T05:00:00Z | 2025 | 2 | 2025-02-13T23:18:10Z | 0 | 0 | 0900006486955620 | |||
| OCC-2024-0012-0050 | OCC | Financial Data Transparency Act Joint Data Standards OCC-2024-0012 | Summary of 12.12.2024 Meeting with SIFMA and Member Firms | Supporting & Related Material | Meeting Summary | 2024-12-18T05:00:00Z | 2024 | 12 | 2024-12-18T18:44:26Z | 0 | 0 | 090000648687bfd0 | |||
| OCC-2024-0012-0048 | OCC | Financial Data Transparency Act Joint Data Standards OCC-2024-0012 | Summary of 11.21.2024 Meeting with Bloomberg | Supporting & Related Material | Meeting Summary | 2024-12-02T05:00:00Z | 2024 | 12 | 2024-12-02T18:04:26Z | 0 | 0 | 0900006486844e6b | |||
| OCC-2024-0012-0047 | OCC | Financial Data Transparency Act Joint Data Standards OCC-2024-0012 | Summary of 11.14.2024 Meeting with American Bankers Association et al | Supporting & Related Material | 2024-11-21T05:00:00Z | 2024 | 11 | 2024-11-21T15:19:19Z | 0 | 0 | 090000648682c860 | ||||
| OCC-2024-0012-0046 | OCC | Financial Data Transparency Act Joint Data Standards OCC-2024-0012 | Summary of 11.07.2024 Meeting with Dinosaur Junior Representatives | Supporting & Related Material | Meeting Summary | 2024-11-13T05:00:00Z | 2024 | 11 | 2024-11-13T21:34:23Z | 0 | 0 | 090000648681421d | |||
| OCC-2024-0012-0001 | OCC | Financial Data Transparency Act Joint Data Standards OCC-2024-0012 | Financial Data Transparency Act Joint Data Standards | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2024-08-22T04:00:00Z | 2024 | 8 | 2024-08-22T04:00:00Z | 2024-10-22T03:59:59Z | 2025-07-31T09:00:05Z | 2024-18415 | 0 | 0 | 090000648665b43b |
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;