associate_rubric_with_assignment
Link an existing rubric to a Canvas assignment to establish grading criteria and evaluation standards for student submissions.
Instructions
Associate an existing rubric with an assignment.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
rubric_id: The ID of the rubric to associate
assignment_id: The ID of the assignment to associate with
use_for_grading: Whether to use rubric for grade calculation (default: False)
purpose: Purpose of the association (grading, bookmark) (default: grading)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignment_id | Yes | ||
course_identifier | Yes | ||
purpose | No | grading | |
rubric_id | Yes | ||
use_for_grading | 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"
},
"purpose": {
"default": "grading",
"title": "Purpose",
"type": "string"
},
"rubric_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Rubric Id"
},
"use_for_grading": {
"default": false,
"title": "Use For Grading",
"type": "boolean"
}
},
"required": [
"course_identifier",
"rubric_id",
"assignment_id"
],
"type": "object"
}