Properties
| Name | Type | Description |
|---|---|---|
| taxType | string | Type of excise tax |
| jurisdiction | string | Taxing jurisdiction |
| taxRate | number | |
| taxAmount | number | |
| taxableAmount | number | |
| exemptAmount | number | |
| rateType | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ExciseTaxDetail",
"title": "ExciseTaxDetail",
"type": "object",
"properties": {
"taxType": {
"type": "string",
"description": "Type of excise tax"
},
"jurisdiction": {
"type": "string",
"description": "Taxing jurisdiction"
},
"taxRate": {
"type": "number",
"format": "double"
},
"taxAmount": {
"type": "number",
"format": "double"
},
"taxableAmount": {
"type": "number",
"format": "double"
},
"exemptAmount": {
"type": "number",
"format": "double"
},
"rateType": {
"type": "string",
"enum": [
"PerUnit",
"Percentage"
]
}
}
}