Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add json to metadata response side support #29460

Merged
merged 14 commits into from
Oct 25, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ message JsonToMetadata {
bool allow_empty_content_type = 3;
}

// Rules to match json body of requests
MatchRules request_rules = 1 [(validate.rules).message = {required: true}];
// At least one of request_rules and response_rules must be provided.
// Rules to match json body of requests.
MatchRules request_rules = 1;

// Rules to match json body of responses.
MatchRules response_rules = 2;
cqi1217 marked this conversation as resolved.
Show resolved Hide resolved
}
Loading
Loading