Moov · Schema

Wallet

A Moov digital wallet that holds funds on the platform for an account. Wallets serve as intermediate stores of value for money movement.

BankingEmbedded FinanceFinancial InfrastructureMoney MovementPaymentsTransfers

Properties

Name Type Description
walletID string Unique identifier for the wallet.
availableBalance object
createdOn string ISO 8601 timestamp when the wallet was created.
updatedOn string ISO 8601 timestamp when the wallet was last updated.
View JSON Schema on GitHub

JSON Schema

moov-wallet-schema.json Raw ↑
{
  "$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."
    }
  }
}