Unified.to · Schema

AccountingContact

AccountingContact schema from Unified.to API

IntegrationsUnified API

Properties

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

JSON Schema

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