list_dataverse_optionsets
Retrieve available choice lists and option sets from Dataverse with filtering options to discover custom sets and manage reusable options.
Instructions
Retrieves a list of option sets in the Dataverse environment with filtering options. Use this to discover available choice lists, find custom option sets, or get an overview of reusable options. Supports filtering by custom/system and managed/unmanaged status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customOnly | No | Whether to list only custom option sets | |
filter | No | OData filter expression | |
includeManaged | No | Whether to include managed option sets | |
top | No | Maximum number of option sets to return (default: 50) |
Input Schema (JSON Schema)
{
"properties": {
"customOnly": {
"default": false,
"description": "Whether to list only custom option sets",
"type": "boolean"
},
"filter": {
"description": "OData filter expression",
"type": "string"
},
"includeManaged": {
"default": false,
"description": "Whether to include managed option sets",
"type": "boolean"
},
"top": {
"description": "Maximum number of option sets to return (default: 50)",
"type": "number"
}
},
"type": "object"
}