Synctera · Schema

application_request

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
bank_id integer Bank ID
business_address object
business_name string todo
business_phone string todo
business_tax_id string todo
business_type string todo
dob object
doing_business_as string todo
email string todo
enabled boolean To enable or disable aft/oct feature
first_name string todo
incorporation_date object
last_name string todo
max_transaction_amount integer Maximum amount that can be transacted for a single transaction in cents
partner_id integer Partner ID
personal_address object
phone string todo
principal_percentage_ownership string todo
processor object
tax_id string todo
title string todo
url string todo
View JSON Schema on GitHub

JSON Schema

synctera-application-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/application_request",
  "title": "application_request",
  "properties": {
    "bank_id": {
      "description": "Bank ID",
      "type": "integer"
    },
    "business_address": {
      "$ref": "#/components/schemas/address1"
    },
    "business_name": {
      "description": "todo",
      "type": "string"
    },
    "business_phone": {
      "description": "todo",
      "type": "string"
    },
    "business_tax_id": {
      "description": "todo",
      "maxLength": 9,
      "minLength": 9,
      "type": "string"
    },
    "business_type": {
      "description": "todo",
      "enum": [
        "INDIVIDUAL_SOLE_PROPRIETORSHIP",
        "CORPORATION",
        "LIMITED_LIABILITY_COMPANY",
        "PARTNERSHIP",
        "ASSOCIATION_ESTATE_TRUST",
        "TAX_EXEMPT_ORGANIZATION",
        "INTERNATIONAL_ORGANIZATION",
        "GOVERNMENT_AGENCY"
      ],
      "type": "string"
    },
    "dob": {
      "$ref": "#/components/schemas/external_payment_date"
    },
    "doing_business_as": {
      "description": "todo",
      "type": "string"
    },
    "email": {
      "description": "todo",
      "type": "string"
    },
    "enabled": {
      "description": "To enable or disable aft/oct feature",
      "type": "boolean"
    },
    "first_name": {
      "description": "todo",
      "type": "string"
    },
    "incorporation_date": {
      "$ref": "#/components/schemas/external_payment_date"
    },
    "last_name": {
      "description": "todo",
      "type": "string"
    },
    "max_transaction_amount": {
      "description": "Maximum amount that can be transacted for a single transaction in cents",
      "type": "integer"
    },
    "partner_id": {
      "description": "Partner ID",
      "type": "integer"
    },
    "personal_address": {
      "$ref": "#/components/schemas/address1"
    },
    "phone": {
      "description": "todo",
      "type": "string"
    },
    "principal_percentage_ownership": {
      "description": "todo",
      "type": "string"
    },
    "processor": {
      "$ref": "#/components/schemas/processor"
    },
    "tax_id": {
      "description": "todo",
      "maxLength": 9,
      "minLength": 9,
      "type": "string"
    },
    "title": {
      "description": "todo",
      "type": "string"
    },
    "url": {
      "description": "todo",
      "type": "string"
    }
  },
  "required": [
    "processor",
    "business_name",
    "doing_business_as",
    "business_type",
    "business_tax_id",
    "business_phone",
    "business_address",
    "max_transaction_amount",
    "bank_id",
    "partner_id",
    "enabled"
  ],
  "type": "object"
}