identify_problematic_peer_reviews
Flag peer reviews in Canvas assignments that may require instructor attention based on specified criteria to maintain review quality.
Instructions
Flag reviews that may need instructor attention.
Args:
course_identifier: Canvas course code or ID
assignment_id: Canvas assignment ID
criteria: JSON string of custom flagging criteria (optional)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignment_id | Yes | ||
course_identifier | Yes | ||
criteria | No |
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"
},
"criteria": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Criteria"
}
},
"required": [
"course_identifier",
"assignment_id"
],
"type": "object"
}