{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateRequestValidatorRequest",
"title": "CreateRequestValidatorRequest",
"type": "object",
"properties": {
"name": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The name of the to-be-created RequestValidator."
}
]
},
"validateRequestBody": {
"allOf": [
{
"$ref": "#/components/schemas/Boolean"
},
{
"description": "A Boolean flag to indicate whether to validate request body according to the configured model schema for the method (true) or not (false)."
}
]
},
"validateRequestParameters": {
"allOf": [
{
"$ref": "#/components/schemas/Boolean"
},
{
"description": "A Boolean flag to indicate whether to validate request parameters, true, or not false."
}
]
}
},
"description": "Creates a RequestValidator of a given RestApi."
}