{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RequestInquiryBatch", "title": "RequestInquiryBatch", "type": "object", "properties": { "request_inquiries": { "type": "array", "description": "The list of requests that were made.", "readOnly": false, "writeOnly": false, "items": { "$ref": "#/components/schemas/RequestInquiry" } }, "status": { "type": "string", "description": "The status of the request.", "readOnly": false, "writeOnly": true }, "total_amount_inquired": { "type": "object", "description": "The total amount originally inquired for this batch.", "readOnly": false, "writeOnly": false, "$ref": "#/components/schemas/Amount" }, "event_id": { "type": "integer", "description": "The ID of the associated event if the request batch was made using 'split the bill'.", "readOnly": false, "writeOnly": true }, "reference_split_the_bill": { "type": "object", "description": "The reference to the object used for split the bill. Can be Payment, PaymentBatch, ScheduleInstance, RequestResponse and MasterCardAction", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/RequestReferenceSplitTheBillAnchorObject" } } }