{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/last_payment_details", "title": "Last Payment Details", "description": "The details for the last payment.", "type": "object", "allOf": [ { "properties": { "amount": { "description": "The last payment amount.", "readOnly": true, "$ref": "#/components/schemas/money" }, "time": { "description": "The date and time when the last payment was made, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5.6).", "readOnly": true, "$ref": "#/components/schemas/date_time" } } } ], "required": [ "amount", "time" ] }