Salesforce · Schema

FieldMappingList

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
modelField object
View JSON Schema on GitHub

JSON Schema

salesforce-field-mapping-list-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "modelField": {
      "type": "object",
      "properties": {
        "label": {
          "type": "string",
          "example": "Example Title"
        },
        "name": {
          "type": "string",
          "example": "Example Title"
        },
        "type": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "label",
        "name",
        "type"
      ]
    }
  },
  "required": [
    "modelField"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FieldMappingList"
}