{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountingContact", "title": "AccountingContact", "properties": { "associated_contacts": { "$ref": "#/components/schemas/property_AccountingContact_associated_contacts" }, "billing_address": { "$ref": "#/components/schemas/property_AccountingContact_billing_address" }, "company_name": { "type": "string" }, "created_at": { "format": "date-time", "type": "string" }, "currency": { "default": "USD", "type": "string" }, "emails": { "$ref": "#/components/schemas/property_AccountingContact_emails" }, "first_name": { "type": "string" }, "id": { "type": "string" }, "identification": { "type": "string" }, "is_active": { "type": "boolean" }, "is_customer": { "type": "boolean" }, "is_supplier": { "type": "boolean" }, "last_name": { "type": "string" }, "name": { "type": "string" }, "organization_id": { "type": "string" }, "payment_methods": { "$ref": "#/components/schemas/property_AccountingContact_payment_methods" }, "portal_url": { "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "shipping_address": { "$ref": "#/components/schemas/property_AccountingContact_shipping_address" }, "tax_exemption": { "enum": [ "FEDERAL_GOV", "REGION_GOV", "LOCAL_GOV", "TRIBAL_GOV", "CHARITABLE_ORG", "RELIGIOUS_ORG", "EDUCATIONAL_ORG", "MEDICAL_ORG", "RESALE", "FOREIGN", "OTHER" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "tax_number": { "type": "string" }, "telephones": { "$ref": "#/components/schemas/property_AccountingContact_telephones" }, "updated_at": { "format": "date-time", "type": "string" } }, "type": "object" }