Avalara · Schema

ClassificationPrediction

Taxes

Properties

Name Type Description
hsCode string Predicted HS Code
description string HS Code description
confidence number Confidence score (0-1)
parentCode string
View JSON Schema on GitHub

JSON Schema

avalara-classificationprediction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClassificationPrediction",
  "title": "ClassificationPrediction",
  "type": "object",
  "properties": {
    "hsCode": {
      "type": "string",
      "description": "Predicted HS Code"
    },
    "description": {
      "type": "string",
      "description": "HS Code description"
    },
    "confidence": {
      "type": "number",
      "format": "double",
      "description": "Confidence score (0-1)"
    },
    "parentCode": {
      "type": "string"
    }
  }
}