list_autonumber_columns
Identify AutoNumber columns in Dataverse tables to track automatic numbering implementations across your database schema.
Instructions
Lists all AutoNumber columns in a specific table or across all tables in the environment. Helps identify existing AutoNumber implementations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customOnly | No | Whether to list only custom AutoNumber columns | |
entityLogicalName | No | Logical name of specific table (if not provided, searches all tables) | |
includeManaged | No | Whether to include managed AutoNumber columns |
Input Schema (JSON Schema)
{
"properties": {
"customOnly": {
"default": true,
"description": "Whether to list only custom AutoNumber columns",
"type": "boolean"
},
"entityLogicalName": {
"description": "Logical name of specific table (if not provided, searches all tables)",
"type": "string"
},
"includeManaged": {
"default": false,
"description": "Whether to include managed AutoNumber columns",
"type": "boolean"
}
},
"type": "object"
}