action flat_get_submission_comments { label: "List the feedback comments of a submission" provider: flat method: GET path: "/classes/{class}/assignments/{assignment}/submissions/{submission}/comments" encoding: json output: { type: "array" items: { 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" } } } } }