{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BankFeedTransactionResponse", "title": "BankFeedTransactionResponse", "type": "object", "properties": { "model": { "$ref": "#/components/schemas/BankFeedTransaction" }, "warnings": { "type": "array", "items": { "$ref": "#/components/schemas/WarningValidationProblem" } }, "errors": { "type": "array", "items": { "$ref": "#/components/schemas/ErrorValidationProblem" } }, "logs": { "type": "array", "items": { "$ref": "#/components/schemas/DebugModeLog" } } }, "required": [ "model", "warnings", "errors" ] }