{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/management-list-merchant-users-response-structure.json", "description": "ListMerchantUsersResponse schema from Adyen API", "type": "object", "properties": { "_links": { "description": "Pagination references.", "$ref": "#/components/schemas/PaginationLinks" }, "data": { "description": "The list of users.", "items": { "$ref": "#/components/schemas/User" }, "type": "array" }, "itemsTotal": { "description": "Total number of items.", "type": "int32" }, "pagesTotal": { "description": "Total number of pages.", "type": "int32" } }, "required": [ "itemsTotal", "pagesTotal" ], "name": "ListMerchantUsersResponse" }