{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CalculationResponse", "title": "CalculationResponse", "type": "object", "properties": { "header": { "type": "object", "properties": { "transactionId": { "type": "string" }, "status": { "type": "string" } } }, "lines": { "type": "array", "items": { "$ref": "#/components/schemas/CalculationResultLine" } } } }