Unified.to · Schema

AccountingExpense

IntegrationsUnified API

Properties

Name Type Description
account_id string
approved_at string
approver_user_id string
contact_id string
created_at string
currency string
id string
lineitems object
name string
organization_id string
payment_method string
posted_at string
raw object
reimbursed_amount number
reimbursed_at string
tax_amount number
total_amount number
updated_at string
user_id string
View JSON Schema on GitHub

JSON Schema

unified-to-accountingexpense-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountingExpense",
  "title": "AccountingExpense",
  "properties": {
    "account_id": {
      "type": "string"
    },
    "approved_at": {
      "format": "date-time",
      "type": "string"
    },
    "approver_user_id": {
      "type": "string"
    },
    "contact_id": {
      "type": "string"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "currency": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "lineitems": {
      "$ref": "#/components/schemas/property_AccountingExpense_lineitems"
    },
    "name": {
      "type": "string"
    },
    "organization_id": {
      "type": "string"
    },
    "payment_method": {
      "type": "string"
    },
    "posted_at": {
      "format": "date-time",
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "reimbursed_amount": {
      "type": "number"
    },
    "reimbursed_at": {
      "format": "date-time",
      "type": "string"
    },
    "tax_amount": {
      "type": "number"
    },
    "total_amount": {
      "type": "number"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    },
    "user_id": {
      "type": "string"
    }
  },
  "type": "object"
}