Synctera · Schema

Information about account verification

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
creation_time string The time at which verification was first completed.
last_updated_time string The time at which verification was last updated.
status string The status of verification
vendor string The vendor used for verifying the account
View JSON Schema on GitHub

JSON Schema

synctera-base-account-verification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/base_account_verification",
  "title": "Information about account verification",
  "properties": {
    "creation_time": {
      "description": "The time at which verification was first completed.",
      "example": "2022-01-01T00:00:00.000Z",
      "format": "date-time",
      "type": "string"
    },
    "last_updated_time": {
      "description": "The time at which verification was last updated.",
      "example": "2022-01-01T00:00:00.000Z",
      "format": "date-time",
      "type": "string"
    },
    "status": {
      "description": "The status of verification",
      "enum": [
        "VERIFIED",
        "UNVERIFIED"
      ],
      "type": "string"
    },
    "vendor": {
      "description": "The vendor used for verifying the account",
      "enum": [
        "PLAID",
        "MANUAL",
        "FINICITY"
      ],
      "type": "string"
    }
  },
  "required": [
    "status",
    "vendor"
  ],
  "type": "object"
}