{
"type": "object",
"properties": {
"balance": {
"type": "number",
"description": "Remaining balance in decimal format."
},
"currency": {
"type": "string",
"description": "Currency symbol for the balance (e.g., €, $, etc.)."
},
"credits": {
"type": "integer",
"description": "Available credit count in integer format."
},
"expiratioDate": {
"type": "string",
"format": "date-time",
"description": "Expiration date of the credits in ISO 8601 format."
},
"status": {
"type": "string",
"description": "Current account status, e.g., 'Active' or 'Inactive'."
}
},
"required": ["balance", "currency", "credits", "expiratioDate", "status"],
"additionalProperties": false
}