Customer entity

Represents a customer. Plaid-specific schema created to hold one property, the `name` property of the FDX `Customer` schema

Financial DataOpen BankingOpen FinanceFinancial Data ExchangeConsumer PermissionedAccount DataTransactionsInvestmentsInsuranceTax DataPayrollRESTOAuth2FAPICFPB 1033

Properties

Name Type Description
name object
View JSON Schema on GitHub

JSON Schema

fdx-customerwithname.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Customer entity",
  "description": "Represents a customer. Plaid-specific schema created to hold one property, the `name` property of the FDX `Customer` schema\n",
  "type": "object",
  "properties": {
    "name": {
      "$ref": "#/components/schemas/CustomerName"
    }
  },
  "required": [
    "name"
  ]
}