diff --git a/libraries/Microsoft.Bot.Schema/SearchInvokeValue.cs b/libraries/Microsoft.Bot.Schema/SearchInvokeValue.cs
index c176ccf7ce..172347818a 100644
--- a/libraries/Microsoft.Bot.Schema/SearchInvokeValue.cs
+++ b/libraries/Microsoft.Bot.Schema/SearchInvokeValue.cs
@@ -51,5 +51,14 @@ public class SearchInvokeValue
///
[JsonProperty("context")]
public object Context { get; set; }
+
+ ///
+ /// Gets or sets the dataset to be queried to get the choices.
+ ///
+ ///
+ /// The dataset of this search invoke action value.
+ ///
+ [JsonProperty("dataset")]
+ public string Dataset { get; set; }
}
}