Salesforce · JSON Structure

Salesforce Ui Lookup Records Collection Structure

Collection of records matching a lookup search

Type: object Properties: 2
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

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

Properties

count lookupResults

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Collection of records matching a lookup search",
  "name": "LookupRecordsCollection",
  "properties": {
    "count": {
      "type": "integer"
    },
    "lookupResults": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "displayValue": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          }
        }
      }
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}