{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TaxDeterminationLine", "title": "TaxDeterminationLine", "type": "object", "properties": { "lineNumber": { "type": "string" }, "productCode": { "type": "string" }, "taxes": { "type": "array", "items": { "$ref": "#/components/schemas/ExciseTaxDetail" } }, "totalTax": { "type": "number", "format": "double" } } }