{
"type": "object",
"properties": {
"monthly_spend_limit_inr": {
"type": [
"number",
"null"
],
"description": "Monthly spend cap in INR; null means no cap is set"
},
"spend_alert_threshold_inr": {
"type": [
"number",
"null"
],
"description": "Early-warning alert threshold in INR; null means no threshold is set"
},
"spent_this_month_inr": {
"type": "number",
"description": "Amount spent so far this month in INR"
},
"reset_date": {
"type": "string",
"description": "Date (YYYY-MM-DD) when the monthly spend counter resets"
}
},
"required": [
"monthly_spend_limit_inr",
"spend_alert_threshold_inr",
"spent_this_month_inr",
"reset_date"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}