Salesforce · Schema

ListViewCollection

Collection of list views for an object

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
count integer
currentPageToken string
nextPageToken string
previousPageToken string
results array
View JSON Schema on GitHub

JSON Schema

salesforce-ui-list-view-collection-schema.json Raw ↑
{
  "type": "object",
  "description": "Collection of list views for an object",
  "properties": {
    "count": {
      "type": "integer",
      "example": 42
    },
    "currentPageToken": {
      "type": "string",
      "example": "CAUQAA"
    },
    "nextPageToken": {
      "type": "string",
      "example": "CAUQAA"
    },
    "previousPageToken": {
      "type": "string",
      "example": "CAUQAA"
    },
    "results": {
      "type": "array",
      "example": [],
      "items": {
        "type": "object",
        "description": "Summary information about a list view",
        "properties": {
          "id": {
            "type": "string",
            "example": "abc123"
          },
          "apiName": {
            "type": "string",
            "example": "example_value"
          },
          "label": {
            "type": "string",
            "example": "Example Title"
          },
          "url": {
            "type": "string",
            "example": "https://www.example.com"
          }
        }
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ListViewCollection"
}