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