{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TransactionWithRefundsResponse", "properties": { "orderId": { "type": "integer", "format": "int64" }, "sessionId": { "type": "string" }, "amount": { "type": "integer" }, "currency": { "type": "string" }, "refunds": { "type": "array", "items": { "$ref": "#/components/schemas/RefundsCollection" } } }, "type": "object" }