Request body for creating or updating a comment
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CommentRequest", "title": "CommentRequest", "type": "object", "description": "Request body for creating or updating a comment", "required": [ "comment" ], "properties": { "comment": { "type": "string", "description": "The comment text content", "example": "example_value" } } }