Properties
| Name | Type | Description |
|---|---|---|
| country | string | |
| region | string | |
| jurisType | string | |
| jurisCode | string | |
| jurisName | string | |
| taxType | string | |
| rate | number | |
| tax | number | |
| taxable | number | |
| exempt | number |
JSON Schema
{
"$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"
}
}
}