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