Avalara · Schema

ClassifyResponse

Taxes

Properties

Name Type Description
itemCode string
description string
predictions array
avataxCode string Recommended Avalara tax code
View JSON Schema on GitHub

JSON Schema

avalara-classifyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClassifyResponse",
  "title": "ClassifyResponse",
  "type": "object",
  "properties": {
    "itemCode": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "predictions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ClassificationPrediction"
      }
    },
    "avataxCode": {
      "type": "string",
      "description": "Recommended Avalara tax code"
    }
  }
}