Moov · Schema

TaxID

Business tax identification number.

BankingEmbedded FinanceFinancial InfrastructureMoney MovementPaymentsTransfers

Properties

Name Type Description
ein object Employer Identification Number for US businesses.
View JSON Schema on GitHub

JSON Schema

moov-taxid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaxID",
  "title": "TaxID",
  "type": "object",
  "description": "Business tax identification number.",
  "properties": {
    "ein": {
      "type": "object",
      "description": "Employer Identification Number for US businesses.",
      "properties": {
        "number": {
          "type": "string",
          "description": "Full EIN. Only provided on write; masked on read.",
          "pattern": "^\\d{9}$"
        }
      }
    }
  }
}