{ "$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" } } } } } }