Moov · Schema

BusinessProfile

Profile data for a business Moov account.

BankingEmbedded FinanceFinancial InfrastructureMoney MovementPaymentsTransfers

Properties

Name Type Description
legalBusinessName string Registered legal name of the business.
businessType string Type of business entity.
address object
phone object
email string Primary business email address.
website string Business website URL.
description string Brief description of the business and its products or services.
taxID object
industryCodes object
View JSON Schema on GitHub

JSON Schema

moov-businessprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BusinessProfile",
  "title": "BusinessProfile",
  "type": "object",
  "description": "Profile data for a business Moov account.",
  "properties": {
    "legalBusinessName": {
      "type": "string",
      "description": "Registered legal name of the business."
    },
    "businessType": {
      "type": "string",
      "description": "Type of business entity.",
      "enum": [
        "soleProprietorship",
        "unincorporatedAssociation",
        "trust",
        "publicCorporation",
        "privateCorporation",
        "privateCorporation",
        "llc",
        "partnership",
        "unincorporatedNonProfit",
        "incorporatedNonProfit"
      ]
    },
    "address": {
      "$ref": "#/components/schemas/Address"
    },
    "phone": {
      "$ref": "#/components/schemas/Phone"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Primary business email address."
    },
    "website": {
      "type": "string",
      "format": "uri",
      "description": "Business website URL."
    },
    "description": {
      "type": "string",
      "description": "Brief description of the business and its products or services."
    },
    "taxID": {
      "$ref": "#/components/schemas/TaxID"
    },
    "industryCodes": {
      "$ref": "#/components/schemas/IndustryCodes"
    }
  }
}