update_rubric
Modify an existing rubric in a Canvas course by updating its title, criteria structure, or comment settings to maintain accurate assessment standards.
Instructions
Update an existing rubric in the specified course.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
rubric_id: The ID of the rubric to update
title: Optional new title for the rubric
criteria: Optional JSON string or dictionary containing updated rubric criteria structure
free_form_criterion_comments: Optional boolean to allow free-form comments
skip_updating_points_possible: Skip updating points possible calculation (default: False)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
criteria | No | ||
free_form_criterion_comments | No | ||
rubric_id | Yes | ||
skip_updating_points_possible | No | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"criteria": {
"anyOf": [
{
"type": "string"
},
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Criteria"
},
"free_form_criterion_comments": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Free Form Criterion Comments"
},
"rubric_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Rubric Id"
},
"skip_updating_points_possible": {
"default": false,
"title": "Skip Updating Points Possible",
"type": "boolean"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Title"
}
},
"required": [
"course_identifier",
"rubric_id"
],
"type": "object"
}