Response received when retrieving a list of accounts
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetAccountsResponse", "title": "GetAccountsResponse", "type": "object", "description": "Response received when retrieving a list of accounts", "required": [ "data", "page_info" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/Account" } }, "page_info": { "$ref": "#/components/schemas/PageInfo" } } }