list_all_rubrics
Retrieve all rubrics for a Canvas course to review grading criteria and assessment standards, with optional detailed breakdowns of rating levels and requirements.
Instructions
List all rubrics in a specific course with optional detailed criteria.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
include_criteria: Whether to include detailed criteria and ratings (default: True)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
include_criteria | No |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"include_criteria": {
"default": true,
"title": "Include Criteria",
"type": "boolean"
}
},
"required": [
"course_identifier"
],
"type": "object"
}