Commit ·
b0c8cac
1
Parent(s): ae5867e
feat(data): publish RBI repo-rate dataset v1.0.0 (#1)
Browse files- feat(data): publish RBI repo-rate dataset v1.0.0 (0bb72a91424f227aac7dde29c15ee4900d519cbc)
- CHANGELOG.md +10 -0
- NOTICE.md +13 -0
- README.md +294 -3
- SHA256SUMS +23 -0
- VERSION +1 -0
- data/annual.parquet +3 -0
- data/decisions.parquet +3 -0
- data/events.parquet +3 -0
- data/regimes.parquet +3 -0
- data/sources.parquet +3 -0
- exports/annual.csv +28 -0
- exports/annual.jsonl +27 -0
- exports/decisions.csv +0 -0
- exports/decisions.jsonl +0 -0
- exports/events.csv +9 -0
- exports/regimes.csv +16 -0
- exports/sources.csv +10 -0
- provenance/build-manifest.json +51 -0
- schema/annual.schema.json +316 -0
- schema/data-dictionary.json +927 -0
- schema/decisions.schema.json +437 -0
- schema/events.schema.json +70 -0
- schema/regimes.schema.json +64 -0
- schema/sources.schema.json +109 -0
CHANGELOG.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Changelog
|
| 2 |
+
|
| 3 |
+
## 1.0.0 — 2026-08-14
|
| 4 |
+
|
| 5 |
+
- Initial publication-ready Hugging Face artifact built from SnapshotV2.
|
| 6 |
+
- Added canonical `decisions`, derived `annual`, `sources`, contextual `events`, and `regimes` configurations.
|
| 7 |
+
- Added typed Parquet, interoperability CSV, agent-friendly JSONL, explicit schemas, a data dictionary, and reproducibility checksums.
|
| 8 |
+
- Exposed the distinction between directly verified RBI policy-resolution records and imported Reuters/Shriram historical material.
|
| 9 |
+
- Added a standalone attribution notice and machine-readable rights metadata without asserting a dataset license.
|
| 10 |
+
- Added deterministic README build facts, trusted contextual-event citation validation, and exact artifact-layout checks.
|
NOTICE.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Attribution & Usage
|
| 2 |
+
|
| 3 |
+
This is an independent, non-official educational reference compiled from publicly available records published by the Reserve Bank of India and other cited publishers. Source titles, marks, and publisher materials remain with their respective owners; this project does not claim ownership of third-party material. This project is not created by, affiliated with, authorised by, sponsored by, or endorsed by the Reserve Bank of India; no official relationship, approval, or representation should be inferred.
|
| 4 |
+
|
| 5 |
+
The information is provided for research and general information only, “as is” and without representation or warranty, express or implied, including as to accuracy, completeness, timeliness, availability, or fitness for a particular purpose, to the fullest extent permitted by applicable law. Verify every figure, interpretation, and update against the original publication before relying on it; this project should not be used as the sole basis for any decision.
|
| 6 |
+
|
| 7 |
+
Nothing here constitutes financial, investment, legal, tax, accounting, or other professional advice, an offer, recommendation, solicitation, or fiduciary relationship. Links and citations are provided for identification and verification only, not as a licence to reproduce protected third-party content. Nothing in this notice limits any right or remedy that cannot lawfully be excluded.
|
| 8 |
+
|
| 9 |
+
Reference material: [RBI data dissemination material](https://rbi.org.in/scripts/PublicationsView.aspx?Id=18086).
|
| 10 |
+
|
| 11 |
+
This notice is not a dataset license. No blanket redistribution license is asserted.
|
| 12 |
+
RBI, Reuters, Shriram Finance, and other publishers retain their respective rights
|
| 13 |
+
in source material. The transformation code is separate from those rights.
|
README.md
CHANGED
|
@@ -1,3 +1,294 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
pretty_name: India RBI Policy Repo Rate and Monetary Policy Decision History
|
| 4 |
+
tags:
|
| 5 |
+
- tabular
|
| 6 |
+
- timeseries
|
| 7 |
+
- finance
|
| 8 |
+
- economics
|
| 9 |
+
- monetary-policy
|
| 10 |
+
- central-banking
|
| 11 |
+
- india
|
| 12 |
+
- rbi
|
| 13 |
+
- interest-rates
|
| 14 |
+
- datasets
|
| 15 |
+
- pandas
|
| 16 |
+
- mlcroissant
|
| 17 |
+
size_categories:
|
| 18 |
+
- n<1K
|
| 19 |
+
configs:
|
| 20 |
+
- config_name: decisions
|
| 21 |
+
default: true
|
| 22 |
+
data_files:
|
| 23 |
+
- split: full
|
| 24 |
+
path: data/decisions.parquet
|
| 25 |
+
- config_name: annual
|
| 26 |
+
data_files:
|
| 27 |
+
- split: full
|
| 28 |
+
path: data/annual.parquet
|
| 29 |
+
- config_name: sources
|
| 30 |
+
data_files:
|
| 31 |
+
- split: full
|
| 32 |
+
path: data/sources.parquet
|
| 33 |
+
- config_name: events
|
| 34 |
+
data_files:
|
| 35 |
+
- split: full
|
| 36 |
+
path: data/events.parquet
|
| 37 |
+
- config_name: regimes
|
| 38 |
+
data_files:
|
| 39 |
+
- split: full
|
| 40 |
+
path: data/regimes.parquet
|
| 41 |
+
---
|
| 42 |
+
|
| 43 |
+
# India RBI Policy Repo Rate and Monetary Policy Decision History
|
| 44 |
+
|
| 45 |
+
An independent, reproducible dataset of the Reserve Bank of India (RBI) policy
|
| 46 |
+
repo rate and its monetary-policy decision history. The canonical table is a
|
| 47 |
+
decision ledger: each row is one dated rate observation, including unchanged
|
| 48 |
+
policy decisions. Annual summaries, source metadata, contextual events, and
|
| 49 |
+
repository-provided regime intervals are separate configurations derived from
|
| 50 |
+
or accompanying that ledger.
|
| 51 |
+
|
| 52 |
+
<!-- BUILD-SUMMARY:START -->
|
| 53 |
+
**Current build:** SnapshotV2 `2026-08-14-v2`, retrieved `2026-08-14T07:35:45.400Z`; coverage `2000-06-05` to `2026-08-05`; 107 canonical records, 27 annual rows, 9 sources, 8 contextual events, and 15 regime intervals.
|
| 54 |
+
<!-- BUILD-SUMMARY:END -->
|
| 55 |
+
|
| 56 |
+
## At a glance
|
| 57 |
+
|
| 58 |
+
- `decisions` is the default configuration: one row per canonical policy-rate observation or identified policy decision.
|
| 59 |
+
- `effective_date` orders the rate history; `decision_date` is null when a source does not identify a separate formal decision date.
|
| 60 |
+
- `policy_rate_pct` is convenient numeric percent; `policy_rate_bps` is the exact integer basis-point representation.
|
| 61 |
+
- `change_bps`, `action`, and `is_rate_change` describe the transition from the previous canonical record.
|
| 62 |
+
- `provenance_class` and `verification_status` distinguish directly verified RBI records from legacy imported history.
|
| 63 |
+
- `record_text` is deterministic factual text for search, RAG, and agent context; it is not LLM-written.
|
| 64 |
+
|
| 65 |
+
This dataset is designed for questions such as: What was India’s repo rate at the
|
| 66 |
+
end of 2019? How much did RBI tighten during 2022? Which years had the most rate
|
| 67 |
+
cuts? Which rows are formal MPC decisions rather than historical observations?
|
| 68 |
+
|
| 69 |
+
This is not an official RBI product. It is a derived research artifact created
|
| 70 |
+
from repository-maintained source records; users should consult the linked RBI
|
| 71 |
+
source document for authoritative policy information.
|
| 72 |
+
|
| 73 |
+
## Why the decision ledger is canonical
|
| 74 |
+
|
| 75 |
+
The `decisions` configuration has one row per canonical SnapshotV2 record. It
|
| 76 |
+
preserves hikes, cuts, and holds rather than reducing the history to one row per
|
| 77 |
+
year. The `annual` configuration is calculated entirely from this ledger, so a
|
| 78 |
+
year can contain multiple transitions without losing ordering, rate-before/rate-after
|
| 79 |
+
semantics, stance, or provenance.
|
| 80 |
+
|
| 81 |
+
The Parquet files under `data/` are the only files mapped into Hugging Face
|
| 82 |
+
configurations. CSV and JSONL files under `exports/` are deliberately not listed
|
| 83 |
+
in the frontmatter, so they cannot be ingested by the Dataset Viewer as duplicate
|
| 84 |
+
records.
|
| 85 |
+
|
| 86 |
+
## Configurations
|
| 87 |
+
|
| 88 |
+
| Configuration | Row grain | Intended use |
|
| 89 |
+
| --- | --- | --- |
|
| 90 |
+
| `decisions` (default) | One canonical monetary-policy/rate observation | Exact history, event ordering, RAG, search, and agent answers |
|
| 91 |
+
| `annual` | One row per calendar year from the earliest through latest snapshot year | Yearly analytics and compact question answering |
|
| 92 |
+
| `sources` | One row per source document/resource | Citation, retrieval, and provenance joins |
|
| 93 |
+
| `events` | One row per contextual macro/policy event | Independent timeline context; not causal annotations |
|
| 94 |
+
| `regimes` | One row per repository-provided regime interval | Contextual interval joins |
|
| 95 |
+
|
| 96 |
+
All configurations use a custom `full` split because this is a historical data
|
| 97 |
+
ledger, not an ML train/test corpus. The exact Arrow/Parquet schema is available
|
| 98 |
+
in [`schema/`](schema/), and field-level semantics are in
|
| 99 |
+
[`schema/data-dictionary.json`](schema/data-dictionary.json).
|
| 100 |
+
|
| 101 |
+
## Important field semantics
|
| 102 |
+
|
| 103 |
+
In `decisions`:
|
| 104 |
+
|
| 105 |
+
- `effective_date` is the canonical ordering and rate-effective/observation date.
|
| 106 |
+
- `decision_date` is populated only for the three RBI policy-resolution records
|
| 107 |
+
in the current snapshot. Imported historical observations intentionally use
|
| 108 |
+
null rather than an invented decision date.
|
| 109 |
+
- `policy_rate_pct` is a convenient numeric percentage and
|
| 110 |
+
`policy_rate_bps` is the exact integer representation. `change_bps` is signed:
|
| 111 |
+
positive is a hike, negative is a cut, and zero is a hold.
|
| 112 |
+
- `previous_policy_rate_bps` is the previous canonical ledger rate, not a
|
| 113 |
+
previous row in an annual summary. The first observation has null previous
|
| 114 |
+
rates and action `initial`.
|
| 115 |
+
- `canonical_key` is stable and globally readable, for example
|
| 116 |
+
`IN:RBI:policy_repo_rate:2026-08-05`. `decision_id` is a stable dataset-level
|
| 117 |
+
identifier, while `snapshot_decision_id` preserves the source ledger ID.
|
| 118 |
+
- `record_text` and `decision_summary` are deterministic factual text generated
|
| 119 |
+
from structured fields. They are not LLM-written and do not repeat long RBI
|
| 120 |
+
source prose.
|
| 121 |
+
- `regime_id` joins to `regimes` using start-inclusive/end-exclusive intervals.
|
| 122 |
+
Dates in a gap remain null. Regime labels are repository context, not official
|
| 123 |
+
RBI classifications.
|
| 124 |
+
|
| 125 |
+
Source quality is explicit. `official_primary` identifies a direct RBI policy
|
| 126 |
+
resolution or direct RBI rate-data source; `official_secondary` identifies RBI
|
| 127 |
+
archive, minutes, or current-rate context; `legacy_import` identifies imported
|
| 128 |
+
Reuters/Shriram historical material. `verification_status` makes the distinction
|
| 129 |
+
visible as `verified_primary_source`, `historical_legacy_source`,
|
| 130 |
+
`official_secondary_source`, or `mixed_provenance`. The current build contains
|
| 131 |
+
104 `historical_rate_observation` rows with legacy provenance and three
|
| 132 |
+
`policy_decision` rows backed by RBI policy resolutions.
|
| 133 |
+
|
| 134 |
+
## Annual calculation rules
|
| 135 |
+
|
| 136 |
+
The annual table includes every year from the earliest effective year through the
|
| 137 |
+
latest snapshot year, including years with zero canonical ledger records. In the
|
| 138 |
+
current build, 2021 is represented with `decision_count = 0` and carries forward
|
| 139 |
+
the rate in force from 2020.
|
| 140 |
+
|
| 141 |
+
- `start_policy_rate_pct` is the latest rate effective strictly before January 1.
|
| 142 |
+
- `end_policy_rate_pct` is the latest rate effective on or before December 31.
|
| 143 |
+
- `min_policy_rate_pct` and `max_policy_rate_pct` consider known in-force rates,
|
| 144 |
+
including a carry-in rate.
|
| 145 |
+
- `net_change_bps` is end minus start and is null when either boundary is unknown.
|
| 146 |
+
This is why 2000 has a null net change: the available history begins during
|
| 147 |
+
that year.
|
| 148 |
+
- `gross_hikes_bps` sums positive canonical transitions and `gross_cuts_bps`
|
| 149 |
+
sums the absolute values of negative canonical transitions. Holds are retained
|
| 150 |
+
in `decision_count` and `hold_count`; the initial observation is neither a hike
|
| 151 |
+
nor a cut.
|
| 152 |
+
- `year_end_source_id` supports the rate in force at year end, including a
|
| 153 |
+
carry-in source for a zero-decision year. `year_end_action` and
|
| 154 |
+
`year_end_stance` are null when no decision occurred in that year.
|
| 155 |
+
|
| 156 |
+
## Load examples
|
| 157 |
+
|
| 158 |
+
The default configuration is the decision ledger:
|
| 159 |
+
|
| 160 |
+
```python
|
| 161 |
+
from datasets import load_dataset
|
| 162 |
+
|
| 163 |
+
repo = "ashwingopalsamy/india-repo-rate-dataset"
|
| 164 |
+
decisions = load_dataset(repo, split="full")
|
| 165 |
+
annual = load_dataset(repo, "annual", split="full")
|
| 166 |
+
print(decisions.features)
|
| 167 |
+
print(decisions.filter(lambda row: row["action"] == "cut")[0])
|
| 168 |
+
```
|
| 169 |
+
|
| 170 |
+
For a local checkout or downloaded artifact, point `data_files` at the canonical
|
| 171 |
+
Parquet file explicitly:
|
| 172 |
+
|
| 173 |
+
```python
|
| 174 |
+
from datasets import load_dataset
|
| 175 |
+
|
| 176 |
+
annual = load_dataset(
|
| 177 |
+
"parquet",
|
| 178 |
+
data_files={"full": "hf-dataset/data/annual.parquet"},
|
| 179 |
+
split="full",
|
| 180 |
+
)
|
| 181 |
+
```
|
| 182 |
+
|
| 183 |
+
Pandas and Polars preserve the typed Parquet columns:
|
| 184 |
+
|
| 185 |
+
```python
|
| 186 |
+
import pandas as pd
|
| 187 |
+
import polars as pl
|
| 188 |
+
|
| 189 |
+
df = pd.read_parquet("hf-dataset/data/decisions.parquet")
|
| 190 |
+
cuts = df.loc[df["action"].eq("cut"), ["effective_date", "policy_rate_bps", "change_bps"]]
|
| 191 |
+
|
| 192 |
+
pl_df = pl.read_parquet("hf-dataset/data/annual.parquet")
|
| 193 |
+
print(pl_df.filter(pl.col("decision_count") == 0))
|
| 194 |
+
```
|
| 195 |
+
|
| 196 |
+
DuckDB can query the canonical file without loading a database:
|
| 197 |
+
|
| 198 |
+
```sql
|
| 199 |
+
SELECT year, net_change_bps, hike_count, cut_count, hold_count
|
| 200 |
+
FROM read_parquet('hf-dataset/data/annual.parquet')
|
| 201 |
+
ORDER BY year;
|
| 202 |
+
```
|
| 203 |
+
|
| 204 |
+
For RAG or an autonomous agent, retrieve `decisions.record_text` and retain
|
| 205 |
+
`canonical_key`, `effective_date`, `change_bps`, `stance`,
|
| 206 |
+
`verification_status`, and `primary_source_url` in the answer context. The
|
| 207 |
+
sentence is deterministic, while the structured fields remain the source of
|
| 208 |
+
truth for filtering and exact arithmetic. A source URL should be cited when a
|
| 209 |
+
claim matters. Events are independent context and should not be described as
|
| 210 |
+
causal explanations for decisions.
|
| 211 |
+
|
| 212 |
+
## Source methodology and provenance
|
| 213 |
+
|
| 214 |
+
The build reads only `src/data/snapshot.json`, validates SnapshotV2, and does
|
| 215 |
+
not use historical V1 snapshots or website runtime exports as additional inputs.
|
| 216 |
+
The canonical rate transitions are checked with decimal arithmetic. Source IDs,
|
| 217 |
+
source checksums, retrieval timestamps, and publication timestamps are preserved
|
| 218 |
+
or normalized without replacing unknown values with sentinel strings.
|
| 219 |
+
|
| 220 |
+
The repository’s current history contains a Reuters historical series covering
|
| 221 |
+
the older rate observations, with a Shriram Finance reference retained in the
|
| 222 |
+
source table. Those rows remain useful for historical continuity but are visibly
|
| 223 |
+
marked `legacy_import` and `historical_legacy_source`; they are not represented
|
| 224 |
+
as equivalent to a row tied to a specific RBI policy resolution. The three latest
|
| 225 |
+
policy-resolution records are marked `official_primary` and
|
| 226 |
+
`verified_primary_source`. Source priority is deterministic and prefers a policy
|
| 227 |
+
resolution over minutes, contextual pages, and legacy material when a row has
|
| 228 |
+
multiple sources.
|
| 229 |
+
|
| 230 |
+
## Reproduce and verify
|
| 231 |
+
|
| 232 |
+
From the repository root, install the pinned build/test dependencies and rebuild:
|
| 233 |
+
|
| 234 |
+
```bash
|
| 235 |
+
python3 -m pip install -r requirements-hf-dataset.txt
|
| 236 |
+
python3 scripts/build-hf-dataset.py
|
| 237 |
+
python3 -m unittest tests/data/test_hf_dataset.py
|
| 238 |
+
npm run test:hf-dataset
|
| 239 |
+
```
|
| 240 |
+
|
| 241 |
+
`generated_at` is intentionally the SnapshotV2 retrieval timestamp, not the wall
|
| 242 |
+
clock, so rebuilding the same snapshot is byte-identical. The manifest records
|
| 243 |
+
the snapshot ID/checksum, generator and schema versions, row counts, coverage,
|
| 244 |
+
and output checksums. `SHA256SUMS` covers every artifact except itself.
|
| 245 |
+
|
| 246 |
+
The semantic dataset schema version is `1.0.0`; a data refresh that adds a new
|
| 247 |
+
policy decision does not by itself require a schema-version change. The source
|
| 248 |
+
snapshot identity and freshness are separate fields.
|
| 249 |
+
|
| 250 |
+
## Attribution & Usage
|
| 251 |
+
|
| 252 |
+
This is an independent, non-official educational reference compiled from publicly available records published by the Reserve Bank of India and other cited publishers. Source titles, marks, and publisher materials remain with their respective owners; this project does not claim ownership of third-party material. This project is not created by, affiliated with, authorised by, sponsored by, or endorsed by the Reserve Bank of India; no official relationship, approval, or representation should be inferred.
|
| 253 |
+
|
| 254 |
+
The information is provided for research and general information only, “as is” and without representation or warranty, express or implied, including as to accuracy, completeness, timeliness, availability, or fitness for a particular purpose, to the fullest extent permitted by applicable law. Verify every figure, interpretation, and update against the original publication before relying on it; this project should not be used as the sole basis for any decision.
|
| 255 |
+
|
| 256 |
+
Nothing here constitutes financial, investment, legal, tax, accounting, or other professional advice, an offer, recommendation, solicitation, or fiduciary relationship. Links and citations are provided for identification and verification only, not as a licence to reproduce protected third-party content. Nothing in this notice limits any right or remedy that cannot lawfully be excluded.
|
| 257 |
+
|
| 258 |
+
Reference material: [RBI data dissemination material](https://rbi.org.in/scripts/PublicationsView.aspx?Id=18086).
|
| 259 |
+
|
| 260 |
+
This notice is not a dataset license. No blanket redistribution license is asserted.
|
| 261 |
+
The transformation code is separate from rights in RBI, Reuters, Shriram Finance,
|
| 262 |
+
and other third-party source material. Review source-specific terms before
|
| 263 |
+
redistributing or using the data commercially. The machine-readable rights summary
|
| 264 |
+
is in [`provenance/build-manifest.json`](provenance/build-manifest.json) and
|
| 265 |
+
[`schema/data-dictionary.json`](schema/data-dictionary.json).
|
| 266 |
+
|
| 267 |
+
## Limitations
|
| 268 |
+
|
| 269 |
+
The source records provide a strong machine-readable transition history but do
|
| 270 |
+
not make every historical observation an identified RBI policy-resolution event.
|
| 271 |
+
Older rows therefore have null stance and decision dates where the source does
|
| 272 |
+
not provide them. Regime labels and contextual events are repository-maintained
|
| 273 |
+
annotations, not official RBI classifications or causal evidence. Rate values
|
| 274 |
+
and exact decision claims should be checked against the linked primary RBI source
|
| 275 |
+
where one exists.
|
| 276 |
+
|
| 277 |
+
Suggested citation:
|
| 278 |
+
|
| 279 |
+
> *India RBI Policy Repo Rate and Monetary Policy Decision History*, independent
|
| 280 |
+
> derived dataset from the `repo-rate-visualizer` SnapshotV2 ledger, schema
|
| 281 |
+
> version 1.0.0. Cite the snapshot ID, checksum, and the relevant source URL from
|
| 282 |
+
> `provenance/build-manifest.json` and the `sources` configuration.
|
| 283 |
+
|
| 284 |
+
## Links
|
| 285 |
+
|
| 286 |
+
- [Dataset page](https://huggingface.co/datasets/ashwingopalsamy/india-repo-rate-dataset)
|
| 287 |
+
- [Source repository](https://github.com/ashwingopalsamy/repo-rate-visualizer)
|
| 288 |
+
- [RBI disclaimer and copyright policy](https://www.rbi.org.in/Scripts/Disclaimer.aspx)
|
| 289 |
+
- [RBI data dissemination material](https://rbi.org.in/scripts/PublicationsView.aspx?Id=18086)
|
| 290 |
+
- [RBI historical data](https://www.rbi.org.in/Scripts/bs_viewcontent.aspx?Id=624)
|
| 291 |
+
- [Hugging Face manual dataset configuration](https://huggingface.co/docs/hub/en/datasets-manual-configuration)
|
| 292 |
+
- [Hugging Face dataset file names and custom splits](https://huggingface.co/docs/hub/main/datasets-file-names-and-splits)
|
| 293 |
+
- [Hugging Face Parquet Viewer processing](https://huggingface.co/docs/dataset-viewer/parquet_process)
|
| 294 |
+
- [Hugging Face Croissant metadata](https://huggingface.co/docs/dataset-viewer/croissant)
|
SHA256SUMS
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
e34653a068058163ad79fbafd35a581eade86c3bba8e3b485cb1202280bf46fe CHANGELOG.md
|
| 2 |
+
9a30ab8cf8980bfc0d8a217cd58bceb5d03b7a82fc9f68ee0f658cda9513ef46 NOTICE.md
|
| 3 |
+
b2df4d34ff42eabe1f7490461da0147b17d435fcea7e42f4c2030c177821e762 README.md
|
| 4 |
+
59854984853104df5c353e2f681a15fc7924742f9a2e468c29af248dce45ce03 VERSION
|
| 5 |
+
95547d4ade5b77d51b39ad4165724422a9de2a5a40aee06b552a5356b600ea28 data/annual.parquet
|
| 6 |
+
8cf49e290e0ed75901598e2d5f2c1570d43f601e9269b53946b4b187d0f7f60d data/decisions.parquet
|
| 7 |
+
6dcb5da5446228712aff2e4f2a53a00123357ebc6301ea963e395851dc50ce37 data/events.parquet
|
| 8 |
+
919c736bec30bb07738c06c71c1f61f81fc83da2aedeeacb5ab801f6e3a24fc6 data/regimes.parquet
|
| 9 |
+
d689d3eff3805dcdf569b33fc52d55dcf56af8988a9263c026662b1e3f02410c data/sources.parquet
|
| 10 |
+
4596d0beb9f566b7613f79cf7b909766bc03d32512b3cf480500ad6673a3efa0 exports/annual.csv
|
| 11 |
+
fe8436fafcdfcf6efeb06d44779e664c665630600a7a8d389c079116526fd351 exports/annual.jsonl
|
| 12 |
+
f8ee555dfd239d9a35b8707471aef86e4498470bbd7413600ce52053fcdb3804 exports/decisions.csv
|
| 13 |
+
2bf983632cc5a90913d73ec74b36e36ecd83e377cc97a275542f765e8a3a34b9 exports/decisions.jsonl
|
| 14 |
+
0df5b24681ca67d407da453342415421d2eae3379889a48f16cca6e04ddcb8c2 exports/events.csv
|
| 15 |
+
a22343cfba4dff998cf3abdf68bec6620597391a5d9f0add33b54b6db55e9441 exports/regimes.csv
|
| 16 |
+
263975efc7cdb0f6656ea922896e46617d2011b7724a54f59a250f9586d273c9 exports/sources.csv
|
| 17 |
+
27fc0222c858d5dd96a416bd4112ffcf09fb187f511c3cb481fea3c26ae98480 provenance/build-manifest.json
|
| 18 |
+
04bd7faac59d3b855da4377d0e1e1ec8bd5319063ad20344fb806f84bd50870f schema/annual.schema.json
|
| 19 |
+
3d25fbfd032f4306183ca49225cb2e9b40572a04476051dc1c6964eb24e4fb12 schema/data-dictionary.json
|
| 20 |
+
71a7b6f333e9e5fc1b796ab41260fc5296c93ff44e2eec557d228877826fdaff schema/decisions.schema.json
|
| 21 |
+
38b1c97b1801ec12644bb73878b3fea161bedbfb2f207bd20bc313f1079bef15 schema/events.schema.json
|
| 22 |
+
38a12912c16bbb5d09035455edcd132ccd587c8c4a2171c8c9f51f05634129c4 schema/regimes.schema.json
|
| 23 |
+
e25ce035c4a21189eadfb7d1c645c91c56fd7a4f81fd04a44273ced81f635e89 schema/sources.schema.json
|
VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
1.0.0
|
data/annual.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95547d4ade5b77d51b39ad4165724422a9de2a5a40aee06b552a5356b600ea28
|
| 3 |
+
size 12427
|
data/decisions.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8cf49e290e0ed75901598e2d5f2c1570d43f601e9269b53946b4b187d0f7f60d
|
| 3 |
+
size 21557
|
data/events.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6dcb5da5446228712aff2e4f2a53a00123357ebc6301ea963e395851dc50ce37
|
| 3 |
+
size 3697
|
data/regimes.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:919c736bec30bb07738c06c71c1f61f81fc83da2aedeeacb5ab801f6e3a24fc6
|
| 3 |
+
size 2434
|
data/sources.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d689d3eff3805dcdf569b33fc52d55dcf56af8988a9263c026662b1e3f02410c
|
| 3 |
+
size 5127
|
exports/annual.csv
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
year,start_policy_rate_pct,end_policy_rate_pct,min_policy_rate_pct,max_policy_rate_pct,net_change_bps,gross_hikes_bps,gross_cuts_bps,decision_count,policy_decision_count,historical_observation_count,hike_count,cut_count,hold_count,first_decision_date,last_decision_date,year_end_action,year_end_stance,year_end_regime_id,year_end_regime_type,year_end_regime_label,year_end_source_id,year_end_source_url,source_count,provenance_summary,snapshot_id,snapshot_checksum,snapshot_retrieved_at,dataset_schema_version,record_text
|
| 2 |
+
2000,,10.0,9.0,16.0,,1205,1110,20,0,20,9,10,0,2000-06-05,2000-11-06,cut,,regime-2000-06-05-2003-08-25-easing,easing,Post-dot-com easing,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2000, the Reserve Bank of India policy repo rate ranged from 9.00% to 16.00%; the net change is not computable because the start-of-year boundary is unavailable. The year contains 20 canonical ledger records."
|
| 3 |
+
2001,10.0,8.5,8.5,10.0,-150,0,150,3,0,3,0,3,0,2001-03-09,2001-06-07,cut,,regime-2000-06-05-2003-08-25-easing,easing,Post-dot-com easing,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2001, the Reserve Bank of India policy repo rate ranged from 8.50% to 10.00%; a net change of -150 basis points was recorded across 3 canonical ledger records."
|
| 4 |
+
2002,8.5,7.5,7.5,8.5,-100,0,100,2,0,2,0,2,0,2002-03-28,2002-11-12,cut,,regime-2000-06-05-2003-08-25-easing,easing,Post-dot-com easing,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2002, the Reserve Bank of India policy repo rate ranged from 7.50% to 8.50%; a net change of -100 basis points was recorded across 2 canonical ledger records."
|
| 5 |
+
2003,7.5,7.0,7.0,7.5,-50,0,50,2,0,2,0,2,0,2003-03-07,2003-03-19,cut,,regime-2003-08-25-2008-07-29-tightening,tightening,Pre-GFC tightening,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2003, the Reserve Bank of India policy repo rate ranged from 7.00% to 7.50%; a net change of -50 basis points was recorded across 2 canonical ledger records."
|
| 6 |
+
2004,7.0,6.0,6.0,7.0,-100,0,100,1,0,1,0,1,0,2004-03-31,2004-03-31,cut,,regime-2003-08-25-2008-07-29-tightening,tightening,Pre-GFC tightening,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2004, the Reserve Bank of India policy repo rate ranged from 6.00% to 7.00%; a net change of -100 basis points was recorded across 1 canonical ledger record."
|
| 7 |
+
2005,6.0,6.25,6.0,6.25,25,25,0,1,0,1,1,0,0,2005-10-26,2005-10-26,hike,,regime-2003-08-25-2008-07-29-tightening,tightening,Pre-GFC tightening,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2005, the Reserve Bank of India policy repo rate ranged from 6.00% to 6.25%; a net change of +25 basis points was recorded across 1 canonical ledger record."
|
| 8 |
+
2006,6.25,7.25,6.25,7.25,100,100,0,4,0,4,4,0,0,2006-01-24,2006-10-30,hike,,regime-2003-08-25-2008-07-29-tightening,tightening,Pre-GFC tightening,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2006, the Reserve Bank of India policy repo rate ranged from 6.25% to 7.25%; a net change of +100 basis points was recorded across 4 canonical ledger records."
|
| 9 |
+
2007,7.25,7.75,7.25,7.75,50,50,0,2,0,2,2,0,0,2007-01-31,2007-03-30,hike,,regime-2003-08-25-2008-07-29-tightening,tightening,Pre-GFC tightening,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2007, the Reserve Bank of India policy repo rate ranged from 7.25% to 7.75%; a net change of +50 basis points was recorded across 2 canonical ledger records."
|
| 10 |
+
2008,7.75,6.5,6.5,9.0,-125,125,250,6,0,6,3,3,0,2008-06-11,2008-12-08,cut,,regime-2008-10-20-2009-04-21-easing,easing,GFC response,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2008, the Reserve Bank of India policy repo rate ranged from 6.50% to 9.00%; a net change of -125 basis points was recorded across 6 canonical ledger records."
|
| 11 |
+
2009,6.5,4.75,4.75,6.5,-175,0,175,3,0,3,0,3,0,2009-01-02,2009-04-21,cut,,regime-2009-04-21-2011-10-25-tightening,tightening,Post-GFC normalization,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2009, the Reserve Bank of India policy repo rate ranged from 4.75% to 6.50%; a net change of -175 basis points was recorded across 3 canonical ledger records."
|
| 12 |
+
2010,4.75,6.25,4.75,6.25,150,150,0,6,0,6,6,0,0,2010-03-19,2010-11-02,hike,,regime-2009-04-21-2011-10-25-tightening,tightening,Post-GFC normalization,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2010, the Reserve Bank of India policy repo rate ranged from 4.75% to 6.25%; a net change of +150 basis points was recorded across 6 canonical ledger records."
|
| 13 |
+
2011,6.25,8.5,6.25,8.5,225,225,0,7,0,7,7,0,0,2011-01-25,2011-10-25,hike,,regime-2011-10-25-2013-05-03-pause,pause,Inflation plateau,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2011, the Reserve Bank of India policy repo rate ranged from 6.25% to 8.50%; a net change of +225 basis points was recorded across 7 canonical ledger records."
|
| 14 |
+
2012,8.5,8.0,8.0,8.5,-50,0,50,1,0,1,0,1,0,2012-04-17,2012-04-17,cut,,regime-2011-10-25-2013-05-03-pause,pause,Inflation plateau,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2012, the Reserve Bank of India policy repo rate ranged from 8.00% to 8.50%; a net change of -50 basis points was recorded across 1 canonical ledger record."
|
| 15 |
+
2013,8.0,7.75,7.25,8.0,-25,50,75,5,0,5,2,3,0,2013-01-29,2013-10-29,hike,,regime-2013-09-20-2014-01-28-tightening,tightening,Taper tantrum response,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2013, the Reserve Bank of India policy repo rate ranged from 7.25% to 8.00%; a net change of -25 basis points was recorded across 5 canonical ledger records."
|
| 16 |
+
2014,7.75,8.0,7.75,8.0,25,25,0,1,0,1,1,0,0,2014-01-28,2014-01-28,hike,,regime-2014-01-28-2016-10-04-easing,easing,Rajan easing cycle,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2014, the Reserve Bank of India policy repo rate ranged from 7.75% to 8.00%; a net change of +25 basis points was recorded across 1 canonical ledger record."
|
| 17 |
+
2015,8.0,6.75,6.75,8.0,-125,0,125,4,0,4,0,4,0,2015-01-15,2015-09-29,cut,,regime-2014-01-28-2016-10-04-easing,easing,Rajan easing cycle,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2015, the Reserve Bank of India policy repo rate ranged from 6.75% to 8.00%; a net change of -125 basis points was recorded across 4 canonical ledger records."
|
| 18 |
+
2016,6.75,6.25,6.25,6.75,-50,0,50,2,0,2,0,2,0,2016-04-05,2016-10-04,cut,,regime-2016-10-04-2017-08-02-pause,pause,Demonetization pause,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2016, the Reserve Bank of India policy repo rate ranged from 6.25% to 6.75%; a net change of -50 basis points was recorded across 2 canonical ledger records."
|
| 19 |
+
2017,6.25,6.0,6.0,6.25,-25,0,25,1,0,1,0,1,0,2017-08-02,2017-08-02,cut,,regime-2017-08-02-2018-08-01-tightening,tightening,Pre-election tightening,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2017, the Reserve Bank of India policy repo rate ranged from 6.00% to 6.25%; a net change of -25 basis points was recorded across 1 canonical ledger record."
|
| 20 |
+
2018,6.0,6.5,6.0,6.5,50,50,0,2,0,2,2,0,0,2018-06-06,2018-08-01,hike,,regime-2018-08-01-2020-05-22-easing,easing,Das easing + COVID,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2018, the Reserve Bank of India policy repo rate ranged from 6.00% to 6.50%; a net change of +50 basis points was recorded across 2 canonical ledger records."
|
| 21 |
+
2019,6.5,5.15,5.15,6.5,-135,0,135,6,0,6,0,5,1,2019-02-07,2019-12-05,hold,,regime-2018-08-01-2020-05-22-easing,easing,Das easing + COVID,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2019, the Reserve Bank of India policy repo rate ranged from 5.15% to 6.50%; a net change of -135 basis points was recorded across 6 canonical ledger records."
|
| 22 |
+
2020,5.15,4.0,4.0,5.15,-115,0,115,3,0,3,0,2,1,2020-02-06,2020-05-22,cut,,regime-2020-05-22-2022-05-04-pause,pause,COVID hold at record low,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2020, the Reserve Bank of India policy repo rate ranged from 4.00% to 5.15%; a net change of -115 basis points was recorded across 3 canonical ledger records."
|
| 23 |
+
2021,4.0,4.0,4.0,4.0,0,0,0,0,0,0,0,0,0,,,,,regime-2020-05-22-2022-05-04-pause,pause,COVID hold at record low,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2021, the Reserve Bank of India policy repo rate remained at 4.00% throughout the year; no canonical ledger records fall in this calendar year."
|
| 24 |
+
2022,4.0,6.25,4.0,6.25,225,225,0,5,0,5,5,0,0,2022-05-04,2022-12-07,hike,,regime-2022-05-04-2023-02-08-tightening,tightening,Inflation tightening,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2022, the Reserve Bank of India policy repo rate ranged from 4.00% to 6.25%; a net change of +225 basis points was recorded across 5 canonical ledger records."
|
| 25 |
+
2023,6.25,6.5,6.25,6.5,25,25,0,5,0,5,1,0,4,2023-02-08,2023-12-08,hold,,regime-2023-02-08-2025-02-07-pause,pause,Extended pause at 6.50%,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2023, the Reserve Bank of India policy repo rate ranged from 6.25% to 6.50%; a net change of +25 basis points was recorded across 5 canonical ledger records."
|
| 26 |
+
2024,6.5,6.5,6.5,6.5,0,0,0,6,0,6,0,0,6,2024-02-08,2024-12-06,hold,,regime-2023-02-08-2025-02-07-pause,pause,Extended pause at 6.50%,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2024, the Reserve Bank of India policy repo rate ranged from 6.50% to 6.50%; a net change of 0 basis points was recorded across 6 canonical ledger records."
|
| 27 |
+
2025,6.5,5.25,5.25,6.5,-125,0,125,6,0,6,0,4,2,2025-02-07,2025-12-05,cut,,,,,source-reuters-historical-2025,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,1,legacy_import,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2025, the Reserve Bank of India policy repo rate ranged from 5.25% to 6.50%; a net change of -125 basis points was recorded across 6 canonical ledger records."
|
| 28 |
+
2026,5.25,5.25,5.25,5.25,0,0,0,3,3,0,0,0,3,2026-04-08,2026-08-05,hold,neutral,,,,source-b6c29da8f60a,https://www.rbi.org.in/Scripts/BS_PressReleaseDisplay.aspx?prid=63287,4,legacy_import|official_primary,2026-08-14-v2,sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26,2026-08-14T07:35:45.400000Z,1.0.0,"In 2026, the Reserve Bank of India policy repo rate ranged from 5.25% to 5.25%; a net change of 0 basis points was recorded across 3 canonical ledger records."
|
exports/annual.jsonl
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"year":2000,"start_policy_rate_pct":null,"end_policy_rate_pct":10.0,"min_policy_rate_pct":9.0,"max_policy_rate_pct":16.0,"net_change_bps":null,"gross_hikes_bps":1205,"gross_cuts_bps":1110,"decision_count":20,"policy_decision_count":0,"historical_observation_count":20,"hike_count":9,"cut_count":10,"hold_count":0,"first_decision_date":"2000-06-05","last_decision_date":"2000-11-06","year_end_action":"cut","year_end_stance":null,"year_end_regime_id":"regime-2000-06-05-2003-08-25-easing","year_end_regime_type":"easing","year_end_regime_label":"Post-dot-com easing","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2000, the Reserve Bank of India policy repo rate ranged from 9.00% to 16.00%; the net change is not computable because the start-of-year boundary is unavailable. The year contains 20 canonical ledger records."}
|
| 2 |
+
{"year":2001,"start_policy_rate_pct":10.0,"end_policy_rate_pct":8.5,"min_policy_rate_pct":8.5,"max_policy_rate_pct":10.0,"net_change_bps":-150,"gross_hikes_bps":0,"gross_cuts_bps":150,"decision_count":3,"policy_decision_count":0,"historical_observation_count":3,"hike_count":0,"cut_count":3,"hold_count":0,"first_decision_date":"2001-03-09","last_decision_date":"2001-06-07","year_end_action":"cut","year_end_stance":null,"year_end_regime_id":"regime-2000-06-05-2003-08-25-easing","year_end_regime_type":"easing","year_end_regime_label":"Post-dot-com easing","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2001, the Reserve Bank of India policy repo rate ranged from 8.50% to 10.00%; a net change of -150 basis points was recorded across 3 canonical ledger records."}
|
| 3 |
+
{"year":2002,"start_policy_rate_pct":8.5,"end_policy_rate_pct":7.5,"min_policy_rate_pct":7.5,"max_policy_rate_pct":8.5,"net_change_bps":-100,"gross_hikes_bps":0,"gross_cuts_bps":100,"decision_count":2,"policy_decision_count":0,"historical_observation_count":2,"hike_count":0,"cut_count":2,"hold_count":0,"first_decision_date":"2002-03-28","last_decision_date":"2002-11-12","year_end_action":"cut","year_end_stance":null,"year_end_regime_id":"regime-2000-06-05-2003-08-25-easing","year_end_regime_type":"easing","year_end_regime_label":"Post-dot-com easing","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2002, the Reserve Bank of India policy repo rate ranged from 7.50% to 8.50%; a net change of -100 basis points was recorded across 2 canonical ledger records."}
|
| 4 |
+
{"year":2003,"start_policy_rate_pct":7.5,"end_policy_rate_pct":7.0,"min_policy_rate_pct":7.0,"max_policy_rate_pct":7.5,"net_change_bps":-50,"gross_hikes_bps":0,"gross_cuts_bps":50,"decision_count":2,"policy_decision_count":0,"historical_observation_count":2,"hike_count":0,"cut_count":2,"hold_count":0,"first_decision_date":"2003-03-07","last_decision_date":"2003-03-19","year_end_action":"cut","year_end_stance":null,"year_end_regime_id":"regime-2003-08-25-2008-07-29-tightening","year_end_regime_type":"tightening","year_end_regime_label":"Pre-GFC tightening","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2003, the Reserve Bank of India policy repo rate ranged from 7.00% to 7.50%; a net change of -50 basis points was recorded across 2 canonical ledger records."}
|
| 5 |
+
{"year":2004,"start_policy_rate_pct":7.0,"end_policy_rate_pct":6.0,"min_policy_rate_pct":6.0,"max_policy_rate_pct":7.0,"net_change_bps":-100,"gross_hikes_bps":0,"gross_cuts_bps":100,"decision_count":1,"policy_decision_count":0,"historical_observation_count":1,"hike_count":0,"cut_count":1,"hold_count":0,"first_decision_date":"2004-03-31","last_decision_date":"2004-03-31","year_end_action":"cut","year_end_stance":null,"year_end_regime_id":"regime-2003-08-25-2008-07-29-tightening","year_end_regime_type":"tightening","year_end_regime_label":"Pre-GFC tightening","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2004, the Reserve Bank of India policy repo rate ranged from 6.00% to 7.00%; a net change of -100 basis points was recorded across 1 canonical ledger record."}
|
| 6 |
+
{"year":2005,"start_policy_rate_pct":6.0,"end_policy_rate_pct":6.25,"min_policy_rate_pct":6.0,"max_policy_rate_pct":6.25,"net_change_bps":25,"gross_hikes_bps":25,"gross_cuts_bps":0,"decision_count":1,"policy_decision_count":0,"historical_observation_count":1,"hike_count":1,"cut_count":0,"hold_count":0,"first_decision_date":"2005-10-26","last_decision_date":"2005-10-26","year_end_action":"hike","year_end_stance":null,"year_end_regime_id":"regime-2003-08-25-2008-07-29-tightening","year_end_regime_type":"tightening","year_end_regime_label":"Pre-GFC tightening","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2005, the Reserve Bank of India policy repo rate ranged from 6.00% to 6.25%; a net change of +25 basis points was recorded across 1 canonical ledger record."}
|
| 7 |
+
{"year":2006,"start_policy_rate_pct":6.25,"end_policy_rate_pct":7.25,"min_policy_rate_pct":6.25,"max_policy_rate_pct":7.25,"net_change_bps":100,"gross_hikes_bps":100,"gross_cuts_bps":0,"decision_count":4,"policy_decision_count":0,"historical_observation_count":4,"hike_count":4,"cut_count":0,"hold_count":0,"first_decision_date":"2006-01-24","last_decision_date":"2006-10-30","year_end_action":"hike","year_end_stance":null,"year_end_regime_id":"regime-2003-08-25-2008-07-29-tightening","year_end_regime_type":"tightening","year_end_regime_label":"Pre-GFC tightening","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2006, the Reserve Bank of India policy repo rate ranged from 6.25% to 7.25%; a net change of +100 basis points was recorded across 4 canonical ledger records."}
|
| 8 |
+
{"year":2007,"start_policy_rate_pct":7.25,"end_policy_rate_pct":7.75,"min_policy_rate_pct":7.25,"max_policy_rate_pct":7.75,"net_change_bps":50,"gross_hikes_bps":50,"gross_cuts_bps":0,"decision_count":2,"policy_decision_count":0,"historical_observation_count":2,"hike_count":2,"cut_count":0,"hold_count":0,"first_decision_date":"2007-01-31","last_decision_date":"2007-03-30","year_end_action":"hike","year_end_stance":null,"year_end_regime_id":"regime-2003-08-25-2008-07-29-tightening","year_end_regime_type":"tightening","year_end_regime_label":"Pre-GFC tightening","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2007, the Reserve Bank of India policy repo rate ranged from 7.25% to 7.75%; a net change of +50 basis points was recorded across 2 canonical ledger records."}
|
| 9 |
+
{"year":2008,"start_policy_rate_pct":7.75,"end_policy_rate_pct":6.5,"min_policy_rate_pct":6.5,"max_policy_rate_pct":9.0,"net_change_bps":-125,"gross_hikes_bps":125,"gross_cuts_bps":250,"decision_count":6,"policy_decision_count":0,"historical_observation_count":6,"hike_count":3,"cut_count":3,"hold_count":0,"first_decision_date":"2008-06-11","last_decision_date":"2008-12-08","year_end_action":"cut","year_end_stance":null,"year_end_regime_id":"regime-2008-10-20-2009-04-21-easing","year_end_regime_type":"easing","year_end_regime_label":"GFC response","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2008, the Reserve Bank of India policy repo rate ranged from 6.50% to 9.00%; a net change of -125 basis points was recorded across 6 canonical ledger records."}
|
| 10 |
+
{"year":2009,"start_policy_rate_pct":6.5,"end_policy_rate_pct":4.75,"min_policy_rate_pct":4.75,"max_policy_rate_pct":6.5,"net_change_bps":-175,"gross_hikes_bps":0,"gross_cuts_bps":175,"decision_count":3,"policy_decision_count":0,"historical_observation_count":3,"hike_count":0,"cut_count":3,"hold_count":0,"first_decision_date":"2009-01-02","last_decision_date":"2009-04-21","year_end_action":"cut","year_end_stance":null,"year_end_regime_id":"regime-2009-04-21-2011-10-25-tightening","year_end_regime_type":"tightening","year_end_regime_label":"Post-GFC normalization","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2009, the Reserve Bank of India policy repo rate ranged from 4.75% to 6.50%; a net change of -175 basis points was recorded across 3 canonical ledger records."}
|
| 11 |
+
{"year":2010,"start_policy_rate_pct":4.75,"end_policy_rate_pct":6.25,"min_policy_rate_pct":4.75,"max_policy_rate_pct":6.25,"net_change_bps":150,"gross_hikes_bps":150,"gross_cuts_bps":0,"decision_count":6,"policy_decision_count":0,"historical_observation_count":6,"hike_count":6,"cut_count":0,"hold_count":0,"first_decision_date":"2010-03-19","last_decision_date":"2010-11-02","year_end_action":"hike","year_end_stance":null,"year_end_regime_id":"regime-2009-04-21-2011-10-25-tightening","year_end_regime_type":"tightening","year_end_regime_label":"Post-GFC normalization","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2010, the Reserve Bank of India policy repo rate ranged from 4.75% to 6.25%; a net change of +150 basis points was recorded across 6 canonical ledger records."}
|
| 12 |
+
{"year":2011,"start_policy_rate_pct":6.25,"end_policy_rate_pct":8.5,"min_policy_rate_pct":6.25,"max_policy_rate_pct":8.5,"net_change_bps":225,"gross_hikes_bps":225,"gross_cuts_bps":0,"decision_count":7,"policy_decision_count":0,"historical_observation_count":7,"hike_count":7,"cut_count":0,"hold_count":0,"first_decision_date":"2011-01-25","last_decision_date":"2011-10-25","year_end_action":"hike","year_end_stance":null,"year_end_regime_id":"regime-2011-10-25-2013-05-03-pause","year_end_regime_type":"pause","year_end_regime_label":"Inflation plateau","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2011, the Reserve Bank of India policy repo rate ranged from 6.25% to 8.50%; a net change of +225 basis points was recorded across 7 canonical ledger records."}
|
| 13 |
+
{"year":2012,"start_policy_rate_pct":8.5,"end_policy_rate_pct":8.0,"min_policy_rate_pct":8.0,"max_policy_rate_pct":8.5,"net_change_bps":-50,"gross_hikes_bps":0,"gross_cuts_bps":50,"decision_count":1,"policy_decision_count":0,"historical_observation_count":1,"hike_count":0,"cut_count":1,"hold_count":0,"first_decision_date":"2012-04-17","last_decision_date":"2012-04-17","year_end_action":"cut","year_end_stance":null,"year_end_regime_id":"regime-2011-10-25-2013-05-03-pause","year_end_regime_type":"pause","year_end_regime_label":"Inflation plateau","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2012, the Reserve Bank of India policy repo rate ranged from 8.00% to 8.50%; a net change of -50 basis points was recorded across 1 canonical ledger record."}
|
| 14 |
+
{"year":2013,"start_policy_rate_pct":8.0,"end_policy_rate_pct":7.75,"min_policy_rate_pct":7.25,"max_policy_rate_pct":8.0,"net_change_bps":-25,"gross_hikes_bps":50,"gross_cuts_bps":75,"decision_count":5,"policy_decision_count":0,"historical_observation_count":5,"hike_count":2,"cut_count":3,"hold_count":0,"first_decision_date":"2013-01-29","last_decision_date":"2013-10-29","year_end_action":"hike","year_end_stance":null,"year_end_regime_id":"regime-2013-09-20-2014-01-28-tightening","year_end_regime_type":"tightening","year_end_regime_label":"Taper tantrum response","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2013, the Reserve Bank of India policy repo rate ranged from 7.25% to 8.00%; a net change of -25 basis points was recorded across 5 canonical ledger records."}
|
| 15 |
+
{"year":2014,"start_policy_rate_pct":7.75,"end_policy_rate_pct":8.0,"min_policy_rate_pct":7.75,"max_policy_rate_pct":8.0,"net_change_bps":25,"gross_hikes_bps":25,"gross_cuts_bps":0,"decision_count":1,"policy_decision_count":0,"historical_observation_count":1,"hike_count":1,"cut_count":0,"hold_count":0,"first_decision_date":"2014-01-28","last_decision_date":"2014-01-28","year_end_action":"hike","year_end_stance":null,"year_end_regime_id":"regime-2014-01-28-2016-10-04-easing","year_end_regime_type":"easing","year_end_regime_label":"Rajan easing cycle","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2014, the Reserve Bank of India policy repo rate ranged from 7.75% to 8.00%; a net change of +25 basis points was recorded across 1 canonical ledger record."}
|
| 16 |
+
{"year":2015,"start_policy_rate_pct":8.0,"end_policy_rate_pct":6.75,"min_policy_rate_pct":6.75,"max_policy_rate_pct":8.0,"net_change_bps":-125,"gross_hikes_bps":0,"gross_cuts_bps":125,"decision_count":4,"policy_decision_count":0,"historical_observation_count":4,"hike_count":0,"cut_count":4,"hold_count":0,"first_decision_date":"2015-01-15","last_decision_date":"2015-09-29","year_end_action":"cut","year_end_stance":null,"year_end_regime_id":"regime-2014-01-28-2016-10-04-easing","year_end_regime_type":"easing","year_end_regime_label":"Rajan easing cycle","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2015, the Reserve Bank of India policy repo rate ranged from 6.75% to 8.00%; a net change of -125 basis points was recorded across 4 canonical ledger records."}
|
| 17 |
+
{"year":2016,"start_policy_rate_pct":6.75,"end_policy_rate_pct":6.25,"min_policy_rate_pct":6.25,"max_policy_rate_pct":6.75,"net_change_bps":-50,"gross_hikes_bps":0,"gross_cuts_bps":50,"decision_count":2,"policy_decision_count":0,"historical_observation_count":2,"hike_count":0,"cut_count":2,"hold_count":0,"first_decision_date":"2016-04-05","last_decision_date":"2016-10-04","year_end_action":"cut","year_end_stance":null,"year_end_regime_id":"regime-2016-10-04-2017-08-02-pause","year_end_regime_type":"pause","year_end_regime_label":"Demonetization pause","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2016, the Reserve Bank of India policy repo rate ranged from 6.25% to 6.75%; a net change of -50 basis points was recorded across 2 canonical ledger records."}
|
| 18 |
+
{"year":2017,"start_policy_rate_pct":6.25,"end_policy_rate_pct":6.0,"min_policy_rate_pct":6.0,"max_policy_rate_pct":6.25,"net_change_bps":-25,"gross_hikes_bps":0,"gross_cuts_bps":25,"decision_count":1,"policy_decision_count":0,"historical_observation_count":1,"hike_count":0,"cut_count":1,"hold_count":0,"first_decision_date":"2017-08-02","last_decision_date":"2017-08-02","year_end_action":"cut","year_end_stance":null,"year_end_regime_id":"regime-2017-08-02-2018-08-01-tightening","year_end_regime_type":"tightening","year_end_regime_label":"Pre-election tightening","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2017, the Reserve Bank of India policy repo rate ranged from 6.00% to 6.25%; a net change of -25 basis points was recorded across 1 canonical ledger record."}
|
| 19 |
+
{"year":2018,"start_policy_rate_pct":6.0,"end_policy_rate_pct":6.5,"min_policy_rate_pct":6.0,"max_policy_rate_pct":6.5,"net_change_bps":50,"gross_hikes_bps":50,"gross_cuts_bps":0,"decision_count":2,"policy_decision_count":0,"historical_observation_count":2,"hike_count":2,"cut_count":0,"hold_count":0,"first_decision_date":"2018-06-06","last_decision_date":"2018-08-01","year_end_action":"hike","year_end_stance":null,"year_end_regime_id":"regime-2018-08-01-2020-05-22-easing","year_end_regime_type":"easing","year_end_regime_label":"Das easing + COVID","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2018, the Reserve Bank of India policy repo rate ranged from 6.00% to 6.50%; a net change of +50 basis points was recorded across 2 canonical ledger records."}
|
| 20 |
+
{"year":2019,"start_policy_rate_pct":6.5,"end_policy_rate_pct":5.15,"min_policy_rate_pct":5.15,"max_policy_rate_pct":6.5,"net_change_bps":-135,"gross_hikes_bps":0,"gross_cuts_bps":135,"decision_count":6,"policy_decision_count":0,"historical_observation_count":6,"hike_count":0,"cut_count":5,"hold_count":1,"first_decision_date":"2019-02-07","last_decision_date":"2019-12-05","year_end_action":"hold","year_end_stance":null,"year_end_regime_id":"regime-2018-08-01-2020-05-22-easing","year_end_regime_type":"easing","year_end_regime_label":"Das easing + COVID","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2019, the Reserve Bank of India policy repo rate ranged from 5.15% to 6.50%; a net change of -135 basis points was recorded across 6 canonical ledger records."}
|
| 21 |
+
{"year":2020,"start_policy_rate_pct":5.15,"end_policy_rate_pct":4.0,"min_policy_rate_pct":4.0,"max_policy_rate_pct":5.15,"net_change_bps":-115,"gross_hikes_bps":0,"gross_cuts_bps":115,"decision_count":3,"policy_decision_count":0,"historical_observation_count":3,"hike_count":0,"cut_count":2,"hold_count":1,"first_decision_date":"2020-02-06","last_decision_date":"2020-05-22","year_end_action":"cut","year_end_stance":null,"year_end_regime_id":"regime-2020-05-22-2022-05-04-pause","year_end_regime_type":"pause","year_end_regime_label":"COVID hold at record low","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2020, the Reserve Bank of India policy repo rate ranged from 4.00% to 5.15%; a net change of -115 basis points was recorded across 3 canonical ledger records."}
|
| 22 |
+
{"year":2021,"start_policy_rate_pct":4.0,"end_policy_rate_pct":4.0,"min_policy_rate_pct":4.0,"max_policy_rate_pct":4.0,"net_change_bps":0,"gross_hikes_bps":0,"gross_cuts_bps":0,"decision_count":0,"policy_decision_count":0,"historical_observation_count":0,"hike_count":0,"cut_count":0,"hold_count":0,"first_decision_date":null,"last_decision_date":null,"year_end_action":null,"year_end_stance":null,"year_end_regime_id":"regime-2020-05-22-2022-05-04-pause","year_end_regime_type":"pause","year_end_regime_label":"COVID hold at record low","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2021, the Reserve Bank of India policy repo rate remained at 4.00% throughout the year; no canonical ledger records fall in this calendar year."}
|
| 23 |
+
{"year":2022,"start_policy_rate_pct":4.0,"end_policy_rate_pct":6.25,"min_policy_rate_pct":4.0,"max_policy_rate_pct":6.25,"net_change_bps":225,"gross_hikes_bps":225,"gross_cuts_bps":0,"decision_count":5,"policy_decision_count":0,"historical_observation_count":5,"hike_count":5,"cut_count":0,"hold_count":0,"first_decision_date":"2022-05-04","last_decision_date":"2022-12-07","year_end_action":"hike","year_end_stance":null,"year_end_regime_id":"regime-2022-05-04-2023-02-08-tightening","year_end_regime_type":"tightening","year_end_regime_label":"Inflation tightening","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2022, the Reserve Bank of India policy repo rate ranged from 4.00% to 6.25%; a net change of +225 basis points was recorded across 5 canonical ledger records."}
|
| 24 |
+
{"year":2023,"start_policy_rate_pct":6.25,"end_policy_rate_pct":6.5,"min_policy_rate_pct":6.25,"max_policy_rate_pct":6.5,"net_change_bps":25,"gross_hikes_bps":25,"gross_cuts_bps":0,"decision_count":5,"policy_decision_count":0,"historical_observation_count":5,"hike_count":1,"cut_count":0,"hold_count":4,"first_decision_date":"2023-02-08","last_decision_date":"2023-12-08","year_end_action":"hold","year_end_stance":null,"year_end_regime_id":"regime-2023-02-08-2025-02-07-pause","year_end_regime_type":"pause","year_end_regime_label":"Extended pause at 6.50%","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2023, the Reserve Bank of India policy repo rate ranged from 6.25% to 6.50%; a net change of +25 basis points was recorded across 5 canonical ledger records."}
|
| 25 |
+
{"year":2024,"start_policy_rate_pct":6.5,"end_policy_rate_pct":6.5,"min_policy_rate_pct":6.5,"max_policy_rate_pct":6.5,"net_change_bps":0,"gross_hikes_bps":0,"gross_cuts_bps":0,"decision_count":6,"policy_decision_count":0,"historical_observation_count":6,"hike_count":0,"cut_count":0,"hold_count":6,"first_decision_date":"2024-02-08","last_decision_date":"2024-12-06","year_end_action":"hold","year_end_stance":null,"year_end_regime_id":"regime-2023-02-08-2025-02-07-pause","year_end_regime_type":"pause","year_end_regime_label":"Extended pause at 6.50%","year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2024, the Reserve Bank of India policy repo rate ranged from 6.50% to 6.50%; a net change of 0 basis points was recorded across 6 canonical ledger records."}
|
| 26 |
+
{"year":2025,"start_policy_rate_pct":6.5,"end_policy_rate_pct":5.25,"min_policy_rate_pct":5.25,"max_policy_rate_pct":6.5,"net_change_bps":-125,"gross_hikes_bps":0,"gross_cuts_bps":125,"decision_count":6,"policy_decision_count":0,"historical_observation_count":6,"hike_count":0,"cut_count":4,"hold_count":2,"first_decision_date":"2025-02-07","last_decision_date":"2025-12-05","year_end_action":"cut","year_end_stance":null,"year_end_regime_id":null,"year_end_regime_type":null,"year_end_regime_label":null,"year_end_source_id":"source-reuters-historical-2025","year_end_source_url":"https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/","source_count":1,"provenance_summary":"legacy_import","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2025, the Reserve Bank of India policy repo rate ranged from 5.25% to 6.50%; a net change of -125 basis points was recorded across 6 canonical ledger records."}
|
| 27 |
+
{"year":2026,"start_policy_rate_pct":5.25,"end_policy_rate_pct":5.25,"min_policy_rate_pct":5.25,"max_policy_rate_pct":5.25,"net_change_bps":0,"gross_hikes_bps":0,"gross_cuts_bps":0,"decision_count":3,"policy_decision_count":3,"historical_observation_count":0,"hike_count":0,"cut_count":0,"hold_count":3,"first_decision_date":"2026-04-08","last_decision_date":"2026-08-05","year_end_action":"hold","year_end_stance":"neutral","year_end_regime_id":null,"year_end_regime_type":null,"year_end_regime_label":null,"year_end_source_id":"source-b6c29da8f60a","year_end_source_url":"https://www.rbi.org.in/Scripts/BS_PressReleaseDisplay.aspx?prid=63287","source_count":4,"provenance_summary":"legacy_import|official_primary","snapshot_id":"2026-08-14-v2","snapshot_checksum":"sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26","snapshot_retrieved_at":"2026-08-14T07:35:45.400000Z","dataset_schema_version":"1.0.0","record_text":"In 2026, the Reserve Bank of India policy repo rate ranged from 5.25% to 5.25%; a net change of 0 basis points was recorded across 3 canonical ledger records."}
|
exports/decisions.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
exports/decisions.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
exports/events.csv
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
event_id,date,label,description,event_type,citation_url
|
| 2 |
+
event-001-2008-09-15,2008-09-15,Global financial crisis,RBI records the September 2008 global financial crisis as a sharp external shock that changed India’s monetary-policy challenge.,crisis,https://rbi.org.in/scripts/AnnualReportPublications.aspx?Id=896
|
| 3 |
+
event-002-2013-05-22,2013-05-22,Tapering shock,"RBI records US Federal Reserve tapering signals, capital outflows, and sharp pressure on the rupee in 2013.",crisis,https://systemhealth.rbi.org.in/Scripts/PublicationsView.aspx_id%3D15709.html
|
| 4 |
+
event-003-2016-11-08,2016-11-08,Currency withdrawal,"RBI recorded the 8 Nov 2016 withdrawal of legal-tender status for the ₹500 and ₹1,000 notes.",structural,https://www.rbi.org.in/commonman/english/Scripts/Notification.aspx?Id=1938
|
| 5 |
+
event-004-2017-07-01,2017-07-01,GST rollout,CBIC records the Goods and Services Tax rollout on 1 Jul 2017 as a major structural tax reform.,structural,https://cbic-gst.gov.in/pdf/press-release/press-relese-gst-02092017.pdf
|
| 6 |
+
event-005-2020-03-24,2020-03-24,National lockdown,The Ministry of Home Affairs order of 24 Mar 2020 established a 21-day nationwide lockdown from 25 Mar.,crisis,https://www.mha.gov.in/sites/default/files/PR_NationalLockdown_26032020.pdf
|
| 7 |
+
event-006-2022-02-24,2022-02-24,War in Ukraine,"RBI linked the conflict to higher global food, energy, and commodity prices and sustained inflation pressure in 2022.",crisis,https://www.rbi.org.in/scripts/AnnualReportPublications.aspx?Id=1373
|
| 8 |
+
event-007-2022-05-04,2022-05-04,Off-cycle tightening,The RBI raised the policy repo rate by 40 bps to 4.40% on 4 May 2022 amid elevated inflation pressures.,policy,https://www.rbi.org.in/scripts/FS_Notification.aspx?Id=12311
|
| 9 |
+
event-008-2025-02-07,2025-02-07,Easing cycle begins,The MPC cut the policy repo rate by 25 bps to 6.25% on 7 Feb 2025 and retained a neutral stance.,policy,https://rbidocs.rbi.org.in/rdocs/PressRelease/PDFs/PR2094189B0DF105514A28A2FA834330E94B26.PDF
|
exports/regimes.csv
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
regime_id,start_date,end_date,regime_type,label
|
| 2 |
+
regime-2000-06-05-2003-08-25-easing,2000-06-05,2003-08-25,easing,Post-dot-com easing
|
| 3 |
+
regime-2003-08-25-2008-07-29-tightening,2003-08-25,2008-07-29,tightening,Pre-GFC tightening
|
| 4 |
+
regime-2008-10-20-2009-04-21-easing,2008-10-20,2009-04-21,easing,GFC response
|
| 5 |
+
regime-2009-04-21-2011-10-25-tightening,2009-04-21,2011-10-25,tightening,Post-GFC normalization
|
| 6 |
+
regime-2011-10-25-2013-05-03-pause,2011-10-25,2013-05-03,pause,Inflation plateau
|
| 7 |
+
regime-2013-05-03-2013-09-20-easing,2013-05-03,2013-09-20,easing,Brief easing
|
| 8 |
+
regime-2013-09-20-2014-01-28-tightening,2013-09-20,2014-01-28,tightening,Taper tantrum response
|
| 9 |
+
regime-2014-01-28-2016-10-04-easing,2014-01-28,2016-10-04,easing,Rajan easing cycle
|
| 10 |
+
regime-2016-10-04-2017-08-02-pause,2016-10-04,2017-08-02,pause,Demonetization pause
|
| 11 |
+
regime-2017-08-02-2018-08-01-tightening,2017-08-02,2018-08-01,tightening,Pre-election tightening
|
| 12 |
+
regime-2018-08-01-2020-05-22-easing,2018-08-01,2020-05-22,easing,Das easing + COVID
|
| 13 |
+
regime-2020-05-22-2022-05-04-pause,2020-05-22,2022-05-04,pause,COVID hold at record low
|
| 14 |
+
regime-2022-05-04-2023-02-08-tightening,2022-05-04,2023-02-08,tightening,Inflation tightening
|
| 15 |
+
regime-2023-02-08-2025-02-07-pause,2023-02-08,2025-02-07,pause,Extended pause at 6.50%
|
| 16 |
+
regime-2025-02-07-2025-12-05-easing,2025-02-07,2025-12-05,easing,New easing cycle
|
exports/sources.csv
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
source_id,publisher,source_type,title,url,published_at,retrieved_at,checksum,is_primary_source,provenance_class
|
| 2 |
+
source-3270380f0b7d,Reserve Bank of India,policy-resolution,"Monetary Policy Statement, 2026-27 Resolution of the Monetary Policy Committee April 6 to 8, 2026",https://www.rbi.org.in/Scripts/BS_PressReleaseDisplay.aspx?prid=62514,2026-04-08T00:00:00.000000Z,2026-08-14T07:35:46.758000Z,sha256:b496e9fb802c1856fe8f420a781e33d2e5f0cd34a935c4efe0eab8e6e85a09e8,true,official_primary
|
| 3 |
+
source-5c261f230add,Reserve Bank of India,policy-resolution,"Monetary Policy Statement, 2026-27 Resolution of the Monetary Policy Committee June 3 to 5, 2026",https://www.rbi.org.in/Scripts/BS_PressReleaseDisplay.aspx?prid=62863,2026-06-05T00:00:00.000000Z,2026-08-14T07:35:46.878000Z,sha256:4f0aa4517ed52b67bd749fffdb012ffb89dceb4edc7b6752d36882a71529c8aa,true,official_primary
|
| 4 |
+
source-8834bb93a0f0,Reserve Bank of India,policy-archive,RBI Monetary Policy archive,https://www.rbi.org.in/scripts/Annualpolicy.aspx,,2026-08-14T07:35:46.365000Z,sha256:68d6dece837d2f3f72bffba4d7f4ad0c8fc19a6b8a28c7efaa6481baee5bcd6a,false,official_secondary
|
| 5 |
+
source-a03e7549af0f,Reserve Bank of India,current-policy-rates,RBI Current Policy Rates,https://www.rbi.org.in/,,2026-08-14T07:35:46.115000Z,sha256:1ed79b356a34c23ffa901fd2efdd9cc0259392cf038c06f44b177b4cc27dbb44,false,official_secondary
|
| 6 |
+
source-b6c29da8f60a,Reserve Bank of India,policy-resolution,"Monetary Policy Statement, 2026-27 Resolution of the Monetary Policy Committee August 3 to 5, 2026",https://www.rbi.org.in/Scripts/BS_PressReleaseDisplay.aspx?prid=63287,2026-08-05T00:00:00.000000Z,2026-08-14T07:35:47.134000Z,sha256:7bcdd43453b88f1a37479103bf99248cb10ba2c4ac2184ee07c9d2fc11e16fc7,true,official_primary
|
| 7 |
+
source-b90d0dee26ee,Reserve Bank of India,policy-minutes,"Minutes of the Monetary Policy Committee Meeting, June 3 to 5, 2026",https://www.rbi.org.in/Scripts/BS_PressReleaseDisplay.aspx?prid=62974,2026-06-19T00:00:00.000000Z,2026-08-14T07:35:47.223000Z,sha256:6c53b04db82ca090baf31a976e77aacdcb702e7405bf1d59ae04d0c7744b1c5d,false,official_secondary
|
| 8 |
+
source-cdb8e605e1d7,Reserve Bank of India,policy-minutes,"Minutes of the Monetary Policy Committee Meeting, April 6 to 8, 2026",https://www.rbi.org.in/Scripts/BS_PressReleaseDisplay.aspx?prid=62599,2026-04-22T00:00:00.000000Z,2026-08-14T07:35:46.938000Z,sha256:43387ae5363c7802fdad8aa7a9910aa71131420449ab9a25a2d1f262a50dcc71,false,official_secondary
|
| 9 |
+
source-reuters-historical-2025,Reuters,historical-rate-series,Reuters — Changes to India's repo rate since June 2000,https://www.reuters.com/world/india/changes-indias-repo-rate-since-june-2000-2025-12-05/,2025-12-05T00:00:00.000000Z,2026-08-14T10:24:42.000000Z,sha256:74557e9615be4bfa54c049e2f334bce4c5116a20e651aea2f2598cf57dfd5ae3,false,legacy_import
|
| 10 |
+
source-shriram-historical-2025,Shriram Finance,secondary-historical-reference,Shriram Finance — Detailed Historical Repo Rate Trends (2010–2025),https://www.shriramfinance.in/fixed-deposit/articles/detailed-historical-repo-rate-trends-in-india,2025-12-10T00:00:00.000000Z,2026-08-14T10:24:42.000000Z,sha256:ce997168aa014c7caccc95f5cf50180ba53f6ca805a2a47fbf2b68c747665282,false,legacy_import
|
provenance/build-manifest.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_schema_version": "1.0.0",
|
| 3 |
+
"generator_version": "1.1.0",
|
| 4 |
+
"generated_at": "2026-08-14T07:35:45.400Z",
|
| 5 |
+
"source_snapshot_id": "2026-08-14-v2",
|
| 6 |
+
"source_snapshot_checksum": "sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26",
|
| 7 |
+
"source_retrieved_at": "2026-08-14T07:35:45.400Z",
|
| 8 |
+
"record_counts_by_config": {
|
| 9 |
+
"decisions": 107,
|
| 10 |
+
"annual": 27,
|
| 11 |
+
"sources": 9,
|
| 12 |
+
"events": 8,
|
| 13 |
+
"regimes": 15
|
| 14 |
+
},
|
| 15 |
+
"rights": {
|
| 16 |
+
"dataset_license": null,
|
| 17 |
+
"license_status": "not_asserted",
|
| 18 |
+
"official_status": "independent_non_official",
|
| 19 |
+
"source_material_rights": "remain_with_respective_publishers",
|
| 20 |
+
"notice_section": "Attribution & Usage",
|
| 21 |
+
"reference_material_url": "https://rbi.org.in/scripts/PublicationsView.aspx?Id=18086"
|
| 22 |
+
},
|
| 23 |
+
"coverage": {
|
| 24 |
+
"earliest_effective_date": "2000-06-05",
|
| 25 |
+
"latest_effective_date": "2026-08-05"
|
| 26 |
+
},
|
| 27 |
+
"output_checksums": {
|
| 28 |
+
"CHANGELOG.md": "e34653a068058163ad79fbafd35a581eade86c3bba8e3b485cb1202280bf46fe",
|
| 29 |
+
"NOTICE.md": "9a30ab8cf8980bfc0d8a217cd58bceb5d03b7a82fc9f68ee0f658cda9513ef46",
|
| 30 |
+
"README.md": "b2df4d34ff42eabe1f7490461da0147b17d435fcea7e42f4c2030c177821e762",
|
| 31 |
+
"VERSION": "59854984853104df5c353e2f681a15fc7924742f9a2e468c29af248dce45ce03",
|
| 32 |
+
"data/annual.parquet": "95547d4ade5b77d51b39ad4165724422a9de2a5a40aee06b552a5356b600ea28",
|
| 33 |
+
"data/decisions.parquet": "8cf49e290e0ed75901598e2d5f2c1570d43f601e9269b53946b4b187d0f7f60d",
|
| 34 |
+
"data/events.parquet": "6dcb5da5446228712aff2e4f2a53a00123357ebc6301ea963e395851dc50ce37",
|
| 35 |
+
"data/regimes.parquet": "919c736bec30bb07738c06c71c1f61f81fc83da2aedeeacb5ab801f6e3a24fc6",
|
| 36 |
+
"data/sources.parquet": "d689d3eff3805dcdf569b33fc52d55dcf56af8988a9263c026662b1e3f02410c",
|
| 37 |
+
"exports/annual.csv": "4596d0beb9f566b7613f79cf7b909766bc03d32512b3cf480500ad6673a3efa0",
|
| 38 |
+
"exports/annual.jsonl": "fe8436fafcdfcf6efeb06d44779e664c665630600a7a8d389c079116526fd351",
|
| 39 |
+
"exports/decisions.csv": "f8ee555dfd239d9a35b8707471aef86e4498470bbd7413600ce52053fcdb3804",
|
| 40 |
+
"exports/decisions.jsonl": "2bf983632cc5a90913d73ec74b36e36ecd83e377cc97a275542f765e8a3a34b9",
|
| 41 |
+
"exports/events.csv": "0df5b24681ca67d407da453342415421d2eae3379889a48f16cca6e04ddcb8c2",
|
| 42 |
+
"exports/regimes.csv": "a22343cfba4dff998cf3abdf68bec6620597391a5d9f0add33b54b6db55e9441",
|
| 43 |
+
"exports/sources.csv": "263975efc7cdb0f6656ea922896e46617d2011b7724a54f59a250f9586d273c9",
|
| 44 |
+
"schema/annual.schema.json": "04bd7faac59d3b855da4377d0e1e1ec8bd5319063ad20344fb806f84bd50870f",
|
| 45 |
+
"schema/data-dictionary.json": "3d25fbfd032f4306183ca49225cb2e9b40572a04476051dc1c6964eb24e4fb12",
|
| 46 |
+
"schema/decisions.schema.json": "71a7b6f333e9e5fc1b796ab41260fc5296c93ff44e2eec557d228877826fdaff",
|
| 47 |
+
"schema/events.schema.json": "38b1c97b1801ec12644bb73878b3fea161bedbfb2f207bd20bc313f1079bef15",
|
| 48 |
+
"schema/regimes.schema.json": "38a12912c16bbb5d09035455edcd132ccd587c8c4a2171c8c9f51f05634129c4",
|
| 49 |
+
"schema/sources.schema.json": "e25ce035c4a21189eadfb7d1c645c91c56fd7a4f81fd04a44273ced81f635e89"
|
| 50 |
+
}
|
| 51 |
+
}
|
schema/annual.schema.json
ADDED
|
@@ -0,0 +1,316 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
| 3 |
+
"$id": "https://huggingface.co/datasets/ashwingopalsamy/india-repo-rate-dataset/raw/main/schema/annual.schema.json",
|
| 4 |
+
"title": "RBI repo-rate dataset — annual",
|
| 5 |
+
"description": "Schema for the annual configuration of the independent RBI repo-rate dataset.",
|
| 6 |
+
"type": "object",
|
| 7 |
+
"additionalProperties": false,
|
| 8 |
+
"properties": {
|
| 9 |
+
"year": {
|
| 10 |
+
"type": "integer",
|
| 11 |
+
"description": "Calendar year, including years with no canonical ledger records.",
|
| 12 |
+
"x-arrow-type": "int32",
|
| 13 |
+
"x-source-native": false,
|
| 14 |
+
"x-derived": false,
|
| 15 |
+
"x-null-semantics": "Not nullable."
|
| 16 |
+
},
|
| 17 |
+
"start_policy_rate_pct": {
|
| 18 |
+
"type": [
|
| 19 |
+
"number",
|
| 20 |
+
"null"
|
| 21 |
+
],
|
| 22 |
+
"description": "Rate in force immediately before January 1 of the year.",
|
| 23 |
+
"x-arrow-type": "double",
|
| 24 |
+
"x-source-native": false,
|
| 25 |
+
"x-derived": true,
|
| 26 |
+
"x-null-semantics": "Null when no earlier canonical rate is available."
|
| 27 |
+
},
|
| 28 |
+
"end_policy_rate_pct": {
|
| 29 |
+
"type": [
|
| 30 |
+
"number",
|
| 31 |
+
"null"
|
| 32 |
+
],
|
| 33 |
+
"description": "Rate in force on December 31 of the year.",
|
| 34 |
+
"x-arrow-type": "double",
|
| 35 |
+
"x-source-native": false,
|
| 36 |
+
"x-derived": true,
|
| 37 |
+
"x-null-semantics": "Null when no canonical rate is in force by year end."
|
| 38 |
+
},
|
| 39 |
+
"min_policy_rate_pct": {
|
| 40 |
+
"type": [
|
| 41 |
+
"number",
|
| 42 |
+
"null"
|
| 43 |
+
],
|
| 44 |
+
"description": "Minimum known in-force rate during the year, including a carry-in rate.",
|
| 45 |
+
"x-arrow-type": "double",
|
| 46 |
+
"x-source-native": false,
|
| 47 |
+
"x-derived": true,
|
| 48 |
+
"x-null-semantics": "Null when no canonical rate is known during the year."
|
| 49 |
+
},
|
| 50 |
+
"max_policy_rate_pct": {
|
| 51 |
+
"type": [
|
| 52 |
+
"number",
|
| 53 |
+
"null"
|
| 54 |
+
],
|
| 55 |
+
"description": "Maximum known in-force rate during the year, including a carry-in rate.",
|
| 56 |
+
"x-arrow-type": "double",
|
| 57 |
+
"x-source-native": false,
|
| 58 |
+
"x-derived": true,
|
| 59 |
+
"x-null-semantics": "Null when no canonical rate is known during the year."
|
| 60 |
+
},
|
| 61 |
+
"net_change_bps": {
|
| 62 |
+
"type": [
|
| 63 |
+
"integer",
|
| 64 |
+
"null"
|
| 65 |
+
],
|
| 66 |
+
"description": "End rate minus start rate in basis points; null if either boundary is unknown.",
|
| 67 |
+
"x-arrow-type": "int32",
|
| 68 |
+
"x-source-native": false,
|
| 69 |
+
"x-derived": true,
|
| 70 |
+
"x-null-semantics": "Null when start_policy_rate_pct or end_policy_rate_pct is null."
|
| 71 |
+
},
|
| 72 |
+
"gross_hikes_bps": {
|
| 73 |
+
"type": "integer",
|
| 74 |
+
"description": "Sum of positive canonical transitions within the calendar year.",
|
| 75 |
+
"x-arrow-type": "int32",
|
| 76 |
+
"x-source-native": false,
|
| 77 |
+
"x-derived": false,
|
| 78 |
+
"x-null-semantics": "Not nullable."
|
| 79 |
+
},
|
| 80 |
+
"gross_cuts_bps": {
|
| 81 |
+
"type": "integer",
|
| 82 |
+
"description": "Absolute sum of negative canonical transitions within the calendar year.",
|
| 83 |
+
"x-arrow-type": "int32",
|
| 84 |
+
"x-source-native": false,
|
| 85 |
+
"x-derived": false,
|
| 86 |
+
"x-null-semantics": "Not nullable."
|
| 87 |
+
},
|
| 88 |
+
"decision_count": {
|
| 89 |
+
"type": "integer",
|
| 90 |
+
"description": "Count of all canonical ledger rows whose effective_date falls in the year.",
|
| 91 |
+
"x-arrow-type": "int32",
|
| 92 |
+
"x-source-native": false,
|
| 93 |
+
"x-derived": false,
|
| 94 |
+
"x-null-semantics": "Not nullable."
|
| 95 |
+
},
|
| 96 |
+
"policy_decision_count": {
|
| 97 |
+
"type": "integer",
|
| 98 |
+
"description": "Count of policy_decision rows in the year.",
|
| 99 |
+
"x-arrow-type": "int32",
|
| 100 |
+
"x-source-native": false,
|
| 101 |
+
"x-derived": false,
|
| 102 |
+
"x-null-semantics": "Not nullable."
|
| 103 |
+
},
|
| 104 |
+
"historical_observation_count": {
|
| 105 |
+
"type": "integer",
|
| 106 |
+
"description": "Count of historical_rate_observation rows in the year.",
|
| 107 |
+
"x-arrow-type": "int32",
|
| 108 |
+
"x-source-native": false,
|
| 109 |
+
"x-derived": false,
|
| 110 |
+
"x-null-semantics": "Not nullable."
|
| 111 |
+
},
|
| 112 |
+
"hike_count": {
|
| 113 |
+
"type": "integer",
|
| 114 |
+
"description": "Count of canonical rows labeled hike in the year.",
|
| 115 |
+
"x-arrow-type": "int32",
|
| 116 |
+
"x-source-native": false,
|
| 117 |
+
"x-derived": false,
|
| 118 |
+
"x-null-semantics": "Not nullable."
|
| 119 |
+
},
|
| 120 |
+
"cut_count": {
|
| 121 |
+
"type": "integer",
|
| 122 |
+
"description": "Count of canonical rows labeled cut in the year.",
|
| 123 |
+
"x-arrow-type": "int32",
|
| 124 |
+
"x-source-native": false,
|
| 125 |
+
"x-derived": false,
|
| 126 |
+
"x-null-semantics": "Not nullable."
|
| 127 |
+
},
|
| 128 |
+
"hold_count": {
|
| 129 |
+
"type": "integer",
|
| 130 |
+
"description": "Count of canonical rows labeled hold in the year.",
|
| 131 |
+
"x-arrow-type": "int32",
|
| 132 |
+
"x-source-native": false,
|
| 133 |
+
"x-derived": false,
|
| 134 |
+
"x-null-semantics": "Not nullable."
|
| 135 |
+
},
|
| 136 |
+
"first_decision_date": {
|
| 137 |
+
"type": [
|
| 138 |
+
"string",
|
| 139 |
+
"null"
|
| 140 |
+
],
|
| 141 |
+
"format": "date",
|
| 142 |
+
"description": "Effective date of the first canonical row in the year.",
|
| 143 |
+
"x-arrow-type": "date32[day]",
|
| 144 |
+
"x-source-native": false,
|
| 145 |
+
"x-derived": true,
|
| 146 |
+
"x-null-semantics": "Null when the year has no canonical ledger rows."
|
| 147 |
+
},
|
| 148 |
+
"last_decision_date": {
|
| 149 |
+
"type": [
|
| 150 |
+
"string",
|
| 151 |
+
"null"
|
| 152 |
+
],
|
| 153 |
+
"format": "date",
|
| 154 |
+
"description": "Effective date of the last canonical row in the year.",
|
| 155 |
+
"x-arrow-type": "date32[day]",
|
| 156 |
+
"x-source-native": false,
|
| 157 |
+
"x-derived": true,
|
| 158 |
+
"x-null-semantics": "Null when the year has no canonical ledger rows."
|
| 159 |
+
},
|
| 160 |
+
"year_end_action": {
|
| 161 |
+
"type": [
|
| 162 |
+
"string",
|
| 163 |
+
"null"
|
| 164 |
+
],
|
| 165 |
+
"description": "Action of the final in-year canonical row; null when the year-end rate is carried in from an earlier year.",
|
| 166 |
+
"x-arrow-type": "string",
|
| 167 |
+
"x-source-native": false,
|
| 168 |
+
"x-derived": true,
|
| 169 |
+
"x-null-semantics": "Null when no canonical row in the year establishes the year-end state."
|
| 170 |
+
},
|
| 171 |
+
"year_end_stance": {
|
| 172 |
+
"type": [
|
| 173 |
+
"string",
|
| 174 |
+
"null"
|
| 175 |
+
],
|
| 176 |
+
"description": "Stance of the final in-year canonical row.",
|
| 177 |
+
"x-arrow-type": "string",
|
| 178 |
+
"x-source-native": false,
|
| 179 |
+
"x-derived": true,
|
| 180 |
+
"x-null-semantics": "Null when no in-year stance is available."
|
| 181 |
+
},
|
| 182 |
+
"year_end_regime_id": {
|
| 183 |
+
"type": [
|
| 184 |
+
"string",
|
| 185 |
+
"null"
|
| 186 |
+
],
|
| 187 |
+
"description": "Regime containing December 31 under start-inclusive/end-exclusive matching.",
|
| 188 |
+
"x-arrow-type": "string",
|
| 189 |
+
"x-source-native": false,
|
| 190 |
+
"x-derived": true,
|
| 191 |
+
"x-null-semantics": "Null when December 31 falls in a regime gap."
|
| 192 |
+
},
|
| 193 |
+
"year_end_regime_type": {
|
| 194 |
+
"type": [
|
| 195 |
+
"string",
|
| 196 |
+
"null"
|
| 197 |
+
],
|
| 198 |
+
"description": "Repository-provided regime type at December 31.",
|
| 199 |
+
"x-arrow-type": "string",
|
| 200 |
+
"x-source-native": false,
|
| 201 |
+
"x-derived": true,
|
| 202 |
+
"x-null-semantics": "Null means the value is unavailable in the canonical snapshot."
|
| 203 |
+
},
|
| 204 |
+
"year_end_regime_label": {
|
| 205 |
+
"type": [
|
| 206 |
+
"string",
|
| 207 |
+
"null"
|
| 208 |
+
],
|
| 209 |
+
"description": "Repository-provided regime label at December 31.",
|
| 210 |
+
"x-arrow-type": "string",
|
| 211 |
+
"x-source-native": false,
|
| 212 |
+
"x-derived": true,
|
| 213 |
+
"x-null-semantics": "Null means the value is unavailable in the canonical snapshot."
|
| 214 |
+
},
|
| 215 |
+
"year_end_source_id": {
|
| 216 |
+
"type": [
|
| 217 |
+
"string",
|
| 218 |
+
"null"
|
| 219 |
+
],
|
| 220 |
+
"description": "Primary source supporting the rate in force at year end.",
|
| 221 |
+
"x-arrow-type": "string",
|
| 222 |
+
"x-source-native": false,
|
| 223 |
+
"x-derived": true,
|
| 224 |
+
"x-null-semantics": "Null when no year-end rate is known."
|
| 225 |
+
},
|
| 226 |
+
"year_end_source_url": {
|
| 227 |
+
"type": [
|
| 228 |
+
"string",
|
| 229 |
+
"null"
|
| 230 |
+
],
|
| 231 |
+
"description": "URL of year_end_source_id.",
|
| 232 |
+
"x-arrow-type": "string",
|
| 233 |
+
"x-source-native": false,
|
| 234 |
+
"x-derived": true,
|
| 235 |
+
"x-null-semantics": "Null means the value is unavailable in the canonical snapshot."
|
| 236 |
+
},
|
| 237 |
+
"source_count": {
|
| 238 |
+
"type": "integer",
|
| 239 |
+
"description": "Distinct sources used by in-year canonical rows and the year-end carry-in state.",
|
| 240 |
+
"x-arrow-type": "int32",
|
| 241 |
+
"x-source-native": false,
|
| 242 |
+
"x-derived": false,
|
| 243 |
+
"x-null-semantics": "Not nullable."
|
| 244 |
+
},
|
| 245 |
+
"provenance_summary": {
|
| 246 |
+
"type": "string",
|
| 247 |
+
"description": "Sorted pipe-delimited provenance classes represented in the year.",
|
| 248 |
+
"x-arrow-type": "string",
|
| 249 |
+
"x-source-native": false,
|
| 250 |
+
"x-derived": false,
|
| 251 |
+
"x-null-semantics": "Not nullable."
|
| 252 |
+
},
|
| 253 |
+
"snapshot_id": {
|
| 254 |
+
"type": "string",
|
| 255 |
+
"description": "SnapshotV2 identifier used as the build input.",
|
| 256 |
+
"x-arrow-type": "string",
|
| 257 |
+
"x-source-native": false,
|
| 258 |
+
"x-derived": false,
|
| 259 |
+
"x-null-semantics": "Not nullable."
|
| 260 |
+
},
|
| 261 |
+
"snapshot_checksum": {
|
| 262 |
+
"type": "string",
|
| 263 |
+
"description": "SnapshotV2 content checksum used as the build input.",
|
| 264 |
+
"x-arrow-type": "string",
|
| 265 |
+
"x-source-native": false,
|
| 266 |
+
"x-derived": false,
|
| 267 |
+
"x-null-semantics": "Not nullable."
|
| 268 |
+
},
|
| 269 |
+
"snapshot_retrieved_at": {
|
| 270 |
+
"type": "string",
|
| 271 |
+
"format": "date-time",
|
| 272 |
+
"description": "SnapshotV2 retrieval timestamp.",
|
| 273 |
+
"x-arrow-type": "timestamp[us, tz=UTC]",
|
| 274 |
+
"x-source-native": false,
|
| 275 |
+
"x-derived": false,
|
| 276 |
+
"x-null-semantics": "Not nullable."
|
| 277 |
+
},
|
| 278 |
+
"dataset_schema_version": {
|
| 279 |
+
"type": "string",
|
| 280 |
+
"description": "Independent semantic schema version for this dataset.",
|
| 281 |
+
"x-arrow-type": "string",
|
| 282 |
+
"x-source-native": false,
|
| 283 |
+
"x-derived": false,
|
| 284 |
+
"x-null-semantics": "Not nullable."
|
| 285 |
+
},
|
| 286 |
+
"record_text": {
|
| 287 |
+
"type": "string",
|
| 288 |
+
"description": "Deterministically generated factual annual summary for search, RAG, and agent use.",
|
| 289 |
+
"x-arrow-type": "string",
|
| 290 |
+
"x-source-native": false,
|
| 291 |
+
"x-derived": true,
|
| 292 |
+
"x-null-semantics": "Not nullable."
|
| 293 |
+
}
|
| 294 |
+
},
|
| 295 |
+
"required": [
|
| 296 |
+
"year",
|
| 297 |
+
"gross_hikes_bps",
|
| 298 |
+
"gross_cuts_bps",
|
| 299 |
+
"decision_count",
|
| 300 |
+
"policy_decision_count",
|
| 301 |
+
"historical_observation_count",
|
| 302 |
+
"hike_count",
|
| 303 |
+
"cut_count",
|
| 304 |
+
"hold_count",
|
| 305 |
+
"source_count",
|
| 306 |
+
"provenance_summary",
|
| 307 |
+
"snapshot_id",
|
| 308 |
+
"snapshot_checksum",
|
| 309 |
+
"snapshot_retrieved_at",
|
| 310 |
+
"dataset_schema_version",
|
| 311 |
+
"record_text"
|
| 312 |
+
],
|
| 313 |
+
"x-dataset-schema-version": "1.0.0",
|
| 314 |
+
"x-config-name": "annual",
|
| 315 |
+
"x-row-grain": "one row per calendar year from the earliest through latest snapshot year"
|
| 316 |
+
}
|
schema/data-dictionary.json
ADDED
|
@@ -0,0 +1,927 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset_name": "RBI policy repo-rate and monetary-policy decision history",
|
| 3 |
+
"dataset_repo_id": "ashwingopalsamy/india-repo-rate-dataset",
|
| 4 |
+
"dataset_schema_version": "1.0.0",
|
| 5 |
+
"canonical_configuration": "decisions",
|
| 6 |
+
"rights": {
|
| 7 |
+
"dataset_license": null,
|
| 8 |
+
"license_status": "not_asserted",
|
| 9 |
+
"official_status": "independent_non_official",
|
| 10 |
+
"source_material_rights": "remain_with_respective_publishers",
|
| 11 |
+
"notice_section": "Attribution & Usage",
|
| 12 |
+
"reference_material_url": "https://rbi.org.in/scripts/PublicationsView.aspx?Id=18086"
|
| 13 |
+
},
|
| 14 |
+
"source_snapshot": {
|
| 15 |
+
"snapshot_id": "2026-08-14-v2",
|
| 16 |
+
"snapshot_checksum": "sha256:7c54caa01180d3018077a174f2239df9e221e520c61a31d952d6b152a16d3c26",
|
| 17 |
+
"retrieved_at": "2026-08-14T07:35:45.400Z"
|
| 18 |
+
},
|
| 19 |
+
"configurations": {
|
| 20 |
+
"decisions": {
|
| 21 |
+
"row_grain": "one row per canonical monetary-policy/rate observation",
|
| 22 |
+
"parquet_path": "data/decisions.parquet",
|
| 23 |
+
"fields": [
|
| 24 |
+
{
|
| 25 |
+
"name": "decision_id",
|
| 26 |
+
"arrow_type": "string",
|
| 27 |
+
"nullable": false,
|
| 28 |
+
"description": "Stable dataset-generated identifier for one canonical ledger row.",
|
| 29 |
+
"source_native": false,
|
| 30 |
+
"derived": false,
|
| 31 |
+
"null_semantics": "Not nullable."
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"name": "snapshot_decision_id",
|
| 35 |
+
"arrow_type": "string",
|
| 36 |
+
"nullable": false,
|
| 37 |
+
"description": "Original decision identifier from SnapshotV2.",
|
| 38 |
+
"source_native": true,
|
| 39 |
+
"derived": false,
|
| 40 |
+
"null_semantics": "Not nullable."
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"name": "canonical_key",
|
| 44 |
+
"arrow_type": "string",
|
| 45 |
+
"nullable": false,
|
| 46 |
+
"description": "Globally readable instrument/date key: IN:RBI:policy_repo_rate:YYYY-MM-DD.",
|
| 47 |
+
"source_native": false,
|
| 48 |
+
"derived": true,
|
| 49 |
+
"null_semantics": "Not nullable."
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"name": "jurisdiction",
|
| 53 |
+
"arrow_type": "string",
|
| 54 |
+
"nullable": false,
|
| 55 |
+
"description": "ISO 3166-1 alpha-2 jurisdiction code: IN.",
|
| 56 |
+
"source_native": false,
|
| 57 |
+
"derived": false,
|
| 58 |
+
"null_semantics": "Not nullable."
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"name": "country",
|
| 62 |
+
"arrow_type": "string",
|
| 63 |
+
"nullable": false,
|
| 64 |
+
"description": "Country name: India.",
|
| 65 |
+
"source_native": false,
|
| 66 |
+
"derived": false,
|
| 67 |
+
"null_semantics": "Not nullable."
|
| 68 |
+
},
|
| 69 |
+
{
|
| 70 |
+
"name": "central_bank",
|
| 71 |
+
"arrow_type": "string",
|
| 72 |
+
"nullable": false,
|
| 73 |
+
"description": "Central bank responsible for the instrument.",
|
| 74 |
+
"source_native": false,
|
| 75 |
+
"derived": false,
|
| 76 |
+
"null_semantics": "Not nullable."
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"name": "central_bank_code",
|
| 80 |
+
"arrow_type": "string",
|
| 81 |
+
"nullable": false,
|
| 82 |
+
"description": "Short central-bank code: RBI.",
|
| 83 |
+
"source_native": false,
|
| 84 |
+
"derived": false,
|
| 85 |
+
"null_semantics": "Not nullable."
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"name": "decision_authority",
|
| 89 |
+
"arrow_type": "string",
|
| 90 |
+
"nullable": true,
|
| 91 |
+
"description": "Authority identified by the source type, or null when not known.",
|
| 92 |
+
"source_native": false,
|
| 93 |
+
"derived": false,
|
| 94 |
+
"null_semantics": "Null means the value is unavailable in the canonical snapshot."
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"name": "instrument",
|
| 98 |
+
"arrow_type": "string",
|
| 99 |
+
"nullable": false,
|
| 100 |
+
"description": "Human-readable policy instrument name.",
|
| 101 |
+
"source_native": false,
|
| 102 |
+
"derived": false,
|
| 103 |
+
"null_semantics": "Not nullable."
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"name": "instrument_code",
|
| 107 |
+
"arrow_type": "string",
|
| 108 |
+
"nullable": false,
|
| 109 |
+
"description": "Stable machine-readable instrument code.",
|
| 110 |
+
"source_native": false,
|
| 111 |
+
"derived": false,
|
| 112 |
+
"null_semantics": "Not nullable."
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"name": "record_type",
|
| 116 |
+
"arrow_type": "string",
|
| 117 |
+
"nullable": false,
|
| 118 |
+
"description": "policy_decision for a policy-resolution record; historical_rate_observation for imported history.",
|
| 119 |
+
"source_native": false,
|
| 120 |
+
"derived": false,
|
| 121 |
+
"null_semantics": "Not nullable."
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"name": "date_semantics",
|
| 125 |
+
"arrow_type": "string",
|
| 126 |
+
"nullable": false,
|
| 127 |
+
"description": "Whether the date represents a resolution/effective date or a historical observation date.",
|
| 128 |
+
"source_native": false,
|
| 129 |
+
"derived": false,
|
| 130 |
+
"null_semantics": "Not nullable."
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"name": "decision_date",
|
| 134 |
+
"arrow_type": "date32[day]",
|
| 135 |
+
"nullable": true,
|
| 136 |
+
"description": "Date of the identified policy decision; null for imported historical observations.",
|
| 137 |
+
"source_native": false,
|
| 138 |
+
"derived": true,
|
| 139 |
+
"null_semantics": "Null means no separate policy-decision date is identified by the source record."
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"name": "effective_date",
|
| 143 |
+
"arrow_type": "date32[day]",
|
| 144 |
+
"nullable": false,
|
| 145 |
+
"description": "Date on which the canonical rate observation is effective or recorded.",
|
| 146 |
+
"source_native": true,
|
| 147 |
+
"derived": false,
|
| 148 |
+
"null_semantics": "Not nullable."
|
| 149 |
+
},
|
| 150 |
+
{
|
| 151 |
+
"name": "year",
|
| 152 |
+
"arrow_type": "int32",
|
| 153 |
+
"nullable": false,
|
| 154 |
+
"description": "Calendar year derived from effective_date.",
|
| 155 |
+
"source_native": false,
|
| 156 |
+
"derived": true,
|
| 157 |
+
"null_semantics": "Not nullable."
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"name": "month",
|
| 161 |
+
"arrow_type": "int8",
|
| 162 |
+
"nullable": false,
|
| 163 |
+
"description": "Calendar month number derived from effective_date.",
|
| 164 |
+
"source_native": false,
|
| 165 |
+
"derived": true,
|
| 166 |
+
"null_semantics": "Not nullable."
|
| 167 |
+
},
|
| 168 |
+
{
|
| 169 |
+
"name": "policy_rate_pct",
|
| 170 |
+
"arrow_type": "double",
|
| 171 |
+
"nullable": false,
|
| 172 |
+
"description": "Policy repo rate in percent, retained as a convenient numeric view.",
|
| 173 |
+
"source_native": true,
|
| 174 |
+
"derived": false,
|
| 175 |
+
"null_semantics": "Not nullable."
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"name": "policy_rate_bps",
|
| 179 |
+
"arrow_type": "int32",
|
| 180 |
+
"nullable": false,
|
| 181 |
+
"description": "Policy repo rate in basis points; exactly round(policy_rate_pct * 100).",
|
| 182 |
+
"source_native": false,
|
| 183 |
+
"derived": true,
|
| 184 |
+
"null_semantics": "Not nullable."
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"name": "previous_policy_rate_pct",
|
| 188 |
+
"arrow_type": "double",
|
| 189 |
+
"nullable": true,
|
| 190 |
+
"description": "Previous canonical policy rate in percent.",
|
| 191 |
+
"source_native": false,
|
| 192 |
+
"derived": true,
|
| 193 |
+
"null_semantics": "Null for the first canonical observation."
|
| 194 |
+
},
|
| 195 |
+
{
|
| 196 |
+
"name": "previous_policy_rate_bps",
|
| 197 |
+
"arrow_type": "int32",
|
| 198 |
+
"nullable": true,
|
| 199 |
+
"description": "Previous canonical policy rate in basis points.",
|
| 200 |
+
"source_native": false,
|
| 201 |
+
"derived": true,
|
| 202 |
+
"null_semantics": "Null for the first canonical observation."
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"name": "change_bps",
|
| 206 |
+
"arrow_type": "int32",
|
| 207 |
+
"nullable": false,
|
| 208 |
+
"description": "Signed change from the previous canonical policy rate in basis points; zero for the initial observation.",
|
| 209 |
+
"source_native": true,
|
| 210 |
+
"derived": false,
|
| 211 |
+
"null_semantics": "Not nullable."
|
| 212 |
+
},
|
| 213 |
+
{
|
| 214 |
+
"name": "action",
|
| 215 |
+
"arrow_type": "string",
|
| 216 |
+
"nullable": false,
|
| 217 |
+
"description": "Canonical transition label: initial, hike, cut, or hold.",
|
| 218 |
+
"source_native": true,
|
| 219 |
+
"derived": false,
|
| 220 |
+
"null_semantics": "Not nullable."
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"name": "stance",
|
| 224 |
+
"arrow_type": "string",
|
| 225 |
+
"nullable": true,
|
| 226 |
+
"description": "Monetary-policy stance when explicitly available.",
|
| 227 |
+
"source_native": true,
|
| 228 |
+
"derived": false,
|
| 229 |
+
"null_semantics": "Null means the canonical source does not provide a structured stance."
|
| 230 |
+
},
|
| 231 |
+
{
|
| 232 |
+
"name": "is_rate_change",
|
| 233 |
+
"arrow_type": "bool",
|
| 234 |
+
"nullable": false,
|
| 235 |
+
"description": "True when change_bps is non-zero.",
|
| 236 |
+
"source_native": false,
|
| 237 |
+
"derived": true,
|
| 238 |
+
"null_semantics": "Not nullable."
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"name": "decision_summary",
|
| 242 |
+
"arrow_type": "string",
|
| 243 |
+
"nullable": false,
|
| 244 |
+
"description": "Short deterministic factual summary generated from structured fields; source prose is not republished.",
|
| 245 |
+
"source_native": false,
|
| 246 |
+
"derived": true,
|
| 247 |
+
"null_semantics": "Not nullable."
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"name": "regime_id",
|
| 251 |
+
"arrow_type": "string",
|
| 252 |
+
"nullable": true,
|
| 253 |
+
"description": "Stable join key for the repository-provided regime interval containing effective_date.",
|
| 254 |
+
"source_native": false,
|
| 255 |
+
"derived": true,
|
| 256 |
+
"null_semantics": "Null means effective_date falls in a gap between regime intervals."
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"name": "regime_type",
|
| 260 |
+
"arrow_type": "string",
|
| 261 |
+
"nullable": true,
|
| 262 |
+
"description": "Repository-provided contextual regime type.",
|
| 263 |
+
"source_native": true,
|
| 264 |
+
"derived": false,
|
| 265 |
+
"null_semantics": "Null means the value is unavailable in the canonical snapshot."
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"name": "regime_label",
|
| 269 |
+
"arrow_type": "string",
|
| 270 |
+
"nullable": true,
|
| 271 |
+
"description": "Repository-provided contextual regime label.",
|
| 272 |
+
"source_native": true,
|
| 273 |
+
"derived": false,
|
| 274 |
+
"null_semantics": "Null means the value is unavailable in the canonical snapshot."
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"name": "primary_source_id",
|
| 278 |
+
"arrow_type": "string",
|
| 279 |
+
"nullable": false,
|
| 280 |
+
"description": "Highest-priority source attached to this decision under the deterministic source-priority policy.",
|
| 281 |
+
"source_native": false,
|
| 282 |
+
"derived": true,
|
| 283 |
+
"null_semantics": "Not nullable."
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"name": "primary_source_type",
|
| 287 |
+
"arrow_type": "string",
|
| 288 |
+
"nullable": false,
|
| 289 |
+
"description": "Type of primary_source_id.",
|
| 290 |
+
"source_native": false,
|
| 291 |
+
"derived": true,
|
| 292 |
+
"null_semantics": "Not nullable."
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"name": "primary_source_title",
|
| 296 |
+
"arrow_type": "string",
|
| 297 |
+
"nullable": false,
|
| 298 |
+
"description": "Title of primary_source_id.",
|
| 299 |
+
"source_native": false,
|
| 300 |
+
"derived": true,
|
| 301 |
+
"null_semantics": "Not nullable."
|
| 302 |
+
},
|
| 303 |
+
{
|
| 304 |
+
"name": "primary_source_url",
|
| 305 |
+
"arrow_type": "string",
|
| 306 |
+
"nullable": false,
|
| 307 |
+
"description": "URL of primary_source_id.",
|
| 308 |
+
"source_native": false,
|
| 309 |
+
"derived": true,
|
| 310 |
+
"null_semantics": "Not nullable."
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"name": "primary_source_published_at",
|
| 314 |
+
"arrow_type": "timestamp[us, tz=UTC]",
|
| 315 |
+
"nullable": true,
|
| 316 |
+
"description": "Publication timestamp of primary_source_id when supplied.",
|
| 317 |
+
"source_native": true,
|
| 318 |
+
"derived": false,
|
| 319 |
+
"null_semantics": "Null means the source record does not provide a publication timestamp."
|
| 320 |
+
},
|
| 321 |
+
{
|
| 322 |
+
"name": "primary_source_retrieved_at",
|
| 323 |
+
"arrow_type": "timestamp[us, tz=UTC]",
|
| 324 |
+
"nullable": false,
|
| 325 |
+
"description": "Retrieval timestamp of primary_source_id.",
|
| 326 |
+
"source_native": true,
|
| 327 |
+
"derived": false,
|
| 328 |
+
"null_semantics": "Not nullable."
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"name": "primary_source_checksum",
|
| 332 |
+
"arrow_type": "string",
|
| 333 |
+
"nullable": false,
|
| 334 |
+
"description": "SHA-256 checksum recorded for primary_source_id.",
|
| 335 |
+
"source_native": true,
|
| 336 |
+
"derived": false,
|
| 337 |
+
"null_semantics": "Not nullable."
|
| 338 |
+
},
|
| 339 |
+
{
|
| 340 |
+
"name": "source_ids",
|
| 341 |
+
"arrow_type": "list<item: string>",
|
| 342 |
+
"nullable": false,
|
| 343 |
+
"description": "All source identifiers attached to the canonical row, sorted deterministically.",
|
| 344 |
+
"source_native": false,
|
| 345 |
+
"derived": true,
|
| 346 |
+
"null_semantics": "Not nullable."
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"name": "source_count",
|
| 350 |
+
"arrow_type": "int32",
|
| 351 |
+
"nullable": false,
|
| 352 |
+
"description": "Number of distinct attached source identifiers.",
|
| 353 |
+
"source_native": false,
|
| 354 |
+
"derived": true,
|
| 355 |
+
"null_semantics": "Not nullable."
|
| 356 |
+
},
|
| 357 |
+
{
|
| 358 |
+
"name": "provenance_class",
|
| 359 |
+
"arrow_type": "string",
|
| 360 |
+
"nullable": false,
|
| 361 |
+
"description": "Strongest attached provenance class: official_primary, official_secondary, or legacy_import.",
|
| 362 |
+
"source_native": false,
|
| 363 |
+
"derived": false,
|
| 364 |
+
"null_semantics": "Not nullable."
|
| 365 |
+
},
|
| 366 |
+
{
|
| 367 |
+
"name": "verification_status",
|
| 368 |
+
"arrow_type": "string",
|
| 369 |
+
"nullable": false,
|
| 370 |
+
"description": "Deterministic verification label exposing primary, legacy, secondary, or mixed support.",
|
| 371 |
+
"source_native": false,
|
| 372 |
+
"derived": false,
|
| 373 |
+
"null_semantics": "Not nullable."
|
| 374 |
+
},
|
| 375 |
+
{
|
| 376 |
+
"name": "snapshot_id",
|
| 377 |
+
"arrow_type": "string",
|
| 378 |
+
"nullable": false,
|
| 379 |
+
"description": "SnapshotV2 identifier used as the build input.",
|
| 380 |
+
"source_native": true,
|
| 381 |
+
"derived": false,
|
| 382 |
+
"null_semantics": "Not nullable."
|
| 383 |
+
},
|
| 384 |
+
{
|
| 385 |
+
"name": "snapshot_checksum",
|
| 386 |
+
"arrow_type": "string",
|
| 387 |
+
"nullable": false,
|
| 388 |
+
"description": "SnapshotV2 content checksum used as the build input.",
|
| 389 |
+
"source_native": true,
|
| 390 |
+
"derived": false,
|
| 391 |
+
"null_semantics": "Not nullable."
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"name": "snapshot_retrieved_at",
|
| 395 |
+
"arrow_type": "timestamp[us, tz=UTC]",
|
| 396 |
+
"nullable": false,
|
| 397 |
+
"description": "SnapshotV2 retrieval timestamp.",
|
| 398 |
+
"source_native": false,
|
| 399 |
+
"derived": false,
|
| 400 |
+
"null_semantics": "Not nullable."
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"name": "dataset_schema_version",
|
| 404 |
+
"arrow_type": "string",
|
| 405 |
+
"nullable": false,
|
| 406 |
+
"description": "Independent semantic schema version for this dataset.",
|
| 407 |
+
"source_native": false,
|
| 408 |
+
"derived": false,
|
| 409 |
+
"null_semantics": "Not nullable."
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"name": "record_text",
|
| 413 |
+
"arrow_type": "string",
|
| 414 |
+
"nullable": false,
|
| 415 |
+
"description": "Deterministically generated factual sentence intended for search, RAG, and agent use.",
|
| 416 |
+
"source_native": false,
|
| 417 |
+
"derived": true,
|
| 418 |
+
"null_semantics": "Not nullable."
|
| 419 |
+
}
|
| 420 |
+
]
|
| 421 |
+
},
|
| 422 |
+
"annual": {
|
| 423 |
+
"row_grain": "one row per calendar year from the earliest through latest snapshot year",
|
| 424 |
+
"parquet_path": "data/annual.parquet",
|
| 425 |
+
"fields": [
|
| 426 |
+
{
|
| 427 |
+
"name": "year",
|
| 428 |
+
"arrow_type": "int32",
|
| 429 |
+
"nullable": false,
|
| 430 |
+
"description": "Calendar year, including years with no canonical ledger records.",
|
| 431 |
+
"source_native": false,
|
| 432 |
+
"derived": false,
|
| 433 |
+
"null_semantics": "Not nullable."
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"name": "start_policy_rate_pct",
|
| 437 |
+
"arrow_type": "double",
|
| 438 |
+
"nullable": true,
|
| 439 |
+
"description": "Rate in force immediately before January 1 of the year.",
|
| 440 |
+
"source_native": false,
|
| 441 |
+
"derived": true,
|
| 442 |
+
"null_semantics": "Null when no earlier canonical rate is available."
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"name": "end_policy_rate_pct",
|
| 446 |
+
"arrow_type": "double",
|
| 447 |
+
"nullable": true,
|
| 448 |
+
"description": "Rate in force on December 31 of the year.",
|
| 449 |
+
"source_native": false,
|
| 450 |
+
"derived": true,
|
| 451 |
+
"null_semantics": "Null when no canonical rate is in force by year end."
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"name": "min_policy_rate_pct",
|
| 455 |
+
"arrow_type": "double",
|
| 456 |
+
"nullable": true,
|
| 457 |
+
"description": "Minimum known in-force rate during the year, including a carry-in rate.",
|
| 458 |
+
"source_native": false,
|
| 459 |
+
"derived": true,
|
| 460 |
+
"null_semantics": "Null when no canonical rate is known during the year."
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"name": "max_policy_rate_pct",
|
| 464 |
+
"arrow_type": "double",
|
| 465 |
+
"nullable": true,
|
| 466 |
+
"description": "Maximum known in-force rate during the year, including a carry-in rate.",
|
| 467 |
+
"source_native": false,
|
| 468 |
+
"derived": true,
|
| 469 |
+
"null_semantics": "Null when no canonical rate is known during the year."
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"name": "net_change_bps",
|
| 473 |
+
"arrow_type": "int32",
|
| 474 |
+
"nullable": true,
|
| 475 |
+
"description": "End rate minus start rate in basis points; null if either boundary is unknown.",
|
| 476 |
+
"source_native": false,
|
| 477 |
+
"derived": true,
|
| 478 |
+
"null_semantics": "Null when start_policy_rate_pct or end_policy_rate_pct is null."
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"name": "gross_hikes_bps",
|
| 482 |
+
"arrow_type": "int32",
|
| 483 |
+
"nullable": false,
|
| 484 |
+
"description": "Sum of positive canonical transitions within the calendar year.",
|
| 485 |
+
"source_native": false,
|
| 486 |
+
"derived": false,
|
| 487 |
+
"null_semantics": "Not nullable."
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"name": "gross_cuts_bps",
|
| 491 |
+
"arrow_type": "int32",
|
| 492 |
+
"nullable": false,
|
| 493 |
+
"description": "Absolute sum of negative canonical transitions within the calendar year.",
|
| 494 |
+
"source_native": false,
|
| 495 |
+
"derived": false,
|
| 496 |
+
"null_semantics": "Not nullable."
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"name": "decision_count",
|
| 500 |
+
"arrow_type": "int32",
|
| 501 |
+
"nullable": false,
|
| 502 |
+
"description": "Count of all canonical ledger rows whose effective_date falls in the year.",
|
| 503 |
+
"source_native": false,
|
| 504 |
+
"derived": false,
|
| 505 |
+
"null_semantics": "Not nullable."
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"name": "policy_decision_count",
|
| 509 |
+
"arrow_type": "int32",
|
| 510 |
+
"nullable": false,
|
| 511 |
+
"description": "Count of policy_decision rows in the year.",
|
| 512 |
+
"source_native": false,
|
| 513 |
+
"derived": false,
|
| 514 |
+
"null_semantics": "Not nullable."
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"name": "historical_observation_count",
|
| 518 |
+
"arrow_type": "int32",
|
| 519 |
+
"nullable": false,
|
| 520 |
+
"description": "Count of historical_rate_observation rows in the year.",
|
| 521 |
+
"source_native": false,
|
| 522 |
+
"derived": false,
|
| 523 |
+
"null_semantics": "Not nullable."
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"name": "hike_count",
|
| 527 |
+
"arrow_type": "int32",
|
| 528 |
+
"nullable": false,
|
| 529 |
+
"description": "Count of canonical rows labeled hike in the year.",
|
| 530 |
+
"source_native": false,
|
| 531 |
+
"derived": false,
|
| 532 |
+
"null_semantics": "Not nullable."
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"name": "cut_count",
|
| 536 |
+
"arrow_type": "int32",
|
| 537 |
+
"nullable": false,
|
| 538 |
+
"description": "Count of canonical rows labeled cut in the year.",
|
| 539 |
+
"source_native": false,
|
| 540 |
+
"derived": false,
|
| 541 |
+
"null_semantics": "Not nullable."
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"name": "hold_count",
|
| 545 |
+
"arrow_type": "int32",
|
| 546 |
+
"nullable": false,
|
| 547 |
+
"description": "Count of canonical rows labeled hold in the year.",
|
| 548 |
+
"source_native": false,
|
| 549 |
+
"derived": false,
|
| 550 |
+
"null_semantics": "Not nullable."
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"name": "first_decision_date",
|
| 554 |
+
"arrow_type": "date32[day]",
|
| 555 |
+
"nullable": true,
|
| 556 |
+
"description": "Effective date of the first canonical row in the year.",
|
| 557 |
+
"source_native": false,
|
| 558 |
+
"derived": true,
|
| 559 |
+
"null_semantics": "Null when the year has no canonical ledger rows."
|
| 560 |
+
},
|
| 561 |
+
{
|
| 562 |
+
"name": "last_decision_date",
|
| 563 |
+
"arrow_type": "date32[day]",
|
| 564 |
+
"nullable": true,
|
| 565 |
+
"description": "Effective date of the last canonical row in the year.",
|
| 566 |
+
"source_native": false,
|
| 567 |
+
"derived": true,
|
| 568 |
+
"null_semantics": "Null when the year has no canonical ledger rows."
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"name": "year_end_action",
|
| 572 |
+
"arrow_type": "string",
|
| 573 |
+
"nullable": true,
|
| 574 |
+
"description": "Action of the final in-year canonical row; null when the year-end rate is carried in from an earlier year.",
|
| 575 |
+
"source_native": false,
|
| 576 |
+
"derived": true,
|
| 577 |
+
"null_semantics": "Null when no canonical row in the year establishes the year-end state."
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"name": "year_end_stance",
|
| 581 |
+
"arrow_type": "string",
|
| 582 |
+
"nullable": true,
|
| 583 |
+
"description": "Stance of the final in-year canonical row.",
|
| 584 |
+
"source_native": false,
|
| 585 |
+
"derived": true,
|
| 586 |
+
"null_semantics": "Null when no in-year stance is available."
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"name": "year_end_regime_id",
|
| 590 |
+
"arrow_type": "string",
|
| 591 |
+
"nullable": true,
|
| 592 |
+
"description": "Regime containing December 31 under start-inclusive/end-exclusive matching.",
|
| 593 |
+
"source_native": false,
|
| 594 |
+
"derived": true,
|
| 595 |
+
"null_semantics": "Null when December 31 falls in a regime gap."
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"name": "year_end_regime_type",
|
| 599 |
+
"arrow_type": "string",
|
| 600 |
+
"nullable": true,
|
| 601 |
+
"description": "Repository-provided regime type at December 31.",
|
| 602 |
+
"source_native": false,
|
| 603 |
+
"derived": true,
|
| 604 |
+
"null_semantics": "Null means the value is unavailable in the canonical snapshot."
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"name": "year_end_regime_label",
|
| 608 |
+
"arrow_type": "string",
|
| 609 |
+
"nullable": true,
|
| 610 |
+
"description": "Repository-provided regime label at December 31.",
|
| 611 |
+
"source_native": false,
|
| 612 |
+
"derived": true,
|
| 613 |
+
"null_semantics": "Null means the value is unavailable in the canonical snapshot."
|
| 614 |
+
},
|
| 615 |
+
{
|
| 616 |
+
"name": "year_end_source_id",
|
| 617 |
+
"arrow_type": "string",
|
| 618 |
+
"nullable": true,
|
| 619 |
+
"description": "Primary source supporting the rate in force at year end.",
|
| 620 |
+
"source_native": false,
|
| 621 |
+
"derived": true,
|
| 622 |
+
"null_semantics": "Null when no year-end rate is known."
|
| 623 |
+
},
|
| 624 |
+
{
|
| 625 |
+
"name": "year_end_source_url",
|
| 626 |
+
"arrow_type": "string",
|
| 627 |
+
"nullable": true,
|
| 628 |
+
"description": "URL of year_end_source_id.",
|
| 629 |
+
"source_native": false,
|
| 630 |
+
"derived": true,
|
| 631 |
+
"null_semantics": "Null means the value is unavailable in the canonical snapshot."
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"name": "source_count",
|
| 635 |
+
"arrow_type": "int32",
|
| 636 |
+
"nullable": false,
|
| 637 |
+
"description": "Distinct sources used by in-year canonical rows and the year-end carry-in state.",
|
| 638 |
+
"source_native": false,
|
| 639 |
+
"derived": false,
|
| 640 |
+
"null_semantics": "Not nullable."
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"name": "provenance_summary",
|
| 644 |
+
"arrow_type": "string",
|
| 645 |
+
"nullable": false,
|
| 646 |
+
"description": "Sorted pipe-delimited provenance classes represented in the year.",
|
| 647 |
+
"source_native": false,
|
| 648 |
+
"derived": false,
|
| 649 |
+
"null_semantics": "Not nullable."
|
| 650 |
+
},
|
| 651 |
+
{
|
| 652 |
+
"name": "snapshot_id",
|
| 653 |
+
"arrow_type": "string",
|
| 654 |
+
"nullable": false,
|
| 655 |
+
"description": "SnapshotV2 identifier used as the build input.",
|
| 656 |
+
"source_native": false,
|
| 657 |
+
"derived": false,
|
| 658 |
+
"null_semantics": "Not nullable."
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"name": "snapshot_checksum",
|
| 662 |
+
"arrow_type": "string",
|
| 663 |
+
"nullable": false,
|
| 664 |
+
"description": "SnapshotV2 content checksum used as the build input.",
|
| 665 |
+
"source_native": false,
|
| 666 |
+
"derived": false,
|
| 667 |
+
"null_semantics": "Not nullable."
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"name": "snapshot_retrieved_at",
|
| 671 |
+
"arrow_type": "timestamp[us, tz=UTC]",
|
| 672 |
+
"nullable": false,
|
| 673 |
+
"description": "SnapshotV2 retrieval timestamp.",
|
| 674 |
+
"source_native": false,
|
| 675 |
+
"derived": false,
|
| 676 |
+
"null_semantics": "Not nullable."
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"name": "dataset_schema_version",
|
| 680 |
+
"arrow_type": "string",
|
| 681 |
+
"nullable": false,
|
| 682 |
+
"description": "Independent semantic schema version for this dataset.",
|
| 683 |
+
"source_native": false,
|
| 684 |
+
"derived": false,
|
| 685 |
+
"null_semantics": "Not nullable."
|
| 686 |
+
},
|
| 687 |
+
{
|
| 688 |
+
"name": "record_text",
|
| 689 |
+
"arrow_type": "string",
|
| 690 |
+
"nullable": false,
|
| 691 |
+
"description": "Deterministically generated factual annual summary for search, RAG, and agent use.",
|
| 692 |
+
"source_native": false,
|
| 693 |
+
"derived": true,
|
| 694 |
+
"null_semantics": "Not nullable."
|
| 695 |
+
}
|
| 696 |
+
]
|
| 697 |
+
},
|
| 698 |
+
"sources": {
|
| 699 |
+
"row_grain": "one row per source document/resource",
|
| 700 |
+
"parquet_path": "data/sources.parquet",
|
| 701 |
+
"fields": [
|
| 702 |
+
{
|
| 703 |
+
"name": "source_id",
|
| 704 |
+
"arrow_type": "string",
|
| 705 |
+
"nullable": false,
|
| 706 |
+
"description": "Stable source identifier from SnapshotV2.",
|
| 707 |
+
"source_native": false,
|
| 708 |
+
"derived": false,
|
| 709 |
+
"null_semantics": "Not nullable."
|
| 710 |
+
},
|
| 711 |
+
{
|
| 712 |
+
"name": "publisher",
|
| 713 |
+
"arrow_type": "string",
|
| 714 |
+
"nullable": false,
|
| 715 |
+
"description": "Publisher derived from the source URL/domain.",
|
| 716 |
+
"source_native": false,
|
| 717 |
+
"derived": false,
|
| 718 |
+
"null_semantics": "Not nullable."
|
| 719 |
+
},
|
| 720 |
+
{
|
| 721 |
+
"name": "source_type",
|
| 722 |
+
"arrow_type": "string",
|
| 723 |
+
"nullable": false,
|
| 724 |
+
"description": "Source adapter/type from SnapshotV2.",
|
| 725 |
+
"source_native": true,
|
| 726 |
+
"derived": false,
|
| 727 |
+
"null_semantics": "Not nullable."
|
| 728 |
+
},
|
| 729 |
+
{
|
| 730 |
+
"name": "title",
|
| 731 |
+
"arrow_type": "string",
|
| 732 |
+
"nullable": false,
|
| 733 |
+
"description": "Source title from SnapshotV2.",
|
| 734 |
+
"source_native": true,
|
| 735 |
+
"derived": false,
|
| 736 |
+
"null_semantics": "Not nullable."
|
| 737 |
+
},
|
| 738 |
+
{
|
| 739 |
+
"name": "url",
|
| 740 |
+
"arrow_type": "string",
|
| 741 |
+
"nullable": false,
|
| 742 |
+
"description": "Authoritative source URL from SnapshotV2.",
|
| 743 |
+
"source_native": true,
|
| 744 |
+
"derived": false,
|
| 745 |
+
"null_semantics": "Not nullable."
|
| 746 |
+
},
|
| 747 |
+
{
|
| 748 |
+
"name": "published_at",
|
| 749 |
+
"arrow_type": "timestamp[us, tz=UTC]",
|
| 750 |
+
"nullable": true,
|
| 751 |
+
"description": "Source publication timestamp when supplied.",
|
| 752 |
+
"source_native": true,
|
| 753 |
+
"derived": false,
|
| 754 |
+
"null_semantics": "Null means the source record has no publication timestamp."
|
| 755 |
+
},
|
| 756 |
+
{
|
| 757 |
+
"name": "retrieved_at",
|
| 758 |
+
"arrow_type": "timestamp[us, tz=UTC]",
|
| 759 |
+
"nullable": false,
|
| 760 |
+
"description": "Source retrieval timestamp.",
|
| 761 |
+
"source_native": true,
|
| 762 |
+
"derived": false,
|
| 763 |
+
"null_semantics": "Not nullable."
|
| 764 |
+
},
|
| 765 |
+
{
|
| 766 |
+
"name": "checksum",
|
| 767 |
+
"arrow_type": "string",
|
| 768 |
+
"nullable": false,
|
| 769 |
+
"description": "SHA-256 checksum recorded for the source.",
|
| 770 |
+
"source_native": true,
|
| 771 |
+
"derived": false,
|
| 772 |
+
"null_semantics": "Not nullable."
|
| 773 |
+
},
|
| 774 |
+
{
|
| 775 |
+
"name": "is_primary_source",
|
| 776 |
+
"arrow_type": "bool",
|
| 777 |
+
"nullable": false,
|
| 778 |
+
"description": "Whether the source is classified as a direct primary RBI rate source.",
|
| 779 |
+
"source_native": false,
|
| 780 |
+
"derived": false,
|
| 781 |
+
"null_semantics": "Not nullable."
|
| 782 |
+
},
|
| 783 |
+
{
|
| 784 |
+
"name": "provenance_class",
|
| 785 |
+
"arrow_type": "string",
|
| 786 |
+
"nullable": false,
|
| 787 |
+
"description": "official_primary, official_secondary, or legacy_import.",
|
| 788 |
+
"source_native": false,
|
| 789 |
+
"derived": false,
|
| 790 |
+
"null_semantics": "Not nullable."
|
| 791 |
+
}
|
| 792 |
+
]
|
| 793 |
+
},
|
| 794 |
+
"events": {
|
| 795 |
+
"row_grain": "one row per contextual macro/policy event",
|
| 796 |
+
"parquet_path": "data/events.parquet",
|
| 797 |
+
"fields": [
|
| 798 |
+
{
|
| 799 |
+
"name": "event_id",
|
| 800 |
+
"arrow_type": "string",
|
| 801 |
+
"nullable": false,
|
| 802 |
+
"description": "Stable contextual event identifier from SnapshotV2.",
|
| 803 |
+
"source_native": false,
|
| 804 |
+
"derived": false,
|
| 805 |
+
"null_semantics": "Not nullable."
|
| 806 |
+
},
|
| 807 |
+
{
|
| 808 |
+
"name": "date",
|
| 809 |
+
"arrow_type": "date32[day]",
|
| 810 |
+
"nullable": false,
|
| 811 |
+
"description": "Calendar date of the contextual event.",
|
| 812 |
+
"source_native": true,
|
| 813 |
+
"derived": false,
|
| 814 |
+
"null_semantics": "Not nullable."
|
| 815 |
+
},
|
| 816 |
+
{
|
| 817 |
+
"name": "label",
|
| 818 |
+
"arrow_type": "string",
|
| 819 |
+
"nullable": false,
|
| 820 |
+
"description": "Short event label.",
|
| 821 |
+
"source_native": true,
|
| 822 |
+
"derived": false,
|
| 823 |
+
"null_semantics": "Not nullable."
|
| 824 |
+
},
|
| 825 |
+
{
|
| 826 |
+
"name": "description",
|
| 827 |
+
"arrow_type": "string",
|
| 828 |
+
"nullable": false,
|
| 829 |
+
"description": "Contextual event description from the repository snapshot.",
|
| 830 |
+
"source_native": true,
|
| 831 |
+
"derived": false,
|
| 832 |
+
"null_semantics": "Not nullable."
|
| 833 |
+
},
|
| 834 |
+
{
|
| 835 |
+
"name": "event_type",
|
| 836 |
+
"arrow_type": "string",
|
| 837 |
+
"nullable": false,
|
| 838 |
+
"description": "Repository event type.",
|
| 839 |
+
"source_native": true,
|
| 840 |
+
"derived": false,
|
| 841 |
+
"null_semantics": "Not nullable."
|
| 842 |
+
},
|
| 843 |
+
{
|
| 844 |
+
"name": "citation_url",
|
| 845 |
+
"arrow_type": "string",
|
| 846 |
+
"nullable": false,
|
| 847 |
+
"description": "Citation URL for the contextual event.",
|
| 848 |
+
"source_native": true,
|
| 849 |
+
"derived": false,
|
| 850 |
+
"null_semantics": "Not nullable."
|
| 851 |
+
}
|
| 852 |
+
]
|
| 853 |
+
},
|
| 854 |
+
"regimes": {
|
| 855 |
+
"row_grain": "one row per repository-provided regime interval",
|
| 856 |
+
"parquet_path": "data/regimes.parquet",
|
| 857 |
+
"fields": [
|
| 858 |
+
{
|
| 859 |
+
"name": "regime_id",
|
| 860 |
+
"arrow_type": "string",
|
| 861 |
+
"nullable": false,
|
| 862 |
+
"description": "Stable deterministic regime interval identifier.",
|
| 863 |
+
"source_native": false,
|
| 864 |
+
"derived": false,
|
| 865 |
+
"null_semantics": "Not nullable."
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"name": "start_date",
|
| 869 |
+
"arrow_type": "date32[day]",
|
| 870 |
+
"nullable": false,
|
| 871 |
+
"description": "Inclusive start date of the contextual regime.",
|
| 872 |
+
"source_native": true,
|
| 873 |
+
"derived": false,
|
| 874 |
+
"null_semantics": "Not nullable."
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"name": "end_date",
|
| 878 |
+
"arrow_type": "date32[day]",
|
| 879 |
+
"nullable": true,
|
| 880 |
+
"description": "Exclusive end date of the contextual regime.",
|
| 881 |
+
"source_native": true,
|
| 882 |
+
"derived": false,
|
| 883 |
+
"null_semantics": "Null represents an open-ended interval."
|
| 884 |
+
},
|
| 885 |
+
{
|
| 886 |
+
"name": "regime_type",
|
| 887 |
+
"arrow_type": "string",
|
| 888 |
+
"nullable": false,
|
| 889 |
+
"description": "Repository-provided contextual regime type.",
|
| 890 |
+
"source_native": true,
|
| 891 |
+
"derived": false,
|
| 892 |
+
"null_semantics": "Not nullable."
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"name": "label",
|
| 896 |
+
"arrow_type": "string",
|
| 897 |
+
"nullable": false,
|
| 898 |
+
"description": "Repository-provided contextual regime label.",
|
| 899 |
+
"source_native": true,
|
| 900 |
+
"derived": false,
|
| 901 |
+
"null_semantics": "Not nullable."
|
| 902 |
+
}
|
| 903 |
+
]
|
| 904 |
+
}
|
| 905 |
+
},
|
| 906 |
+
"relationships": [
|
| 907 |
+
"decisions.source_ids resolves to sources.source_id.",
|
| 908 |
+
"decisions.primary_source_id and annual.year_end_source_id resolve to sources.source_id.",
|
| 909 |
+
"decisions.regime_id and annual.year_end_regime_id resolve to regimes.regime_id when non-null.",
|
| 910 |
+
"events are contextual and are not joined to decisions or interpreted as causal explanations."
|
| 911 |
+
],
|
| 912 |
+
"semantic_rules": [
|
| 913 |
+
"Parquet is canonical; CSV and JSONL are interoperability exports and are not additional Hugging Face configurations.",
|
| 914 |
+
"decision_date is null for imported historical observations because the source does not identify a separate policy decision date.",
|
| 915 |
+
"effective_date is the canonical ledger ordering/effective date for every decision row.",
|
| 916 |
+
"annual start rate is the latest known rate strictly before January 1; end rate is the latest known rate on or before December 31.",
|
| 917 |
+
"annual gross hikes and gross cuts use only canonical transitions within that year; a first observation is not a hike or cut.",
|
| 918 |
+
"regime intervals use start-inclusive/end-exclusive matching; gaps remain null.",
|
| 919 |
+
"unknown values are typed nulls, never empty strings or sentinel labels."
|
| 920 |
+
],
|
| 921 |
+
"csv_conventions": {
|
| 922 |
+
"null": "empty cell",
|
| 923 |
+
"lists": "compact JSON arrays, for example [\"source-a\",\"source-b\"]",
|
| 924 |
+
"booleans": "true or false",
|
| 925 |
+
"timestamps": "UTC ISO-8601 text ending in Z"
|
| 926 |
+
}
|
| 927 |
+
}
|
schema/decisions.schema.json
ADDED
|
@@ -0,0 +1,437 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
| 3 |
+
"$id": "https://huggingface.co/datasets/ashwingopalsamy/india-repo-rate-dataset/raw/main/schema/decisions.schema.json",
|
| 4 |
+
"title": "RBI repo-rate dataset — decisions",
|
| 5 |
+
"description": "Schema for the decisions configuration of the independent RBI repo-rate dataset.",
|
| 6 |
+
"type": "object",
|
| 7 |
+
"additionalProperties": false,
|
| 8 |
+
"properties": {
|
| 9 |
+
"decision_id": {
|
| 10 |
+
"type": "string",
|
| 11 |
+
"description": "Stable dataset-generated identifier for one canonical ledger row.",
|
| 12 |
+
"x-arrow-type": "string",
|
| 13 |
+
"x-source-native": false,
|
| 14 |
+
"x-derived": false,
|
| 15 |
+
"x-null-semantics": "Not nullable."
|
| 16 |
+
},
|
| 17 |
+
"snapshot_decision_id": {
|
| 18 |
+
"type": "string",
|
| 19 |
+
"description": "Original decision identifier from SnapshotV2.",
|
| 20 |
+
"x-arrow-type": "string",
|
| 21 |
+
"x-source-native": true,
|
| 22 |
+
"x-derived": false,
|
| 23 |
+
"x-null-semantics": "Not nullable."
|
| 24 |
+
},
|
| 25 |
+
"canonical_key": {
|
| 26 |
+
"type": "string",
|
| 27 |
+
"description": "Globally readable instrument/date key: IN:RBI:policy_repo_rate:YYYY-MM-DD.",
|
| 28 |
+
"x-arrow-type": "string",
|
| 29 |
+
"x-source-native": false,
|
| 30 |
+
"x-derived": true,
|
| 31 |
+
"x-null-semantics": "Not nullable."
|
| 32 |
+
},
|
| 33 |
+
"jurisdiction": {
|
| 34 |
+
"type": "string",
|
| 35 |
+
"description": "ISO 3166-1 alpha-2 jurisdiction code: IN.",
|
| 36 |
+
"x-arrow-type": "string",
|
| 37 |
+
"x-source-native": false,
|
| 38 |
+
"x-derived": false,
|
| 39 |
+
"x-null-semantics": "Not nullable."
|
| 40 |
+
},
|
| 41 |
+
"country": {
|
| 42 |
+
"type": "string",
|
| 43 |
+
"description": "Country name: India.",
|
| 44 |
+
"x-arrow-type": "string",
|
| 45 |
+
"x-source-native": false,
|
| 46 |
+
"x-derived": false,
|
| 47 |
+
"x-null-semantics": "Not nullable."
|
| 48 |
+
},
|
| 49 |
+
"central_bank": {
|
| 50 |
+
"type": "string",
|
| 51 |
+
"description": "Central bank responsible for the instrument.",
|
| 52 |
+
"x-arrow-type": "string",
|
| 53 |
+
"x-source-native": false,
|
| 54 |
+
"x-derived": false,
|
| 55 |
+
"x-null-semantics": "Not nullable."
|
| 56 |
+
},
|
| 57 |
+
"central_bank_code": {
|
| 58 |
+
"type": "string",
|
| 59 |
+
"description": "Short central-bank code: RBI.",
|
| 60 |
+
"x-arrow-type": "string",
|
| 61 |
+
"x-source-native": false,
|
| 62 |
+
"x-derived": false,
|
| 63 |
+
"x-null-semantics": "Not nullable."
|
| 64 |
+
},
|
| 65 |
+
"decision_authority": {
|
| 66 |
+
"type": [
|
| 67 |
+
"string",
|
| 68 |
+
"null"
|
| 69 |
+
],
|
| 70 |
+
"description": "Authority identified by the source type, or null when not known.",
|
| 71 |
+
"x-arrow-type": "string",
|
| 72 |
+
"x-source-native": false,
|
| 73 |
+
"x-derived": false,
|
| 74 |
+
"x-null-semantics": "Null means the value is unavailable in the canonical snapshot."
|
| 75 |
+
},
|
| 76 |
+
"instrument": {
|
| 77 |
+
"type": "string",
|
| 78 |
+
"description": "Human-readable policy instrument name.",
|
| 79 |
+
"x-arrow-type": "string",
|
| 80 |
+
"x-source-native": false,
|
| 81 |
+
"x-derived": false,
|
| 82 |
+
"x-null-semantics": "Not nullable."
|
| 83 |
+
},
|
| 84 |
+
"instrument_code": {
|
| 85 |
+
"type": "string",
|
| 86 |
+
"description": "Stable machine-readable instrument code.",
|
| 87 |
+
"x-arrow-type": "string",
|
| 88 |
+
"x-source-native": false,
|
| 89 |
+
"x-derived": false,
|
| 90 |
+
"x-null-semantics": "Not nullable."
|
| 91 |
+
},
|
| 92 |
+
"record_type": {
|
| 93 |
+
"type": "string",
|
| 94 |
+
"description": "policy_decision for a policy-resolution record; historical_rate_observation for imported history.",
|
| 95 |
+
"x-arrow-type": "string",
|
| 96 |
+
"x-source-native": false,
|
| 97 |
+
"x-derived": false,
|
| 98 |
+
"x-null-semantics": "Not nullable."
|
| 99 |
+
},
|
| 100 |
+
"date_semantics": {
|
| 101 |
+
"type": "string",
|
| 102 |
+
"description": "Whether the date represents a resolution/effective date or a historical observation date.",
|
| 103 |
+
"x-arrow-type": "string",
|
| 104 |
+
"x-source-native": false,
|
| 105 |
+
"x-derived": false,
|
| 106 |
+
"x-null-semantics": "Not nullable."
|
| 107 |
+
},
|
| 108 |
+
"decision_date": {
|
| 109 |
+
"type": [
|
| 110 |
+
"string",
|
| 111 |
+
"null"
|
| 112 |
+
],
|
| 113 |
+
"format": "date",
|
| 114 |
+
"description": "Date of the identified policy decision; null for imported historical observations.",
|
| 115 |
+
"x-arrow-type": "date32[day]",
|
| 116 |
+
"x-source-native": false,
|
| 117 |
+
"x-derived": true,
|
| 118 |
+
"x-null-semantics": "Null means no separate policy-decision date is identified by the source record."
|
| 119 |
+
},
|
| 120 |
+
"effective_date": {
|
| 121 |
+
"type": "string",
|
| 122 |
+
"format": "date",
|
| 123 |
+
"description": "Date on which the canonical rate observation is effective or recorded.",
|
| 124 |
+
"x-arrow-type": "date32[day]",
|
| 125 |
+
"x-source-native": true,
|
| 126 |
+
"x-derived": false,
|
| 127 |
+
"x-null-semantics": "Not nullable."
|
| 128 |
+
},
|
| 129 |
+
"year": {
|
| 130 |
+
"type": "integer",
|
| 131 |
+
"description": "Calendar year derived from effective_date.",
|
| 132 |
+
"x-arrow-type": "int32",
|
| 133 |
+
"x-source-native": false,
|
| 134 |
+
"x-derived": true,
|
| 135 |
+
"x-null-semantics": "Not nullable."
|
| 136 |
+
},
|
| 137 |
+
"month": {
|
| 138 |
+
"type": "integer",
|
| 139 |
+
"description": "Calendar month number derived from effective_date.",
|
| 140 |
+
"x-arrow-type": "int8",
|
| 141 |
+
"x-source-native": false,
|
| 142 |
+
"x-derived": true,
|
| 143 |
+
"x-null-semantics": "Not nullable."
|
| 144 |
+
},
|
| 145 |
+
"policy_rate_pct": {
|
| 146 |
+
"type": "number",
|
| 147 |
+
"description": "Policy repo rate in percent, retained as a convenient numeric view.",
|
| 148 |
+
"x-arrow-type": "double",
|
| 149 |
+
"x-source-native": true,
|
| 150 |
+
"x-derived": false,
|
| 151 |
+
"x-null-semantics": "Not nullable."
|
| 152 |
+
},
|
| 153 |
+
"policy_rate_bps": {
|
| 154 |
+
"type": "integer",
|
| 155 |
+
"description": "Policy repo rate in basis points; exactly round(policy_rate_pct * 100).",
|
| 156 |
+
"x-arrow-type": "int32",
|
| 157 |
+
"x-source-native": false,
|
| 158 |
+
"x-derived": true,
|
| 159 |
+
"x-null-semantics": "Not nullable."
|
| 160 |
+
},
|
| 161 |
+
"previous_policy_rate_pct": {
|
| 162 |
+
"type": [
|
| 163 |
+
"number",
|
| 164 |
+
"null"
|
| 165 |
+
],
|
| 166 |
+
"description": "Previous canonical policy rate in percent.",
|
| 167 |
+
"x-arrow-type": "double",
|
| 168 |
+
"x-source-native": false,
|
| 169 |
+
"x-derived": true,
|
| 170 |
+
"x-null-semantics": "Null for the first canonical observation."
|
| 171 |
+
},
|
| 172 |
+
"previous_policy_rate_bps": {
|
| 173 |
+
"type": [
|
| 174 |
+
"integer",
|
| 175 |
+
"null"
|
| 176 |
+
],
|
| 177 |
+
"description": "Previous canonical policy rate in basis points.",
|
| 178 |
+
"x-arrow-type": "int32",
|
| 179 |
+
"x-source-native": false,
|
| 180 |
+
"x-derived": true,
|
| 181 |
+
"x-null-semantics": "Null for the first canonical observation."
|
| 182 |
+
},
|
| 183 |
+
"change_bps": {
|
| 184 |
+
"type": "integer",
|
| 185 |
+
"description": "Signed change from the previous canonical policy rate in basis points; zero for the initial observation.",
|
| 186 |
+
"x-arrow-type": "int32",
|
| 187 |
+
"x-source-native": true,
|
| 188 |
+
"x-derived": false,
|
| 189 |
+
"x-null-semantics": "Not nullable."
|
| 190 |
+
},
|
| 191 |
+
"action": {
|
| 192 |
+
"type": "string",
|
| 193 |
+
"description": "Canonical transition label: initial, hike, cut, or hold.",
|
| 194 |
+
"x-arrow-type": "string",
|
| 195 |
+
"x-source-native": true,
|
| 196 |
+
"x-derived": false,
|
| 197 |
+
"x-null-semantics": "Not nullable."
|
| 198 |
+
},
|
| 199 |
+
"stance": {
|
| 200 |
+
"type": [
|
| 201 |
+
"string",
|
| 202 |
+
"null"
|
| 203 |
+
],
|
| 204 |
+
"description": "Monetary-policy stance when explicitly available.",
|
| 205 |
+
"x-arrow-type": "string",
|
| 206 |
+
"x-source-native": true,
|
| 207 |
+
"x-derived": false,
|
| 208 |
+
"x-null-semantics": "Null means the canonical source does not provide a structured stance."
|
| 209 |
+
},
|
| 210 |
+
"is_rate_change": {
|
| 211 |
+
"type": "boolean",
|
| 212 |
+
"description": "True when change_bps is non-zero.",
|
| 213 |
+
"x-arrow-type": "bool",
|
| 214 |
+
"x-source-native": false,
|
| 215 |
+
"x-derived": true,
|
| 216 |
+
"x-null-semantics": "Not nullable."
|
| 217 |
+
},
|
| 218 |
+
"decision_summary": {
|
| 219 |
+
"type": "string",
|
| 220 |
+
"description": "Short deterministic factual summary generated from structured fields; source prose is not republished.",
|
| 221 |
+
"x-arrow-type": "string",
|
| 222 |
+
"x-source-native": false,
|
| 223 |
+
"x-derived": true,
|
| 224 |
+
"x-null-semantics": "Not nullable."
|
| 225 |
+
},
|
| 226 |
+
"regime_id": {
|
| 227 |
+
"type": [
|
| 228 |
+
"string",
|
| 229 |
+
"null"
|
| 230 |
+
],
|
| 231 |
+
"description": "Stable join key for the repository-provided regime interval containing effective_date.",
|
| 232 |
+
"x-arrow-type": "string",
|
| 233 |
+
"x-source-native": false,
|
| 234 |
+
"x-derived": true,
|
| 235 |
+
"x-null-semantics": "Null means effective_date falls in a gap between regime intervals."
|
| 236 |
+
},
|
| 237 |
+
"regime_type": {
|
| 238 |
+
"type": [
|
| 239 |
+
"string",
|
| 240 |
+
"null"
|
| 241 |
+
],
|
| 242 |
+
"description": "Repository-provided contextual regime type.",
|
| 243 |
+
"x-arrow-type": "string",
|
| 244 |
+
"x-source-native": true,
|
| 245 |
+
"x-derived": false,
|
| 246 |
+
"x-null-semantics": "Null means the value is unavailable in the canonical snapshot."
|
| 247 |
+
},
|
| 248 |
+
"regime_label": {
|
| 249 |
+
"type": [
|
| 250 |
+
"string",
|
| 251 |
+
"null"
|
| 252 |
+
],
|
| 253 |
+
"description": "Repository-provided contextual regime label.",
|
| 254 |
+
"x-arrow-type": "string",
|
| 255 |
+
"x-source-native": true,
|
| 256 |
+
"x-derived": false,
|
| 257 |
+
"x-null-semantics": "Null means the value is unavailable in the canonical snapshot."
|
| 258 |
+
},
|
| 259 |
+
"primary_source_id": {
|
| 260 |
+
"type": "string",
|
| 261 |
+
"description": "Highest-priority source attached to this decision under the deterministic source-priority policy.",
|
| 262 |
+
"x-arrow-type": "string",
|
| 263 |
+
"x-source-native": false,
|
| 264 |
+
"x-derived": true,
|
| 265 |
+
"x-null-semantics": "Not nullable."
|
| 266 |
+
},
|
| 267 |
+
"primary_source_type": {
|
| 268 |
+
"type": "string",
|
| 269 |
+
"description": "Type of primary_source_id.",
|
| 270 |
+
"x-arrow-type": "string",
|
| 271 |
+
"x-source-native": false,
|
| 272 |
+
"x-derived": true,
|
| 273 |
+
"x-null-semantics": "Not nullable."
|
| 274 |
+
},
|
| 275 |
+
"primary_source_title": {
|
| 276 |
+
"type": "string",
|
| 277 |
+
"description": "Title of primary_source_id.",
|
| 278 |
+
"x-arrow-type": "string",
|
| 279 |
+
"x-source-native": false,
|
| 280 |
+
"x-derived": true,
|
| 281 |
+
"x-null-semantics": "Not nullable."
|
| 282 |
+
},
|
| 283 |
+
"primary_source_url": {
|
| 284 |
+
"type": "string",
|
| 285 |
+
"description": "URL of primary_source_id.",
|
| 286 |
+
"x-arrow-type": "string",
|
| 287 |
+
"x-source-native": false,
|
| 288 |
+
"x-derived": true,
|
| 289 |
+
"x-null-semantics": "Not nullable."
|
| 290 |
+
},
|
| 291 |
+
"primary_source_published_at": {
|
| 292 |
+
"type": [
|
| 293 |
+
"string",
|
| 294 |
+
"null"
|
| 295 |
+
],
|
| 296 |
+
"format": "date-time",
|
| 297 |
+
"description": "Publication timestamp of primary_source_id when supplied.",
|
| 298 |
+
"x-arrow-type": "timestamp[us, tz=UTC]",
|
| 299 |
+
"x-source-native": true,
|
| 300 |
+
"x-derived": false,
|
| 301 |
+
"x-null-semantics": "Null means the source record does not provide a publication timestamp."
|
| 302 |
+
},
|
| 303 |
+
"primary_source_retrieved_at": {
|
| 304 |
+
"type": "string",
|
| 305 |
+
"format": "date-time",
|
| 306 |
+
"description": "Retrieval timestamp of primary_source_id.",
|
| 307 |
+
"x-arrow-type": "timestamp[us, tz=UTC]",
|
| 308 |
+
"x-source-native": true,
|
| 309 |
+
"x-derived": false,
|
| 310 |
+
"x-null-semantics": "Not nullable."
|
| 311 |
+
},
|
| 312 |
+
"primary_source_checksum": {
|
| 313 |
+
"type": "string",
|
| 314 |
+
"description": "SHA-256 checksum recorded for primary_source_id.",
|
| 315 |
+
"x-arrow-type": "string",
|
| 316 |
+
"x-source-native": true,
|
| 317 |
+
"x-derived": false,
|
| 318 |
+
"x-null-semantics": "Not nullable."
|
| 319 |
+
},
|
| 320 |
+
"source_ids": {
|
| 321 |
+
"type": "array",
|
| 322 |
+
"items": {
|
| 323 |
+
"type": "string"
|
| 324 |
+
},
|
| 325 |
+
"description": "All source identifiers attached to the canonical row, sorted deterministically.",
|
| 326 |
+
"x-arrow-type": "list<item: string>",
|
| 327 |
+
"x-source-native": false,
|
| 328 |
+
"x-derived": true,
|
| 329 |
+
"x-null-semantics": "Not nullable."
|
| 330 |
+
},
|
| 331 |
+
"source_count": {
|
| 332 |
+
"type": "integer",
|
| 333 |
+
"description": "Number of distinct attached source identifiers.",
|
| 334 |
+
"x-arrow-type": "int32",
|
| 335 |
+
"x-source-native": false,
|
| 336 |
+
"x-derived": true,
|
| 337 |
+
"x-null-semantics": "Not nullable."
|
| 338 |
+
},
|
| 339 |
+
"provenance_class": {
|
| 340 |
+
"type": "string",
|
| 341 |
+
"description": "Strongest attached provenance class: official_primary, official_secondary, or legacy_import.",
|
| 342 |
+
"x-arrow-type": "string",
|
| 343 |
+
"x-source-native": false,
|
| 344 |
+
"x-derived": false,
|
| 345 |
+
"x-null-semantics": "Not nullable."
|
| 346 |
+
},
|
| 347 |
+
"verification_status": {
|
| 348 |
+
"type": "string",
|
| 349 |
+
"description": "Deterministic verification label exposing primary, legacy, secondary, or mixed support.",
|
| 350 |
+
"x-arrow-type": "string",
|
| 351 |
+
"x-source-native": false,
|
| 352 |
+
"x-derived": false,
|
| 353 |
+
"x-null-semantics": "Not nullable."
|
| 354 |
+
},
|
| 355 |
+
"snapshot_id": {
|
| 356 |
+
"type": "string",
|
| 357 |
+
"description": "SnapshotV2 identifier used as the build input.",
|
| 358 |
+
"x-arrow-type": "string",
|
| 359 |
+
"x-source-native": true,
|
| 360 |
+
"x-derived": false,
|
| 361 |
+
"x-null-semantics": "Not nullable."
|
| 362 |
+
},
|
| 363 |
+
"snapshot_checksum": {
|
| 364 |
+
"type": "string",
|
| 365 |
+
"description": "SnapshotV2 content checksum used as the build input.",
|
| 366 |
+
"x-arrow-type": "string",
|
| 367 |
+
"x-source-native": true,
|
| 368 |
+
"x-derived": false,
|
| 369 |
+
"x-null-semantics": "Not nullable."
|
| 370 |
+
},
|
| 371 |
+
"snapshot_retrieved_at": {
|
| 372 |
+
"type": "string",
|
| 373 |
+
"format": "date-time",
|
| 374 |
+
"description": "SnapshotV2 retrieval timestamp.",
|
| 375 |
+
"x-arrow-type": "timestamp[us, tz=UTC]",
|
| 376 |
+
"x-source-native": false,
|
| 377 |
+
"x-derived": false,
|
| 378 |
+
"x-null-semantics": "Not nullable."
|
| 379 |
+
},
|
| 380 |
+
"dataset_schema_version": {
|
| 381 |
+
"type": "string",
|
| 382 |
+
"description": "Independent semantic schema version for this dataset.",
|
| 383 |
+
"x-arrow-type": "string",
|
| 384 |
+
"x-source-native": false,
|
| 385 |
+
"x-derived": false,
|
| 386 |
+
"x-null-semantics": "Not nullable."
|
| 387 |
+
},
|
| 388 |
+
"record_text": {
|
| 389 |
+
"type": "string",
|
| 390 |
+
"description": "Deterministically generated factual sentence intended for search, RAG, and agent use.",
|
| 391 |
+
"x-arrow-type": "string",
|
| 392 |
+
"x-source-native": false,
|
| 393 |
+
"x-derived": true,
|
| 394 |
+
"x-null-semantics": "Not nullable."
|
| 395 |
+
}
|
| 396 |
+
},
|
| 397 |
+
"required": [
|
| 398 |
+
"decision_id",
|
| 399 |
+
"snapshot_decision_id",
|
| 400 |
+
"canonical_key",
|
| 401 |
+
"jurisdiction",
|
| 402 |
+
"country",
|
| 403 |
+
"central_bank",
|
| 404 |
+
"central_bank_code",
|
| 405 |
+
"instrument",
|
| 406 |
+
"instrument_code",
|
| 407 |
+
"record_type",
|
| 408 |
+
"date_semantics",
|
| 409 |
+
"effective_date",
|
| 410 |
+
"year",
|
| 411 |
+
"month",
|
| 412 |
+
"policy_rate_pct",
|
| 413 |
+
"policy_rate_bps",
|
| 414 |
+
"change_bps",
|
| 415 |
+
"action",
|
| 416 |
+
"is_rate_change",
|
| 417 |
+
"decision_summary",
|
| 418 |
+
"primary_source_id",
|
| 419 |
+
"primary_source_type",
|
| 420 |
+
"primary_source_title",
|
| 421 |
+
"primary_source_url",
|
| 422 |
+
"primary_source_retrieved_at",
|
| 423 |
+
"primary_source_checksum",
|
| 424 |
+
"source_ids",
|
| 425 |
+
"source_count",
|
| 426 |
+
"provenance_class",
|
| 427 |
+
"verification_status",
|
| 428 |
+
"snapshot_id",
|
| 429 |
+
"snapshot_checksum",
|
| 430 |
+
"snapshot_retrieved_at",
|
| 431 |
+
"dataset_schema_version",
|
| 432 |
+
"record_text"
|
| 433 |
+
],
|
| 434 |
+
"x-dataset-schema-version": "1.0.0",
|
| 435 |
+
"x-config-name": "decisions",
|
| 436 |
+
"x-row-grain": "one row per canonical monetary-policy/rate observation"
|
| 437 |
+
}
|
schema/events.schema.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
| 3 |
+
"$id": "https://huggingface.co/datasets/ashwingopalsamy/india-repo-rate-dataset/raw/main/schema/events.schema.json",
|
| 4 |
+
"title": "RBI repo-rate dataset — events",
|
| 5 |
+
"description": "Schema for the events configuration of the independent RBI repo-rate dataset.",
|
| 6 |
+
"type": "object",
|
| 7 |
+
"additionalProperties": false,
|
| 8 |
+
"properties": {
|
| 9 |
+
"event_id": {
|
| 10 |
+
"type": "string",
|
| 11 |
+
"description": "Stable contextual event identifier from SnapshotV2.",
|
| 12 |
+
"x-arrow-type": "string",
|
| 13 |
+
"x-source-native": false,
|
| 14 |
+
"x-derived": false,
|
| 15 |
+
"x-null-semantics": "Not nullable."
|
| 16 |
+
},
|
| 17 |
+
"date": {
|
| 18 |
+
"type": "string",
|
| 19 |
+
"format": "date",
|
| 20 |
+
"description": "Calendar date of the contextual event.",
|
| 21 |
+
"x-arrow-type": "date32[day]",
|
| 22 |
+
"x-source-native": true,
|
| 23 |
+
"x-derived": false,
|
| 24 |
+
"x-null-semantics": "Not nullable."
|
| 25 |
+
},
|
| 26 |
+
"label": {
|
| 27 |
+
"type": "string",
|
| 28 |
+
"description": "Short event label.",
|
| 29 |
+
"x-arrow-type": "string",
|
| 30 |
+
"x-source-native": true,
|
| 31 |
+
"x-derived": false,
|
| 32 |
+
"x-null-semantics": "Not nullable."
|
| 33 |
+
},
|
| 34 |
+
"description": {
|
| 35 |
+
"type": "string",
|
| 36 |
+
"description": "Contextual event description from the repository snapshot.",
|
| 37 |
+
"x-arrow-type": "string",
|
| 38 |
+
"x-source-native": true,
|
| 39 |
+
"x-derived": false,
|
| 40 |
+
"x-null-semantics": "Not nullable."
|
| 41 |
+
},
|
| 42 |
+
"event_type": {
|
| 43 |
+
"type": "string",
|
| 44 |
+
"description": "Repository event type.",
|
| 45 |
+
"x-arrow-type": "string",
|
| 46 |
+
"x-source-native": true,
|
| 47 |
+
"x-derived": false,
|
| 48 |
+
"x-null-semantics": "Not nullable."
|
| 49 |
+
},
|
| 50 |
+
"citation_url": {
|
| 51 |
+
"type": "string",
|
| 52 |
+
"description": "Citation URL for the contextual event.",
|
| 53 |
+
"x-arrow-type": "string",
|
| 54 |
+
"x-source-native": true,
|
| 55 |
+
"x-derived": false,
|
| 56 |
+
"x-null-semantics": "Not nullable."
|
| 57 |
+
}
|
| 58 |
+
},
|
| 59 |
+
"required": [
|
| 60 |
+
"event_id",
|
| 61 |
+
"date",
|
| 62 |
+
"label",
|
| 63 |
+
"description",
|
| 64 |
+
"event_type",
|
| 65 |
+
"citation_url"
|
| 66 |
+
],
|
| 67 |
+
"x-dataset-schema-version": "1.0.0",
|
| 68 |
+
"x-config-name": "events",
|
| 69 |
+
"x-row-grain": "one row per contextual macro/policy event"
|
| 70 |
+
}
|
schema/regimes.schema.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
| 3 |
+
"$id": "https://huggingface.co/datasets/ashwingopalsamy/india-repo-rate-dataset/raw/main/schema/regimes.schema.json",
|
| 4 |
+
"title": "RBI repo-rate dataset — regimes",
|
| 5 |
+
"description": "Schema for the regimes configuration of the independent RBI repo-rate dataset.",
|
| 6 |
+
"type": "object",
|
| 7 |
+
"additionalProperties": false,
|
| 8 |
+
"properties": {
|
| 9 |
+
"regime_id": {
|
| 10 |
+
"type": "string",
|
| 11 |
+
"description": "Stable deterministic regime interval identifier.",
|
| 12 |
+
"x-arrow-type": "string",
|
| 13 |
+
"x-source-native": false,
|
| 14 |
+
"x-derived": false,
|
| 15 |
+
"x-null-semantics": "Not nullable."
|
| 16 |
+
},
|
| 17 |
+
"start_date": {
|
| 18 |
+
"type": "string",
|
| 19 |
+
"format": "date",
|
| 20 |
+
"description": "Inclusive start date of the contextual regime.",
|
| 21 |
+
"x-arrow-type": "date32[day]",
|
| 22 |
+
"x-source-native": true,
|
| 23 |
+
"x-derived": false,
|
| 24 |
+
"x-null-semantics": "Not nullable."
|
| 25 |
+
},
|
| 26 |
+
"end_date": {
|
| 27 |
+
"type": [
|
| 28 |
+
"string",
|
| 29 |
+
"null"
|
| 30 |
+
],
|
| 31 |
+
"format": "date",
|
| 32 |
+
"description": "Exclusive end date of the contextual regime.",
|
| 33 |
+
"x-arrow-type": "date32[day]",
|
| 34 |
+
"x-source-native": true,
|
| 35 |
+
"x-derived": false,
|
| 36 |
+
"x-null-semantics": "Null represents an open-ended interval."
|
| 37 |
+
},
|
| 38 |
+
"regime_type": {
|
| 39 |
+
"type": "string",
|
| 40 |
+
"description": "Repository-provided contextual regime type.",
|
| 41 |
+
"x-arrow-type": "string",
|
| 42 |
+
"x-source-native": true,
|
| 43 |
+
"x-derived": false,
|
| 44 |
+
"x-null-semantics": "Not nullable."
|
| 45 |
+
},
|
| 46 |
+
"label": {
|
| 47 |
+
"type": "string",
|
| 48 |
+
"description": "Repository-provided contextual regime label.",
|
| 49 |
+
"x-arrow-type": "string",
|
| 50 |
+
"x-source-native": true,
|
| 51 |
+
"x-derived": false,
|
| 52 |
+
"x-null-semantics": "Not nullable."
|
| 53 |
+
}
|
| 54 |
+
},
|
| 55 |
+
"required": [
|
| 56 |
+
"regime_id",
|
| 57 |
+
"start_date",
|
| 58 |
+
"regime_type",
|
| 59 |
+
"label"
|
| 60 |
+
],
|
| 61 |
+
"x-dataset-schema-version": "1.0.0",
|
| 62 |
+
"x-config-name": "regimes",
|
| 63 |
+
"x-row-grain": "one row per repository-provided regime interval"
|
| 64 |
+
}
|
schema/sources.schema.json
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
| 3 |
+
"$id": "https://huggingface.co/datasets/ashwingopalsamy/india-repo-rate-dataset/raw/main/schema/sources.schema.json",
|
| 4 |
+
"title": "RBI repo-rate dataset — sources",
|
| 5 |
+
"description": "Schema for the sources configuration of the independent RBI repo-rate dataset.",
|
| 6 |
+
"type": "object",
|
| 7 |
+
"additionalProperties": false,
|
| 8 |
+
"properties": {
|
| 9 |
+
"source_id": {
|
| 10 |
+
"type": "string",
|
| 11 |
+
"description": "Stable source identifier from SnapshotV2.",
|
| 12 |
+
"x-arrow-type": "string",
|
| 13 |
+
"x-source-native": false,
|
| 14 |
+
"x-derived": false,
|
| 15 |
+
"x-null-semantics": "Not nullable."
|
| 16 |
+
},
|
| 17 |
+
"publisher": {
|
| 18 |
+
"type": "string",
|
| 19 |
+
"description": "Publisher derived from the source URL/domain.",
|
| 20 |
+
"x-arrow-type": "string",
|
| 21 |
+
"x-source-native": false,
|
| 22 |
+
"x-derived": false,
|
| 23 |
+
"x-null-semantics": "Not nullable."
|
| 24 |
+
},
|
| 25 |
+
"source_type": {
|
| 26 |
+
"type": "string",
|
| 27 |
+
"description": "Source adapter/type from SnapshotV2.",
|
| 28 |
+
"x-arrow-type": "string",
|
| 29 |
+
"x-source-native": true,
|
| 30 |
+
"x-derived": false,
|
| 31 |
+
"x-null-semantics": "Not nullable."
|
| 32 |
+
},
|
| 33 |
+
"title": {
|
| 34 |
+
"type": "string",
|
| 35 |
+
"description": "Source title from SnapshotV2.",
|
| 36 |
+
"x-arrow-type": "string",
|
| 37 |
+
"x-source-native": true,
|
| 38 |
+
"x-derived": false,
|
| 39 |
+
"x-null-semantics": "Not nullable."
|
| 40 |
+
},
|
| 41 |
+
"url": {
|
| 42 |
+
"type": "string",
|
| 43 |
+
"description": "Authoritative source URL from SnapshotV2.",
|
| 44 |
+
"x-arrow-type": "string",
|
| 45 |
+
"x-source-native": true,
|
| 46 |
+
"x-derived": false,
|
| 47 |
+
"x-null-semantics": "Not nullable."
|
| 48 |
+
},
|
| 49 |
+
"published_at": {
|
| 50 |
+
"type": [
|
| 51 |
+
"string",
|
| 52 |
+
"null"
|
| 53 |
+
],
|
| 54 |
+
"format": "date-time",
|
| 55 |
+
"description": "Source publication timestamp when supplied.",
|
| 56 |
+
"x-arrow-type": "timestamp[us, tz=UTC]",
|
| 57 |
+
"x-source-native": true,
|
| 58 |
+
"x-derived": false,
|
| 59 |
+
"x-null-semantics": "Null means the source record has no publication timestamp."
|
| 60 |
+
},
|
| 61 |
+
"retrieved_at": {
|
| 62 |
+
"type": "string",
|
| 63 |
+
"format": "date-time",
|
| 64 |
+
"description": "Source retrieval timestamp.",
|
| 65 |
+
"x-arrow-type": "timestamp[us, tz=UTC]",
|
| 66 |
+
"x-source-native": true,
|
| 67 |
+
"x-derived": false,
|
| 68 |
+
"x-null-semantics": "Not nullable."
|
| 69 |
+
},
|
| 70 |
+
"checksum": {
|
| 71 |
+
"type": "string",
|
| 72 |
+
"description": "SHA-256 checksum recorded for the source.",
|
| 73 |
+
"x-arrow-type": "string",
|
| 74 |
+
"x-source-native": true,
|
| 75 |
+
"x-derived": false,
|
| 76 |
+
"x-null-semantics": "Not nullable."
|
| 77 |
+
},
|
| 78 |
+
"is_primary_source": {
|
| 79 |
+
"type": "boolean",
|
| 80 |
+
"description": "Whether the source is classified as a direct primary RBI rate source.",
|
| 81 |
+
"x-arrow-type": "bool",
|
| 82 |
+
"x-source-native": false,
|
| 83 |
+
"x-derived": false,
|
| 84 |
+
"x-null-semantics": "Not nullable."
|
| 85 |
+
},
|
| 86 |
+
"provenance_class": {
|
| 87 |
+
"type": "string",
|
| 88 |
+
"description": "official_primary, official_secondary, or legacy_import.",
|
| 89 |
+
"x-arrow-type": "string",
|
| 90 |
+
"x-source-native": false,
|
| 91 |
+
"x-derived": false,
|
| 92 |
+
"x-null-semantics": "Not nullable."
|
| 93 |
+
}
|
| 94 |
+
},
|
| 95 |
+
"required": [
|
| 96 |
+
"source_id",
|
| 97 |
+
"publisher",
|
| 98 |
+
"source_type",
|
| 99 |
+
"title",
|
| 100 |
+
"url",
|
| 101 |
+
"retrieved_at",
|
| 102 |
+
"checksum",
|
| 103 |
+
"is_primary_source",
|
| 104 |
+
"provenance_class"
|
| 105 |
+
],
|
| 106 |
+
"x-dataset-schema-version": "1.0.0",
|
| 107 |
+
"x-config-name": "sources",
|
| 108 |
+
"x-row-grain": "one row per source document/resource"
|
| 109 |
+
}
|