{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/amount_due", "title": "Amount Due", "type": "object", "properties": { "amount": { "description": "Payment due at the end of the billing period in cents. Negative amount indicates something is owed. If the amount owed is positive there was a net credit. If auto-collections are enabled this is the amount that will be requested on the payment due date", "type": "integer" }, "past_due": { "description": "Amount past due for statement in cents", "type": "integer" } }, "required": [ "amount", "past_due" ] }