diff --git a/src/Microsoft.SqlTools.ServiceLayer/LanguageServices/Contracts/Completion.cs b/src/Microsoft.SqlTools.ServiceLayer/LanguageServices/Contracts/Completion.cs
index 288f4f76..3f491141 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/LanguageServices/Contracts/Completion.cs
+++ b/src/Microsoft.SqlTools.ServiceLayer/LanguageServices/Contracts/Completion.cs
@@ -55,11 +55,21 @@ namespace Microsoft.SqlTools.ServiceLayer.LanguageServices.Contracts
public class Command
{
+ ///
+ /// Title of the command.
+ ///
+ public string Title { get; set; }
+
///
/// The identifier of the actual command handler, like `vsintellicode.completionItemSelected`.
///
public string command { get; set; }
+ ///
+ /// A tooltip for the command, when represented in the UI.
+ ///
+ public string Tooltip { get; set; }
+
///
/// Arguments that the command handler should be invoked with.
///