Avalara · Schema

AdjustTransactionModel

Taxes

Properties

Name Type Description
adjustmentReason string
adjustmentDescription string
newTransaction object
View JSON Schema on GitHub

JSON Schema

avalara-adjusttransactionmodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdjustTransactionModel",
  "title": "AdjustTransactionModel",
  "type": "object",
  "required": [
    "adjustmentReason",
    "newTransaction"
  ],
  "properties": {
    "adjustmentReason": {
      "type": "string",
      "enum": [
        "NotAdjusted",
        "SourcingIssue",
        "ReconciledWithGeneralLedger",
        "ExemptCertApplied",
        "PriceAdjusted",
        "ProductReturned",
        "ProductExchanged",
        "BadDebt",
        "Other"
      ]
    },
    "adjustmentDescription": {
      "type": "string"
    },
    "newTransaction": {
      "$ref": "#/components/schemas/CreateTransactionModel"
    }
  }
}