Salesforce · Schema

FieldValueRepresentation

A field value with display metadata

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
displayValue object Human-readable formatted display value (for dates, picklists, lookups)
value object Raw field value
View JSON Schema on GitHub

JSON Schema

salesforce-ui-field-value-representation-schema.json Raw ↑
{
  "type": "object",
  "description": "A field value with display metadata",
  "properties": {
    "displayValue": {
      "type": "object",
      "description": "Human-readable formatted display value (for dates, picklists, lookups)",
      "example": "example_value"
    },
    "value": {
      "type": "object",
      "description": "Raw field value",
      "example": "example_value"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FieldValueRepresentation"
}