VTEX · Schema

ListRolesResponse

Response body for listing all roles.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
items array Array of role objects.
paging object
View JSON Schema on GitHub

JSON Schema

vtex-listrolesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListRolesResponse",
  "title": "ListRolesResponse",
  "description": "Response body for listing all roles.",
  "type": "object",
  "properties": {
    "items": {
      "description": "Array of role objects.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RoleItems"
      }
    },
    "paging": {
      "$ref": "#/components/schemas/Paging"
    }
  }
}