{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExciseTransaction", "title": "ExciseTransaction", "type": "object", "properties": { "transactionId": { "type": "string" }, "invoiceNumber": { "type": "string" }, "transactionDate": { "type": "string", "format": "date" }, "transactionType": { "type": "string" }, "status": { "type": "string", "enum": [ "Pending", "Committed", "Voided" ] }, "totalAmount": { "type": "number", "format": "double" }, "totalTax": { "type": "number", "format": "double" } } }