get_dataverse_optionset_options
Retrieve all available choices, values, labels, descriptions, and colors from a specific option set in Microsoft Dataverse to understand available selections and their configuration.
Instructions
Retrieves all options (choices) within a specific option set, including their values, labels, descriptions, and colors. Use this to inspect the available choices in an option set and understand their configuration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the option set to get options for |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the option set to get options for",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}