get_rubric_details
Retrieve detailed rubric criteria and scoring information from Canvas courses to understand assessment requirements and grading standards.
Instructions
Get detailed rubric criteria and scoring information.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
rubric_id: The Canvas rubric ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
rubric_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"rubric_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Rubric Id"
}
},
"required": [
"course_identifier",
"rubric_id"
],
"type": "object"
}