Salesforce · Schema

PicklistValue

A single picklist option

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
attributes object
label string
validFor array
value string
View JSON Schema on GitHub

JSON Schema

salesforce-ui-picklist-value-schema.json Raw ↑
{
  "type": "object",
  "description": "A single picklist option",
  "properties": {
    "attributes": {
      "type": "object",
      "example": "example_value"
    },
    "label": {
      "type": "string",
      "example": "Example Title"
    },
    "validFor": {
      "type": "array",
      "example": [],
      "items": {
        "type": "integer"
      }
    },
    "value": {
      "type": "string",
      "example": "example_value"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PicklistValue"
}