Skip to content

Commit

Permalink
suggest: Make all SuggestionQuery fields required.
Browse files Browse the repository at this point in the history
  • Loading branch information
linabutler committed Jul 20, 2023
1 parent f070aa6 commit 1857afb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/suggest/src/suggest.udl
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ dictionary Suggestion {
};

dictionary SuggestionQuery {
string keyword = "";
boolean include_sponsored = false;
boolean include_non_sponsored = false;
string keyword;
boolean include_sponsored;
boolean include_non_sponsored;
};

dictionary SuggestIngestionConstraints {
Expand Down

0 comments on commit 1857afb

Please sign in to comment.