generate_peer_review_feedback_report
Generate instructor-ready reports on peer review quality for Canvas assignments, with customizable report types and output formats to assess student feedback effectiveness.
Instructions
Create instructor-ready reports on peer review quality.
Args:
course_identifier: Canvas course code or ID
assignment_id: Canvas assignment ID
report_type: Report type (comprehensive, summary, individual)
include_student_names: Whether to include student names
format_type: Output format (markdown, html, text)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignment_id | Yes | ||
course_identifier | Yes | ||
format_type | No | markdown | |
include_student_names | No | ||
report_type | No | comprehensive |
Input Schema (JSON Schema)
{
"properties": {
"assignment_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Assignment Id"
},
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"format_type": {
"default": "markdown",
"title": "Format Type",
"type": "string"
},
"include_student_names": {
"default": false,
"title": "Include Student Names",
"type": "boolean"
},
"report_type": {
"default": "comprehensive",
"title": "Report Type",
"type": "string"
}
},
"required": [
"course_identifier",
"assignment_id"
],
"type": "object"
}