Properties
| Name | Type | Description |
|---|---|---|
| period_state | object | |
| period_number | integer | Current overall period number |
| consecutive_minimum_payments_made | integer | Number of consecutive minimum payments made |
| consecutive_minimum_payments_missed | integer | Number of consecutive minimum payments missed |
| consecutive_full_payments_made | integer | Number of consecutive full payments made |
| days_past_due | integer | Number of days past due |
| has_grace | boolean | Whether the account currently has grace or not |
| financial_account_state | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/account_standing",
"title": "Account Standing",
"type": "object",
"properties": {
"period_state": {
"$ref": "#/components/schemas/period_state"
},
"period_number": {
"description": "Current overall period number",
"type": "integer"
},
"consecutive_minimum_payments_made": {
"description": "Number of consecutive minimum payments made",
"type": "integer"
},
"consecutive_minimum_payments_missed": {
"description": "Number of consecutive minimum payments missed",
"type": "integer"
},
"consecutive_full_payments_made": {
"description": "Number of consecutive full payments made",
"type": "integer"
},
"days_past_due": {
"description": "Number of days past due",
"type": "integer"
},
"has_grace": {
"description": "Whether the account currently has grace or not",
"type": "boolean"
},
"financial_account_state": {
"$ref": "#/components/schemas/financial_account_state"
}
},
"required": [
"period_state",
"period_number",
"consecutive_minimum_payments_made",
"consecutive_minimum_payments_missed",
"consecutive_full_payments_made",
"days_past_due",
"has_grace",
"financial_account_state"
]
}