Salesforce · Schema

ListViewSummary

Summary information about a list view

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
id string
apiName string
label string
url string
View JSON Schema on GitHub

JSON Schema

salesforce-ui-list-view-summary-schema.json Raw ↑
{
  "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": "ListViewSummary"
}