Properties
| Name | Type | Description |
|---|---|---|
| hsCode | string | Predicted HS Code |
| description | string | HS Code description |
| confidence | number | Confidence score (0-1) |
| parentCode | string |
JSON Schema
{
"$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"
}
}
}