{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TransactionFund", "type": "object", "properties": { "uuid": { "type": "string" }, "title": { "type": "string" }, "reason": { "type": "string" }, "status": { "allOf": [ { "$ref": "#/components/schemas/TransactionFundStatusEnum" } ], "readOnly": true, "description": "\n* open: The fund is open and available for use\n* closed: The fund is closed and no longer available for use" }, "date_created": { "type": "string", "format": "date-time" }, "amount": { "type": "string", "readOnly": true }, "account": { "$ref": "#/components/schemas/TransactionAccount" } }, "required": [ "account", "date_created", "reason", "title", "uuid" ] }