Alloy · Schema

Alloy Business Entity

Represents a business entity (KYB) in the Alloy Identity platform

Identity VerificationKYCKYBFraud PreventionComplianceOnboardingTransaction MonitoringRisk DecisioningAMLFintech

Properties

Name Type Description
entity_token string Unique token identifying the business entity, prefixed with 'B-'
external_entity_id string Your system's identifier for this entity
company_name string Legal business name
company_dba_name string Doing business as name
company_type string Business type (LLC, Corp, etc.)
company_ein string Employer Identification Number
company_industry string Business industry category
company_website string Business website URL
company_phone_number string Business phone number
company_email string Business email address
addresses array Business addresses
View JSON Schema on GitHub

JSON Schema

alloy-business-entity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alloy/main/json-schema/alloy-business-entity.json",
  "title": "Alloy Business Entity",
  "description": "Represents a business entity (KYB) in the Alloy Identity platform",
  "type": "object",
  "properties": {
    "entity_token": {
      "type": "string",
      "description": "Unique token identifying the business entity, prefixed with 'B-'"
    },
    "external_entity_id": {
      "type": "string",
      "description": "Your system's identifier for this entity"
    },
    "company_name": {
      "type": "string",
      "description": "Legal business name"
    },
    "company_dba_name": {
      "type": "string",
      "description": "Doing business as name"
    },
    "company_type": {
      "type": "string",
      "description": "Business type (LLC, Corp, etc.)"
    },
    "company_ein": {
      "type": "string",
      "description": "Employer Identification Number"
    },
    "company_industry": {
      "type": "string",
      "description": "Business industry category"
    },
    "company_website": {
      "type": "string",
      "format": "uri",
      "description": "Business website URL"
    },
    "company_phone_number": {
      "type": "string",
      "description": "Business phone number"
    },
    "company_email": {
      "type": "string",
      "format": "email",
      "description": "Business email address"
    },
    "addresses": {
      "type": "array",
      "description": "Business addresses",
      "items": {
        "type": "object",
        "properties": {
          "line_1": {
            "type": "string"
          },
          "line_2": {
            "type": "string"
          },
          "city": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "zip": {
            "type": "string"
          },
          "country_code": {
            "type": "string"
          }
        }
      }
    }
  }
}