Salesforce · Schema
Edit
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| isEditRestricted | boolean | |
| isEditableByMeUrl | string | |
| lastEditedBy | ['string', 'null'] | |
| lastEditedDate | ['string', 'null'] | |
| latestRevision | integer | |
| relativeLastEditedDate | ['string', 'null'] |
JSON Schema
{
"type": "object",
"properties": {
"isEditRestricted": {
"type": "boolean",
"example": true
},
"isEditableByMeUrl": {
"type": "string",
"example": "https://www.example.com"
},
"lastEditedBy": {
"type": "['string', 'null']",
"example": "example_value"
},
"lastEditedDate": {
"type": "['string', 'null']",
"example": "example_value"
},
"latestRevision": {
"type": "integer",
"example": 10
},
"relativeLastEditedDate": {
"type": "['string', 'null']",
"example": "example_value"
}
},
"required": [
"isEditRestricted",
"isEditableByMeUrl",
"lastEditedBy",
"lastEditedDate",
"latestRevision",
"relativeLastEditedDate"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Edit"
}