{ "$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" ] } } }