Salesforce · Schema
Model1
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| createdBy | object | |
| createdDate | string | |
| fieldMappingList | array | |
| filters | array | |
| historyUrl | string | |
| id | string | |
| isRefreshEnabled | boolean | |
| label | string | |
| lastModifiedBy | object | |
| lastModifiedDate | string | |
| model | object | |
| modelType | string | |
| name | string | |
| predictionDefinitionUrl | string | |
| prescribableFields | array | |
| sortOrder | integer | |
| status | string | |
| url | string |
JSON Schema
{
"type": "object",
"properties": {
"createdBy": {
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "abc123"
},
"name": {
"type": "string",
"example": "Example Title"
},
"profilePhotoUrl": {
"type": "string",
"example": "https://www.example.com"
}
},
"required": [
"id",
"name",
"profilePhotoUrl"
]
},
"createdDate": {
"type": "string",
"example": "example_value"
},
"fieldMappingList": {
"type": "array",
"description": "",
"example": [],
"items": {
"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"
]
}
},
"filters": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "string"
}
},
"historyUrl": {
"type": "string",
"example": "https://www.example.com"
},
"id": {
"type": "string",
"example": "abc123"
},
"isRefreshEnabled": {
"type": "boolean",
"example": true
},
"label": {
"type": "string",
"example": "Example Title"
},
"lastModifiedBy": {
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "abc123"
},
"name": {
"type": "string",
"example": "Example Title"
},
"profilePhotoUrl": {
"type": "string",
"example": "https://www.example.com"
}
},
"required": [
"id",
"name",
"profilePhotoUrl"
]
},
"lastModifiedDate": {
"type": "string",
"example": "example_value"
},
"model": {
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "abc123"
}
},
"required": [
"id"
]
},
"modelType": {
"type": "string",
"example": "example_value"
},
"name": {
"type": "string",
"example": "Example Title"
},
"predictionDefinitionUrl": {
"type": "string",
"example": "https://www.example.com"
},
"prescribableFields": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"customDefinitions": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "string"
}
},
"field": {
"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": [
"customDefinitions",
"field"
]
}
},
"sortOrder": {
"type": "integer",
"example": 10
},
"status": {
"type": "string",
"example": "example_value"
},
"url": {
"type": "string",
"example": "https://www.example.com"
}
},
"required": [
"createdBy",
"createdDate",
"fieldMappingList",
"filters",
"historyUrl",
"id",
"isRefreshEnabled",
"label",
"lastModifiedBy",
"lastModifiedDate",
"model",
"modelType",
"name",
"predictionDefinitionUrl",
"prescribableFields",
"sortOrder",
"status",
"url"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Model1"
}