Salesforce · Schema

ListViewResult

Data and metadata for a list view

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
id string
label string
records array
sortBy string
View JSON Schema on GitHub

JSON Schema

salesforce-ui-list-view-result-schema.json Raw ↑
{
  "type": "object",
  "description": "Data and metadata for a list view",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "label": {
      "type": "string",
      "example": "Example Title"
    },
    "records": {
      "type": "array",
      "example": [],
      "items": {
        "type": "object"
      }
    },
    "sortBy": {
      "type": "string",
      "example": "example_value"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ListViewResult"
}