Moov · Schema

AccountConnection

An established connection between two Moov accounts.

BankingEmbedded FinanceFinancial InfrastructureMoney MovementPaymentsTransfers

Properties

Name Type Description
accountID string The account that initiated the connection.
partnerAccountID string The connected partner account.
createdOn string ISO 8601 timestamp when the connection was created.
View JSON Schema on GitHub

JSON Schema

moov-accountconnection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountConnection",
  "title": "AccountConnection",
  "type": "object",
  "description": "An established connection between two Moov accounts.",
  "properties": {
    "accountID": {
      "type": "string",
      "format": "uuid",
      "description": "The account that initiated the connection."
    },
    "partnerAccountID": {
      "type": "string",
      "format": "uuid",
      "description": "The connected partner account."
    },
    "createdOn": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the connection was created."
    }
  }
}