Salesforce · Schema

PicklistValue2

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
active boolean
defaultValue boolean
label ['string', 'null']
validFor ['string', 'null']
value string
View JSON Schema on GitHub

JSON Schema

salesforce-picklist-value2-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "active": {
      "type": "boolean",
      "example": true
    },
    "defaultValue": {
      "type": "boolean",
      "example": true
    },
    "label": {
      "type": "['string', 'null']",
      "example": "Example Title"
    },
    "validFor": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "value": {
      "type": "string",
      "example": "example_value"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PicklistValue2"
}