Avalara · Schema

ClassifyResponse

ClassifyResponse schema from Avalara API

Taxes

Properties

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

JSON Schema

hs-code-classification-classify-response-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/hs-code-classification-classify-response-schema.json",
  "title": "ClassifyResponse",
  "description": "ClassifyResponse schema from Avalara API",
  "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"
    }
  }
}