Unified.to · Schema

AccountingContact

IntegrationsUnified API

Properties

Name Type Description
associated_contacts object
billing_address object
company_name string
created_at string
currency string
emails object
first_name string
id string
identification string
is_active boolean
is_customer boolean
is_supplier boolean
last_name string
name string
organization_id string
payment_methods object
portal_url string
raw object
shipping_address object
tax_exemption string
tax_number string
telephones object
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-accountingcontact-schema.json Raw ↑
{
  "$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"
}