Lithic · Schema

BusinessEntity

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
address object Business's physical address - PO boxes, UPS drops, and FedEx drops are not acceptable; APO/FPO are acceptable.
dba_business_name string Any name that the business operates under that is not its legal business name (if applicable).
government_id string Government-issued identification number. US Federal Employer Identification Numbers (EIN) are currently supported, entered as full nine-digits, with or without hyphens.
legal_business_name string Legal (formal) business name.
parent_company string Parent company name (if applicable).
phone_numbers array One or more of the business's phone number(s), entered as a list in E.164 format.
View JSON Schema on GitHub

JSON Schema

lithic-businessentity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BusinessEntity",
  "title": "BusinessEntity",
  "properties": {
    "address": {
      "$ref": "#/components/schemas/Address",
      "description": "Business's physical address - PO boxes, UPS drops, and FedEx drops are not acceptable; APO/FPO are acceptable.\n"
    },
    "dba_business_name": {
      "description": "Any name that the business operates under that is not its legal business name (if applicable).",
      "type": "string"
    },
    "government_id": {
      "description": "Government-issued identification number. US Federal Employer Identification Numbers (EIN) are currently supported, entered as full nine-digits, with or without hyphens.\n",
      "example": "114-123-1513",
      "type": "string"
    },
    "legal_business_name": {
      "description": "Legal (formal) business name.",
      "example": "Acme, Inc.",
      "type": "string"
    },
    "parent_company": {
      "description": "Parent company name (if applicable).",
      "type": "string"
    },
    "phone_numbers": {
      "description": "One or more of the business's phone number(s), entered as a list in E.164 format.",
      "items": {
        "description": "Business phone number, entered in E.164 format.",
        "example": "+15555555555",
        "type": "string"
      },
      "minItems": 1,
      "type": "array"
    }
  },
  "required": [
    "address",
    "government_id",
    "legal_business_name",
    "phone_numbers"
  ],
  "type": "object"
}