{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TransactionSummary", "title": "TransactionSummary", "type": "object", "properties": { "country": { "type": "string" }, "region": { "type": "string" }, "jurisType": { "type": "string" }, "jurisCode": { "type": "string" }, "jurisName": { "type": "string" }, "taxType": { "type": "string" }, "rate": { "type": "number", "format": "double" }, "tax": { "type": "number", "format": "double" }, "taxable": { "type": "number", "format": "double" }, "exempt": { "type": "number", "format": "double" } } }