list_dataverse_tables
Retrieve and filter Dataverse tables to discover available data models, find custom tables, or get an overview of table structure with custom/system and managed/unmanaged filtering options.
Instructions
Retrieves a list of tables in the Dataverse environment with filtering options. Use this to discover available tables, find custom tables, or get an overview of the data model. Supports filtering by custom/system tables and managed/unmanaged status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customOnly | No | Whether to list only custom tables | |
filter | No | OData filter expression | |
includeManaged | No | Whether to include managed tables |
Input Schema (JSON Schema)
{
"properties": {
"customOnly": {
"default": false,
"description": "Whether to list only custom tables",
"type": "boolean"
},
"filter": {
"description": "OData filter expression",
"type": "string"
},
"includeManaged": {
"default": false,
"description": "Whether to include managed tables",
"type": "boolean"
}
},
"type": "object"
}