Salesforce · Schema

ColumnWrap

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
Site boolean
Type boolean
BillingCountry boolean
Owner.Alias boolean
Phone boolean
Name boolean
View JSON Schema on GitHub

JSON Schema

salesforce-column-wrap-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "Site": {
      "type": "boolean",
      "example": true
    },
    "Type": {
      "type": "boolean",
      "example": true
    },
    "BillingCountry": {
      "type": "boolean",
      "example": 42
    },
    "Owner.Alias": {
      "type": "boolean",
      "example": true
    },
    "Phone": {
      "type": "boolean",
      "example": true
    },
    "Name": {
      "type": "boolean",
      "example": "Example Title"
    }
  },
  "required": [
    "Site",
    "Type",
    "BillingCountry",
    "Owner.Alias",
    "Phone",
    "Name"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ColumnWrap"
}