update_dataverse_column
Modify column properties in Dataverse tables, including display names, descriptions, required levels, and audit settings to adapt to changing business requirements.
Instructions
Updates the properties and configuration of an existing column in a Dataverse table. Use this to modify column settings like display names, descriptions, required levels, or audit settings. Note that data type cannot be changed after creation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | New description of the column | |
displayName | No | New display name for the column | |
entityLogicalName | Yes | Logical name of the table | |
isAuditEnabled | No | Whether auditing is enabled for this column | |
isValidForAdvancedFind | No | Whether the column appears in Advanced Find | |
isValidForCreate | No | Whether the column can be set during create | |
isValidForUpdate | No | Whether the column can be updated | |
logicalName | Yes | Logical name of the column to update | |
requiredLevel | No | New required level of the column |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "New description of the column",
"type": "string"
},
"displayName": {
"description": "New display name for the column",
"type": "string"
},
"entityLogicalName": {
"description": "Logical name of the table",
"type": "string"
},
"isAuditEnabled": {
"description": "Whether auditing is enabled for this column",
"type": "boolean"
},
"isValidForAdvancedFind": {
"description": "Whether the column appears in Advanced Find",
"type": "boolean"
},
"isValidForCreate": {
"description": "Whether the column can be set during create",
"type": "boolean"
},
"isValidForUpdate": {
"description": "Whether the column can be updated",
"type": "boolean"
},
"logicalName": {
"description": "Logical name of the column to update",
"type": "string"
},
"requiredLevel": {
"description": "New required level of the column",
"enum": [
"None",
"SystemRequired",
"ApplicationRequired",
"Recommended"
],
"type": "string"
}
},
"required": [
"entityLogicalName",
"logicalName"
],
"type": "object"
}