{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateBankTransactions", "title": "Create bank transactions", "type": "object", "properties": { "accountId": { "type": "string", "description": "Unique identifier for a bank account.", "examples": [ "13d946f0-c5d5-42bc-b092-97ece17923ab", "9wg4lep4ush5cxs79pl8sozmsndbaukll3ind4g7buqbm1h2", "7110701885", "EILBDVJVNUAGVKRQ", "Checking 0202" ] }, "transactions": { "$ref": "#/components/schemas/BankTransactions" } }, "required": [ "accountId", "transactions" ] }