Properties
| Name | Type | Description |
|---|---|---|
| prime_rate | stringnull | |
| interest_calculation_method | object | |
| effective_apr | object | |
| interest_for_period | object | |
| daily_balance_amounts | object | |
| minimum_interest_charged | integernull | |
| actual_interest_charged | integernull |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/interest_details",
"title": "Interest Details",
"type": "object",
"properties": {
"prime_rate": {
"type": [
"string",
"null"
]
},
"interest_calculation_method": {
"$ref": "#/components/schemas/interest_calculation_method"
},
"effective_apr": {
"$ref": "#/components/schemas/category_details"
},
"interest_for_period": {
"$ref": "#/components/schemas/category_details"
},
"daily_balance_amounts": {
"$ref": "#/components/schemas/category_details"
},
"minimum_interest_charged": {
"type": [
"integer",
"null"
]
},
"actual_interest_charged": {
"type": [
"integer",
"null"
]
}
},
"required": [
"prime_rate",
"interest_calculation_method",
"effective_apr",
"interest_for_period",
"actual_interest_charged",
"daily_balance_amounts"
]
}