Salesforce · Schema

List

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
apiName string
id string
label string
url string
View JSON Schema on GitHub

JSON Schema

salesforce-list-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "apiName": {
      "type": "string",
      "example": "example_value"
    },
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "label": {
      "type": "string",
      "example": "Example Title"
    },
    "url": {
      "type": "string",
      "example": "https://www.example.com"
    }
  },
  "required": [
    "apiName",
    "id",
    "label",
    "url"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "List"
}