{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentAutoAllocateInstanceListing", "title": "PaymentAutoAllocateInstanceListing", "type": "object", "properties": { "id": { "type": "integer", "description": "The id of the PaymentAutoAllocateInstance.", "readOnly": true, "writeOnly": false }, "created": { "type": "string", "description": "The timestamp when the PaymentAutoAllocateInstance was created.", "readOnly": true, "writeOnly": false }, "updated": { "type": "string", "description": "The timestamp when the PaymentAutoAllocateInstance was last updated.", "readOnly": true, "writeOnly": false }, "payment_auto_allocate_id": { "type": "integer", "description": "The ID of the payment auto allocate this instance belongs to.", "readOnly": true, "writeOnly": false }, "status": { "type": "string", "description": "The status of the payment auto allocate instance. SUCCEEDED or FAILED.", "readOnly": true, "writeOnly": false }, "error_message": { "type": "array", "description": "The error message, if the payment auto allocating failed.", "readOnly": true, "writeOnly": false, "items": { "$ref": "#/components/schemas/Error" } }, "payment_batch": { "type": "object", "description": "The payment batch allocating all the payments.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/PaymentBatch" }, "payment_id": { "type": "integer", "description": "The ID of the payment that triggered the allocating of the payments.", "readOnly": true, "writeOnly": false } } }