action flat_update_submission_comment { label: "Update a feedback comment to a submission" provider: flat method: PUT path: "/classes/{class}/assignments/{assignment}/submissions/{submission}/comments/{comment}" encoding: json input: { type: "object" description: "Creation of a assignment submission comment" required: ["comment"] properties: { comment: { type: "string" description: "The comment text" } } } output: { type: "object" description: "Feedback comment added to an assignment submission" properties: { comment: { type: "string" description: "The comment text" } date: { type: "string" format: "date-time" description: "The date when the comment was posted" } id: { type: "string" description: "The comment unique identifier" } modificationDate: { type: "string" format: "date-time" description: "The date of the last comment modification" } submission: { type: "string" description: "The submission unique identifier" } unread: { type: "boolean" description: "True if the comment is unread by the current user" } user: { type: "string" description: "The author unique identifier" } } } }