Salesforce · JSON Structure

Salesforce Ui List View Collection Structure

Collection of list views for an object

Type: object Properties: 5
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

ListViewCollection is a JSON Structure definition published by Salesforce, describing 5 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

count currentPageToken nextPageToken previousPageToken results

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Collection of list views for an object",
  "name": "ListViewCollection",
  "properties": {
    "count": {
      "type": "integer"
    },
    "currentPageToken": {
      "type": "string"
    },
    "nextPageToken": {
      "type": "string"
    },
    "previousPageToken": {
      "type": "string"
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "description": "Summary information about a list view",
        "properties": {
          "id": {
            "type": "string"
          },
          "apiName": {
            "type": "string"
          },
          "label": {
            "type": "string"
          },
          "url": {
            "type": "string"
          }
        }
      }
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}