list_dataverse_columns
Discover available fields and table structure in Dataverse by retrieving column lists with filtering options for custom/system columns and managed/unmanaged status.
Instructions
Retrieves a list of columns in a specific Dataverse table with filtering options. Use this to discover available fields in a table, find custom columns, or get an overview of the table structure. Supports filtering by custom/system columns and managed/unmanaged status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customOnly | No | Whether to list only custom columns | |
entityLogicalName | Yes | Logical name of the table | |
filter | No | OData filter expression | |
includeManaged | No | Whether to include managed columns |
Input Schema (JSON Schema)
{
"properties": {
"customOnly": {
"default": false,
"description": "Whether to list only custom columns",
"type": "boolean"
},
"entityLogicalName": {
"description": "Logical name of the table",
"type": "string"
},
"filter": {
"description": "OData filter expression",
"type": "string"
},
"includeManaged": {
"default": false,
"description": "Whether to include managed columns",
"type": "boolean"
}
},
"required": [
"entityLogicalName"
],
"type": "object"
}