Avalara · Schema

RefundTransactionModel

RefundTransactionModel schema from Avalara API

Taxes

Properties

Name Type Description
refundTransactionCode string
refundDate string
refundType string
refundPercentage number
refundLines array
View JSON Schema on GitHub

JSON Schema

avatax-rest-refund-transaction-model-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/avatax-rest-refund-transaction-model-schema.json",
  "title": "RefundTransactionModel",
  "description": "RefundTransactionModel schema from Avalara API",
  "type": "object",
  "required": [
    "refundTransactionCode",
    "refundDate",
    "refundType"
  ],
  "properties": {
    "refundTransactionCode": {
      "type": "string"
    },
    "refundDate": {
      "type": "string",
      "format": "date"
    },
    "refundType": {
      "type": "string",
      "enum": [
        "Full",
        "Partial",
        "Percentage",
        "TaxOnly"
      ]
    },
    "refundPercentage": {
      "type": "number",
      "format": "double"
    },
    "refundLines": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}