{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SchedulePaymentBatch", "title": "SchedulePaymentBatch", "type": "object", "properties": { "payments": { "type": "array", "description": "The payment details.", "readOnly": false, "writeOnly": false, "items": { "$ref": "#/components/schemas/SchedulePaymentEntry" } }, "schedule": { "type": "object", "description": "The schedule details.", "readOnly": false, "writeOnly": false, "$ref": "#/components/schemas/Schedule" } } }