{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/account_list", "title": "account_list", "allOf": [ { "properties": { "accounts": { "description": "Array of Accounts", "items": { "$ref": "#/components/schemas/account_generic_response" }, "type": "array" } }, "required": [ "accounts" ], "type": "object" }, { "$ref": "#/components/schemas/paginated_response" } ] }