delete_dataverse_optionset
Remove an option set from Microsoft Dataverse. This permanent deletion requires verifying no columns currently reference the option set before proceeding.
Instructions
Permanently deletes an option set from Dataverse. WARNING: This action cannot be undone and will fail if the option set is being used by any columns. Ensure no columns reference this option set before deletion.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the option set to delete |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the option set to delete",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}