get_dataverse_column
Retrieve detailed information about a specific column in a Dataverse table, including data type, properties, and configuration settings to inspect column definitions and understand field structure.
Instructions
Retrieves detailed information about a specific column in a Dataverse table, including its data type, properties, and configuration settings. Use this to inspect column definitions and understand field structure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entityLogicalName | Yes | Logical name of the table | |
logicalName | Yes | Logical name of the column to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"entityLogicalName": {
"description": "Logical name of the table",
"type": "string"
},
"logicalName": {
"description": "Logical name of the column to retrieve",
"type": "string"
}
},
"required": [
"entityLogicalName",
"logicalName"
],
"type": "object"
}