{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReviewsReplyResponse",
"title": "ReviewsReplyResponse",
"type": "object",
"description": "Response from posting a reply to a review.",
"properties": {
"result": {
"type": "object",
"description": "The result of the reply.",
"properties": {
"replyText": {
"type": "string",
"description": "The reply text that was posted."
},
"lastEdited": {
"$ref": "#/components/schemas/Timestamp"
}
},
"example": "example_value"
}
}
}