{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReviewsReplyRequest",
"title": "ReviewsReplyRequest",
"type": "object",
"description": "Request body for replying to a review.",
"properties": {
"replyText": {
"type": "string",
"description": "The text of the reply. The reply will replace any existing reply. Maximum length is 350 characters.",
"maxLength": 350,
"example": "example_value"
}
},
"required": [
"replyText"
]
}