Salesforce · Schema
Record4
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| attributes | object | |
| name | string | |
| phone | string | |
| website | string | |
| numberOfEmployees | string | |
| industry | string |
JSON Schema
{
"type": "object",
"properties": {
"attributes": {
"type": "object",
"properties": {
"type": {
"type": "string",
"example": "example_value"
},
"referenceId": {
"type": "string",
"example": "500123"
}
},
"required": [
"type",
"referenceId"
]
},
"name": {
"type": "string",
"example": "Example Title"
},
"phone": {
"type": "string",
"example": "example_value"
},
"website": {
"type": "string",
"example": "example_value"
},
"numberOfEmployees": {
"type": "string",
"example": "example_value"
},
"industry": {
"type": "string",
"example": "example_value"
}
},
"required": [
"attributes",
"name",
"phone",
"website",
"numberOfEmployees",
"industry"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Record4"
}