├── .github └── workflows │ ├── backup-s3.yml │ └── yaml-to-json.yml ├── .gitignore ├── README.md ├── dist └── openapi │ ├── account-info-openapi.json │ ├── account-info-openapi.yaml │ ├── confirmation-funds-openapi.json │ ├── confirmation-funds-openapi.yaml │ ├── event-notifications-openapi.json │ ├── event-notifications-openapi.yaml │ ├── events-openapi.json │ ├── events-openapi.yaml │ ├── payment-initiation-openapi.json │ ├── payment-initiation-openapi.yaml │ ├── vrp-openapi.json │ └── vrp-openapi.yaml ├── gen-diagrams.sh └── uml-diagrams ├── LoanInterest.svg ├── OBAuthorisation1.svg ├── OBBCAData1.svg ├── OBBranchAndFinancialInstitutionIdentification6.svg ├── OBCashAccountCreditor3.svg ├── OBCashAccountDebtorWithName.svg ├── OBDomestic2.svg ├── OBDomesticRefundAccount1.svg ├── OBDomesticScheduled2.svg ├── OBDomesticStandingOrder3.svg ├── OBDomesticVRPConsentRequest.svg ├── OBDomesticVRPConsentResponse.svg ├── OBDomesticVRPControlParameters.svg ├── OBDomesticVRPDetails.svg ├── OBDomesticVRPInitiation.svg ├── OBDomesticVRPInstruction.svg ├── OBDomesticVRPRequest.svg ├── OBDomesticVRPResponse.svg ├── OBExchangeRate2.svg ├── OBFile2.svg ├── OBFundsConfirmation1.svg ├── OBFundsConfirmationConsent1.svg ├── OBFundsConfirmationConsentResponse1.svg ├── OBFundsConfirmationResponse1.svg ├── OBInternational3.svg ├── OBInternationalRefundAccount1.svg ├── OBInternationalScheduled3.svg ├── OBInternationalStandingOrder4.svg ├── OBMultiAuthorisation1.svg ├── OBPCAData1.svg ├── OBParty2.svg ├── OBReadAccount6.svg ├── OBReadBalance1.svg ├── OBReadBeneficiary5.svg ├── OBReadConsent1.svg ├── OBReadConsentResponse1.svg ├── OBReadDirectDebit2.svg ├── OBReadOffer1.svg ├── OBReadParty2.svg ├── OBReadParty3.svg ├── OBReadProduct2.svg ├── OBReadScheduledPayment3.svg ├── OBReadStandingOrder6.svg ├── OBReadStatement2.svg ├── OBReadTransaction6.svg ├── OBRisk1.svg ├── OBRisk2.svg ├── OBSCASupportData1.svg ├── OBVRPFundsConfirmationRequest.svg ├── OBVRPFundsConfirmationResponse.svg ├── OBWriteDomestic2.svg ├── OBWriteDomesticConsent4.svg ├── OBWriteDomesticConsentResponse5.svg ├── OBWriteDomesticResponse5.svg ├── OBWriteDomesticScheduled2.svg ├── OBWriteDomesticScheduledConsent4.svg ├── OBWriteDomesticScheduledConsentResponse5.svg ├── OBWriteDomesticScheduledResponse5.svg ├── OBWriteDomesticStandingOrder3.svg ├── OBWriteDomesticStandingOrderConsent5.svg ├── OBWriteDomesticStandingOrderConsentResponse6.svg ├── OBWriteDomesticStandingOrderResponse6.svg ├── OBWriteFile2.svg ├── OBWriteFileConsent3.svg ├── OBWriteFileConsentResponse4.svg ├── OBWriteFileResponse3.svg ├── OBWriteFundsConfirmationResponse1.svg ├── OBWriteInternational3.svg ├── OBWriteInternationalConsent5.svg ├── OBWriteInternationalConsentResponse6.svg ├── OBWriteInternationalResponse5.svg ├── OBWriteInternationalScheduled3.svg ├── OBWriteInternationalScheduledConsent5.svg ├── OBWriteInternationalScheduledConsentResponse6.svg ├── OBWriteInternationalScheduledResponse6.svg ├── OBWriteInternationalStandingOrder4.svg ├── OBWriteInternationalStandingOrderConsent6.svg ├── OBWriteInternationalStandingOrderConsentResponse7.svg ├── OBWriteInternationalStandingOrderResponse7.svg ├── OBWritePaymentDetailsResponse1.svg ├── OtherFeesCharges.svg ├── Overdraft.svg ├── OverdraftTierBandSet.svg └── Repayment.svg /.github/workflows/backup-s3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/.github/workflows/backup-s3.yml -------------------------------------------------------------------------------- /.github/workflows/yaml-to-json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/.github/workflows/yaml-to-json.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/README.md -------------------------------------------------------------------------------- /dist/openapi/account-info-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/dist/openapi/account-info-openapi.json -------------------------------------------------------------------------------- /dist/openapi/account-info-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/dist/openapi/account-info-openapi.yaml -------------------------------------------------------------------------------- /dist/openapi/confirmation-funds-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/dist/openapi/confirmation-funds-openapi.json -------------------------------------------------------------------------------- /dist/openapi/confirmation-funds-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/dist/openapi/confirmation-funds-openapi.yaml -------------------------------------------------------------------------------- /dist/openapi/event-notifications-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/dist/openapi/event-notifications-openapi.json -------------------------------------------------------------------------------- /dist/openapi/event-notifications-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/dist/openapi/event-notifications-openapi.yaml -------------------------------------------------------------------------------- /dist/openapi/events-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/dist/openapi/events-openapi.json -------------------------------------------------------------------------------- /dist/openapi/events-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/dist/openapi/events-openapi.yaml -------------------------------------------------------------------------------- /dist/openapi/payment-initiation-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/dist/openapi/payment-initiation-openapi.json -------------------------------------------------------------------------------- /dist/openapi/payment-initiation-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/dist/openapi/payment-initiation-openapi.yaml -------------------------------------------------------------------------------- /dist/openapi/vrp-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/dist/openapi/vrp-openapi.json -------------------------------------------------------------------------------- /dist/openapi/vrp-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/dist/openapi/vrp-openapi.yaml -------------------------------------------------------------------------------- /gen-diagrams.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/gen-diagrams.sh -------------------------------------------------------------------------------- /uml-diagrams/LoanInterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/LoanInterest.svg -------------------------------------------------------------------------------- /uml-diagrams/OBAuthorisation1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBAuthorisation1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBBCAData1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBBCAData1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBBranchAndFinancialInstitutionIdentification6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBBranchAndFinancialInstitutionIdentification6.svg -------------------------------------------------------------------------------- /uml-diagrams/OBCashAccountCreditor3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBCashAccountCreditor3.svg -------------------------------------------------------------------------------- /uml-diagrams/OBCashAccountDebtorWithName.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBCashAccountDebtorWithName.svg -------------------------------------------------------------------------------- /uml-diagrams/OBDomestic2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBDomestic2.svg -------------------------------------------------------------------------------- /uml-diagrams/OBDomesticRefundAccount1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBDomesticRefundAccount1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBDomesticScheduled2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBDomesticScheduled2.svg -------------------------------------------------------------------------------- /uml-diagrams/OBDomesticStandingOrder3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBDomesticStandingOrder3.svg -------------------------------------------------------------------------------- /uml-diagrams/OBDomesticVRPConsentRequest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBDomesticVRPConsentRequest.svg -------------------------------------------------------------------------------- /uml-diagrams/OBDomesticVRPConsentResponse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBDomesticVRPConsentResponse.svg -------------------------------------------------------------------------------- /uml-diagrams/OBDomesticVRPControlParameters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBDomesticVRPControlParameters.svg -------------------------------------------------------------------------------- /uml-diagrams/OBDomesticVRPDetails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBDomesticVRPDetails.svg -------------------------------------------------------------------------------- /uml-diagrams/OBDomesticVRPInitiation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBDomesticVRPInitiation.svg -------------------------------------------------------------------------------- /uml-diagrams/OBDomesticVRPInstruction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBDomesticVRPInstruction.svg -------------------------------------------------------------------------------- /uml-diagrams/OBDomesticVRPRequest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBDomesticVRPRequest.svg -------------------------------------------------------------------------------- /uml-diagrams/OBDomesticVRPResponse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBDomesticVRPResponse.svg -------------------------------------------------------------------------------- /uml-diagrams/OBExchangeRate2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBExchangeRate2.svg -------------------------------------------------------------------------------- /uml-diagrams/OBFile2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBFile2.svg -------------------------------------------------------------------------------- /uml-diagrams/OBFundsConfirmation1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBFundsConfirmation1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBFundsConfirmationConsent1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBFundsConfirmationConsent1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBFundsConfirmationConsentResponse1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBFundsConfirmationConsentResponse1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBFundsConfirmationResponse1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBFundsConfirmationResponse1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBInternational3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBInternational3.svg -------------------------------------------------------------------------------- /uml-diagrams/OBInternationalRefundAccount1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBInternationalRefundAccount1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBInternationalScheduled3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBInternationalScheduled3.svg -------------------------------------------------------------------------------- /uml-diagrams/OBInternationalStandingOrder4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBInternationalStandingOrder4.svg -------------------------------------------------------------------------------- /uml-diagrams/OBMultiAuthorisation1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBMultiAuthorisation1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBPCAData1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBPCAData1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBParty2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBParty2.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadAccount6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadAccount6.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadBalance1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadBalance1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadBeneficiary5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadBeneficiary5.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadConsent1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadConsent1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadConsentResponse1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadConsentResponse1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadDirectDebit2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadDirectDebit2.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadOffer1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadOffer1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadParty2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadParty2.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadParty3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadParty3.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadProduct2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadProduct2.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadScheduledPayment3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadScheduledPayment3.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadStandingOrder6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadStandingOrder6.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadStatement2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadStatement2.svg -------------------------------------------------------------------------------- /uml-diagrams/OBReadTransaction6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBReadTransaction6.svg -------------------------------------------------------------------------------- /uml-diagrams/OBRisk1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBRisk1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBRisk2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBRisk2.svg -------------------------------------------------------------------------------- /uml-diagrams/OBSCASupportData1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBSCASupportData1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBVRPFundsConfirmationRequest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBVRPFundsConfirmationRequest.svg -------------------------------------------------------------------------------- /uml-diagrams/OBVRPFundsConfirmationResponse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBVRPFundsConfirmationResponse.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteDomestic2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteDomestic2.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteDomesticConsent4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteDomesticConsent4.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteDomesticConsentResponse5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteDomesticConsentResponse5.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteDomesticResponse5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteDomesticResponse5.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteDomesticScheduled2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteDomesticScheduled2.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteDomesticScheduledConsent4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteDomesticScheduledConsent4.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteDomesticScheduledConsentResponse5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteDomesticScheduledConsentResponse5.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteDomesticScheduledResponse5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteDomesticScheduledResponse5.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteDomesticStandingOrder3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteDomesticStandingOrder3.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteDomesticStandingOrderConsent5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteDomesticStandingOrderConsent5.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteDomesticStandingOrderConsentResponse6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteDomesticStandingOrderConsentResponse6.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteDomesticStandingOrderResponse6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteDomesticStandingOrderResponse6.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteFile2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteFile2.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteFileConsent3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteFileConsent3.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteFileConsentResponse4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteFileConsentResponse4.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteFileResponse3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteFileResponse3.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteFundsConfirmationResponse1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteFundsConfirmationResponse1.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteInternational3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteInternational3.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteInternationalConsent5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteInternationalConsent5.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteInternationalConsentResponse6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteInternationalConsentResponse6.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteInternationalResponse5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteInternationalResponse5.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteInternationalScheduled3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteInternationalScheduled3.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteInternationalScheduledConsent5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteInternationalScheduledConsent5.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteInternationalScheduledConsentResponse6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteInternationalScheduledConsentResponse6.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteInternationalScheduledResponse6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteInternationalScheduledResponse6.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteInternationalStandingOrder4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteInternationalStandingOrder4.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteInternationalStandingOrderConsent6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteInternationalStandingOrderConsent6.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteInternationalStandingOrderConsentResponse7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteInternationalStandingOrderConsentResponse7.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWriteInternationalStandingOrderResponse7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWriteInternationalStandingOrderResponse7.svg -------------------------------------------------------------------------------- /uml-diagrams/OBWritePaymentDetailsResponse1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OBWritePaymentDetailsResponse1.svg -------------------------------------------------------------------------------- /uml-diagrams/OtherFeesCharges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OtherFeesCharges.svg -------------------------------------------------------------------------------- /uml-diagrams/Overdraft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/Overdraft.svg -------------------------------------------------------------------------------- /uml-diagrams/OverdraftTierBandSet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/OverdraftTierBandSet.svg -------------------------------------------------------------------------------- /uml-diagrams/Repayment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBankingUK/read-write-api-specs/HEAD/uml-diagrams/Repayment.svg --------------------------------------------------------------------------------