{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/CommentCreateRequest.json", "title": "CommentCreateRequest", "type": "object", "description": "Request body for creating a comment or reply", "required": [ "message" ], "properties": { "message": { "type": "string", "description": "Comment text (max 500 chars)", "example": "Great analysis! I agree \u2014 the fundamentals are solid." }, "attachments": { "$ref": "#/components/schemas/Attachments" } } }