{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Wallet", "title": "Wallet", "type": "object", "description": "A Moov digital wallet that holds funds on the platform for an account. Wallets serve as intermediate stores of value for money movement.", "properties": { "walletID": { "type": "string", "format": "uuid", "description": "Unique identifier for the wallet." }, "availableBalance": { "$ref": "#/components/schemas/Amount" }, "createdOn": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp when the wallet was created." }, "updatedOn": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp when the wallet was last updated." } } }