get_wiki_page_suggestions
Generate autocomplete suggestions for wiki pages in Azure DevOps projects based on partial input to help users quickly find and navigate to relevant documentation.
Instructions
Get page suggestions based on partial input - useful for autocomplete-like functionality.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
partial_input | Yes | Partial page path or title to get suggestions for. | |
project | Yes | The name or ID of the project. | |
wiki_identifier | Yes | The name or ID of the wiki. |
Input Schema (JSON Schema)
{
"properties": {
"partial_input": {
"description": "Partial page path or title to get suggestions for.",
"type": "string"
},
"project": {
"description": "The name or ID of the project.",
"type": "string"
},
"wiki_identifier": {
"description": "The name or ID of the wiki.",
"type": "string"
}
},
"required": [
"project",
"wiki_identifier",
"partial_input"
],
"type": "object"
}